- published: 19 Sep 2023
- views: 600272
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Coordinates: 13°28′N 16°34′W / 13.467°N 16.567°W / 13.467; -16.567
The Gambia (i/ˈɡæmbiə/, officially the Republic of the Gambia and often called simply Gambia) is a country in West Africa mostly surrounded by Senegal with a short strip of its coastline bordered with the Atlantic Ocean at its western end. It is the smallest country on mainland Africa.
The Gambia is situated on either side of the Gambia River, the nation's namesake, which flows through the centre of the Gambia and empties into the Atlantic Ocean. Its area is 10,689 square kilometres (4,127 sq mi) with a population of 1,882,450 at the 15 April 2013 Census (provisional). Banjul is the Gambian capital, and the largest cities are Serekunda and Brikama.
The Gambia shares historical roots with many other West African nations in the slave trade, which was the key factor in the placing and keeping of a colony on the Gambia River, first by the Portuguese, during which era it was A Gâmbia, and later, on 25 May 1765, the Gambia was made a part of the British colony when the government formally assumed control, establishing the Province of Senegambia. On 18 February 1965, the Gambia gained independence from the United Kingdom. Since gaining independence, the Gambia has had two leaders – Dawda Jawara, who ruled from 1970 until 1994, when the current leader Yahya Jammeh seized power in a coup as a young army officer.
The Commonwealth realm of the Gambia was a predecessor to the modern-day republic of The Gambia and an independent state that existed between 1965 and 1970.
When British rule ended in 1965, Gambia was given independence as a Commonwealth realm. The British monarch, Elizabeth II, remained head of state of the Gambia, which shared its Sovereign with the other Commonwealth realms. The Queen's constitutional roles were mostly delegated to the Governor-General of the Gambia. The following governors-generals held office in the Gambia during this period:
The Gambia Independence Act 1964 unified the British Crown Colony and Protectorate of the Gambia into the independent sovereign constitutional monarchy of the Gambia. After two referenda on the issue, the monarchy was abolished on 24 April 1970, when the Gambia became a republic within the Commonwealth. The first referendum in 1965, with 65.85% in favour and 34.15 against, failed to reach the two-thirds majority needed to pass. The second in 1970 with 70.45% percent of the Gambian people voting in favour of a republic and 29.55% against, was successful. The Gambia adopted a new constitution in 1970 which abolished the monarchy. The Republic of the Gambia came into existence on the 24 April 1970.
Serekunda (Arabic: سيريكوندا, sometimes spelled Serrekunda) is the largest urban centre in The Gambia.
It is situated close to the Atlantic coast, 13 km (8 mi) south-west of the capital, Banjul, and is formed of nine villages which have grown together into a larger urban area.
Serekunda is named after its founder, Sayerr Jobe.
Mosque on Bundung Highway
Mosque on Bundung Highway
Coordinates: 13°26′N 16°40′W / 13.433°N 16.667°W / 13.433; -16.667
The Gambia is a tiny country in West Africa that is entirely surrounded by Senegal which is has much in common with. Despite the fact The Gambia is a nation which came about as a result of colonial partitions, why didn't it join Senegal and why does it exist as in independent country? To find out watch this short and simple animated history documentary. A special thanks to my patreon supporters below: Jens Koch-Nommensen Øystein Alsaker Arcedia Sergio M. Vela Emil Świderek MajesticFirebird George Kapoyanis Colonel Oneill Gin Aldeguer CharÉTS Steven B Brendan W Dennis Vandeban robert lalonde Mathias.C Michael Kram Ethan Southside Mitch Justin Kubusch John Heath Robertson JakeBak0905 Person His Empyreal Illuminance The Supreme High Sorcerer Kalynx Leonard Frank Cippalippus ChrisRom Christo...
In this video, I bring you THE GAMBIA: 10 Interesting Facts You Didn't Know 🇬🇲🇬🇲🇬🇲. Courses SPEAK SWAHILI FOR BEGINNERS👉🏼https://theafricanscript.ck.page/speakswahili SELLING ON JUMIA👉🏼https://theafricanscript.ck.page/sellingonjumia Travel Documentation Apply For Your VISA Here👉🏼https://www.ivisa.com/apply-online?utm_source=theafricanscript Passport Photos👉🏼https://www.ivisa.com/photos?utm_source=theafricanscript Become A Channel Member YOUTUBE👉🏼 https://www.youtube.com/channel/UC3qg5SxJHWUx7Zp4mhXaIMg/join PATREON👉🏼 https://www.patreon.com/theafricanmythsshow?fan_landing=true PAYONEER SUPPORT👉🏼[email protected] Buy Channel Merchandise STORE👉🏼https://www.youtube.com/channel/UC3qg5SxJHWUx7Zp4mhXaIMg/store Sponsorships, Mentions & Consultations EMAIL👉🏼[email protected] Vis...
► SUBSCRIBE for daily travel videos: http://bit.ly/2hyQnZ1 ► INSTAGRAM? Join me: https://www.instagram.com/drewbinsky/ I have made it safely to Africa's smallest country on the mainland! It's called THE GAMBIA -- have you ever heard of it before? This nation is completely surrounded by Senegal and the Atlantic Ocean on all sides, and it's appropriately nicknamed "The Smiling Coast of Africa." Seriously, people smile at you from every angle here! We've spent the past 2.5 days here and it's been a very interesting experience to say the least. I love the people and the nature -- they are both world class. But something doesn't feel right to me about the society, which I explain in this video. This West Africa road trip is getting crazier and crazier by the day! Follow along on IG ...
How many "Gambia" puns can you come up with? CHEERS Feel free to send anything via mail! Our public mailbox address is: 1905 N Wilcox ave, #432 Los Angeles CA, 90068 SUBSCRIBE: http://bit.ly/1Os7W46 BTS info and tidbits? Check out the Facebook fan page: https://www.facebook.com/GeographyNowFanpage/?fref=ts Twitter: https://twitter.com/geographynow Instagram: http://instagram.com/GeographyNow_Official Become a patron! Donate anything and Get exclusive behind the scenes footage! All profits go towards helping my dad and his medical costs/ parent's living expenses since they are no longer working and need support. http://patreon.com/GeographyNow WATCH MORE: Countries A to Z: http://bit.ly/1T8Z9JY Europe: http://bit.ly/1YoRaIB -------------------------------------------------------...
If you're looking for a beautiful beach to relax in The Gambia, look no further than Palma Rima Beach. This beach has clear waters, making it the perfect spot to relax and soak up the sunset. #dettydecember #dettydecemberingambia
The Unknown Gambia: Sandy Beaches, Tribes, Taboos & Lifestyle; The Gambia is a small country located on the west coast of Africa, with a population of around 2.3 million people. Despite its small size, the Gambia is a country rich in culture, great history, incredible sandy beaches and natural beauty with powerful tribes. The Gambia, like many cultures around the world, has a number of taboos that are considered to be social or cultural prohibitions. Watch the whole video to understand the Gambia that you didn't know. Rakghana | African Tribe | African Culture | African History| Taboos in Gambia | Gambian Lifestyle | The Gambia | Sand Beaches in Gambia | Pls kindly subscribe to @Rakghana for more positive insight into Africa and Africans. #rakghana #thegambia #gambia #gambianculture #g...
15 Best Places to Visit in The Gambia | Travel Video | Travel Guide | SKY Travel
Sona Jobarteh's debut music video "Gambia" in celebration of the Golden Jubilee of Independence for the Gambia in 2015. This video features the traditional Mandinka Drum called the 'Seruba', an instrument no longer featured much in Gambian mainstream society. By featuring the drum in this song, Sona aims not only to resonate with the deep history of the Mandinka people, but also to boost and promote awareness of this instrument both in the Gambia and internationally. Production Team: Composed and produced by Sona Jobarteh Camera/Editor/Co-Director: Jacob Bain Co-Director: Sona Jobarteh Camera: Robert Frost Camera - Pascal Pawliszewski / Pascal Production Mixed by - Femi Temowo Mastered by - Peter Beckmann Co-ordinator – Sheriffo Kanuteh FEATURING: The Fab Team, Gambia (Dancers) Musaf...
We live in the banjul International Airport, waiting to board back to the UK 🇬🇧. Feeling sad that I'm leaving the sun behind going back the cold weather.#airport #banjulinternationalairport #travel #tourism
📜 In this episode of General Knowledge I talk about the odd borders of the smallest country in continental Africa: The Gambia. Learning how it was first explored by Europeans with the arrival of the Portuguese - who then sold the local trading rights to the English. How a dispute between British and French colonial forces eventually led to the establishment of a British Colony. And how the French colonization of the surrounding Senegal led to the creation of two separate national identities which justify the existence of two separate countries - even though The Gambia exists only across the Gambia River and is surrounded on all of its sides by Senegal, effectively existing inside it and only not being landlocked due to its access to the Atlantic Ocean. Also briefly covering the short years...
The Gambia, it's the African mainland's smallest country and has a border unlike any other. It's long and skinny - just 30 miles across at its widest points - and nearly splits another country (Senegal) in half. The Gambia, in fact, is surrounded by Senegal on three sides. The only bit of the country that doesn’t border Senegal is the very short Gambian coastline on the Atlantic Ocean. Somewhat frustratingly for Dakar, this geographical arrangement has isolated a part of southern Senegal, known as the Casamance region, and given rise to separatism. All this begs an obvious question: Why does The Gambia exist in the first place? That's exactly what we'll be exploring: from Portuguese influence to British and French colonialism, independence, and the short-lived Senegambia Confederation....
The Gambia’s SECRET NIGHTLIFE: Where Foreign Men Find Alluring Companionship | Travel DocumentaryWelcome to Tan Globe, your ultimate hub for exploring the untold stories of the world. In this travel documentary, we dive into the Republic of The Gambia, uncovering the vibrant heartbeat of its secret nightlife. If you’re curious about life in Gambia and what makes this small nation so captivating, stick around. From stunning beaches to the allure of local companionship, the story unfolds with facts about The Gambia you won’t find anywhere else. Known for its friendly vibe and rich culture, this gem on Africa’s west coast has more to offer than meets the eye. Dive into these countries facts and let’s unravel the mysteries behind facts about The Gambia. Whether you’re here for cultural discov...
In this video, we'll take a look at some of the things you never knew about the beautiful Gambia! From its rich culture and history to its stunning beaches and wildlife, we'll explore everything there is to know about this West African country! If you're thinking of a vacation destination and want to explore a new country, be sure to check out the Gambia! With its diverse culture and beautiful landscape, this is one destination you won't want to miss! heres a link to our social media accounts :) https://solo.to/blackkidstravel 3 things you didn't know about #thegambia #countries #europe #asia #america #europe #gambia ---------------------------------------------------------------------- This video shows things about the gambia ---------------------------...
The Gambia’s new president will formally be sworn in on Saturday which is also the country’s independence day. Hundreds of prisoners hope the day will also bring their release. Al Jazeera’s Nicolas Haque reports from inside one of the prisons in Banjul. - Subscribe to our channel: http://aje.io/AJSubscribe - Follow us on Twitter: https://twitter.com/AJEnglish - Find us on Facebook: https://www.facebook.com/aljazeera - Check our website: http://www.aljazeera.com/
Support us on Patreon: https://www.patreon.com/nicegambia We are building a platform where businesses and clients meet without any intermediary. A place where clients can find any business in The Gambia and have access to contact them directly including all the details about the business, what they sell, contact details, location including google Maps direction integration. This will eliminate the hassles you face with middlemen having a chance of overcharge and taking a cut off your hard-earned money. In other, for us to achieve this, we will need support to FastTrack the process. We appreciate it if you will join our Patreon to make this a success. Thank you. Join me on this journey rearing animals, Rabbits, Goats, Pigeons, and Poultry in The Gambia. This is to motivate you all to start...
#serekunda #thegambia #banjul #atlanticocean #westafrica #touristattraction
Explore the beautiful colors, the tastes and good vibes of Serekunda in The Gambia with rapper Ali Cham — aka Killa Ace. Killa Ace who is sometimes political was born in the district of Talingding, in Serekunda's east. With a population of around 365,000, Serekunda is the biggest metropolitan area in The Gambia. In this episode Killa Ace takes us to his favorite spots in Serekunda. Even though Serekunda is not the capital of The Gambia it is the cultural and economic heart of the country #DWAfrica #KillaAce #TheGambia
Last month we shared some tips on how to barter in the local market. This time around, we decided to give you a tour around the biggest market in The Gambia, Serekunda Market. Spreading across the fair share of the town, the market allows you to go on a neverending shopping spree. Here you can find almost anything you desire. Maybe not in the shape of well-stocked spacious shops in the mall but with an authentic feel of overcrowdedness, push sales, sounds, tastes and colours. Read more here: https://www.my-gambia.com/mymagazine/tour-through-serekunda-market/ Do you want to know more about The Gambia, its people, places, culture, food and much more? If yes, then subscribe to our online monthly magazine created in The Gambia for all travellers who are looking to make the holiday more in...
We're in The Gambia! The Smiling Coast of Africa. Watch and be part of our journey. Today we are visiting the Serekunda Market! Join us... #gambia Watch the Video Series of our Journey Here: Part 1: SLU - JFK : https://www.youtube.com/watch?v=c1aWNoG-5vM&t=453s Part 2: NYC - MD : https://www.youtube.com/watch?v=fF7IwdiMUOU Part 3: NYC - Morocco: https://www.youtube.com/watch?v=cWZeMdF5Q7U Part 4: Our Arrival: https://youtu.be/C3rVJSi3YJ8 If you liked this video, SUBSCRIBE for more. You can also find me on: m y b l o g: https://lynnellsesay.com i n s t a g r a m: https://www.instagram.com/lynnellb/?_... f a c e b o o k: https://www.facebook.com/lynnellsesay C O N T A C T M E : Email: [email protected] My husband and I are both medical doctors working in St. Lucia....
Support us on Patreon: https://www.patreon.com/nicegambia We are building a platform where businesses and clients meet without any intermediary. A place where clients can find any business in The Gambia and have access to contact them directly including all the details about the business, what they sell, contact details, and location including google Maps direction integration. This will eliminate the hassles you face with middlemen having a chance of overcharging and taking a cut off your hard-earned money. In other, for us to achieve this, we will need support to FastTrack the process. We appreciate it if you would join our Patreon to make this a success. Thank you. Join me on this journey of rearing animals, Rabbits, Goats, Pigeons, and Poultry in The Gambia. This is to motivate you al...
SJM and KeKe left me at home and went to the market... Book your Stay at Elvin's BNB www.elvinsbnb.com Whatsapp +2205268366 We wanna give another shout out to all of our donators, supporters, viewers, etc. Please continue with support to ensure more video content. Please donate to help support our content creation- Black Acres Of The Gambia. Payments can be made at PayPal.Me/usumburacynthia; or BlackAcresoftheGambia [email protected] for Patreon; email address is [email protected]; and finally Cashapp $sdusumbura. Thank you.
Billion Steps: The objective of this channel to show you Places, the People, Culture and lot more.. -------------------------------------------------------------- ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ Click http://bit.ly/2Ooy78f -------------------------------------------------------------- Contact: Whatsapp +220 2136327 You can also contact on Email: [email protected] 4K Walk Gambia 🇬🇲 : https://www.youtube.com/playlist?list=PLac4bWXfqDri8IqfWeajqBWsA-a2eNGlN INSTAGRAM IG: iambilliontv : https://bit.ly/35uTAoa Billion tv FACEBOOK PAGE: https://bit.ly/3HnClCu 4K Walk Dakar🇸🇳| https://www.youtube.com/playlist?list=PLac4bWXfqDrhCt5AZdNeYcBbFYmqF79Az 4K Walk Senegal🇸🇳| https://www.youtube.com/playlist?list=PLac4bWXfqDrishs1i8oWvNWp6JHwub...
4K UltraHD aerial footage of my drone flights at Kotu Beach in Serekunda (The Gambia, close to its capital city Banjul), featuring one of the most beautiful beaches of this fascinating country in West Africa; project finished & uploaded on 2021-08-25 by One Man Wolf Pack UltraHD Drone Footage. #drone #serekunda #gambia 🏠 Visit our blog @ http://www.onemanwolfpack.de 🎥 YouTube: http://www.youtube.com/OneManWolfPack 📺 Footage Licensing: http://onemanwolfpack.de/licensing 🎥 Media data: This drone video (Internal ID 1021, shots taken in 2018 and video published in 2021) is an extraction of our Serekunda 4K Drone Video Footage & Serekunda Drone Pictures. Copyright protected Footage and Photos on Sale. For inquiries, please contact us via E-Mail or our Blog. 👉 One Man Wolf Pack Contact: http:/...
This is what shopping at Serekunda Market The Gambia looks like Learn more about us: Website ⬇ https://www.afrakanpickiney.com/ Join us on Patreon to get first access to content, perks, and updates on our journey. Patreon link:⬇ https://www.patreon.com/afrakanpickiney Buy merch:⬇ https://teespring.com/stores/afrakan-pickiney-store PayPal Donations Here. ► https://paypal.me/ramizemusik ............................................................. Email: ► [email protected] ......................................................... Follow us on IG @afrakanpickiney ..................................................... #africandiaspora #afrakanpickiney #thegambia
Coordinates: 13°28′N 16°34′W / 13.467°N 16.567°W / 13.467; -16.567
The Gambia (i/ˈɡæmbiə/, officially the Republic of the Gambia and often called simply Gambia) is a country in West Africa mostly surrounded by Senegal with a short strip of its coastline bordered with the Atlantic Ocean at its western end. It is the smallest country on mainland Africa.
The Gambia is situated on either side of the Gambia River, the nation's namesake, which flows through the centre of the Gambia and empties into the Atlantic Ocean. Its area is 10,689 square kilometres (4,127 sq mi) with a population of 1,882,450 at the 15 April 2013 Census (provisional). Banjul is the Gambian capital, and the largest cities are Serekunda and Brikama.
The Gambia shares historical roots with many other West African nations in the slave trade, which was the key factor in the placing and keeping of a colony on the Gambia River, first by the Portuguese, during which era it was A Gâmbia, and later, on 25 May 1765, the Gambia was made a part of the British colony when the government formally assumed control, establishing the Province of Senegambia. On 18 February 1965, the Gambia gained independence from the United Kingdom. Since gaining independence, the Gambia has had two leaders – Dawda Jawara, who ruled from 1970 until 1994, when the current leader Yahya Jammeh seized power in a coup as a young army officer.
And these are
The bruises
On me
From all of the nights when
We were
Limbs and
We crawl out and
I can't
I say
I see
You aren't what you want
You aren't what you want
I have it wrong
You turned me down
I have it wrong
You say it's gone
We can't
You say
It's all wrong
You won't even listen
I can't
Break this
You make all the
I can't
I say
I see
You aren't what you want
You aren't what you want
Every time it's over and
Every time I can't let go
I can feel the marrow