- published: 16 Jul 2023
- views: 34673
'+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; })); }); -->
Dodoma (literally "It has sunk" in Gogo), officially Dodoma Urban District, is the national capital of Tanzania and the capital of Dodoma Region, with a population of 410,956.
Located at 6°10′23″S 35°44′31″E / 6.17306°S 35.74194°E / -6.17306; 35.74194Coordinates: 6°10′23″S 35°44′31″E / 6.17306°S 35.74194°E / -6.17306; 35.74194, in the center of the country, the town is 486 kilometres (302 mi) west of the former capital at Dar es Salaam and 441 kilometres (274 mi) south of Arusha, the headquarters of the East African Community. It is also 259 km north of Iringa through Mtera. It covers an area of 2,669 square kilometres (1,031 sq mi) of which 625 square kilometres (241 sq mi) is urbanized.
Out of the total population, 199,487 people (48.5 percent) are male while 211,469 people (51.5 percent) are female. The average household size is 4.4 people. The Roman Catholic Church reports that 19.2% of the population are Roman Catholics. Dodoma is populated by different ethnic groups because it is a government administrative centre, although the indigenous ethnic groups are the Gogo, Rangi, and Sandawe. There are also small Indian minorities.
Dodoma Region is one of Tanzania's 30 administrative regions. The regional capital is the city of Dodoma. According to the 2012 national census, the region had a population of 2,083,588, which was lower than the pre-census projection of 2,214,657. For 2002-2012, the region's 2.1 percent average annual population growth rate was the twentieth highest in the country. It was also the seventeenth most densely populated region with 50 people per square kilometer. The main tribes of the region are the Gogo, the Warangi, and the Wasandawi; Dodoma means "sunk" in the Gogo language.
The city of Dodoma, the largest city and capital of the region, originally began as a small Gogo village in the early 19th century, consisting of several traditional tembe houses. The city was formally established in 1907 by German colonists during construction of the Tanzanian central railway. The region has a long history of famine and economic difficulties. Along with Kondoa and Singida it was struck hard by the famine of the 1910s. One report by a British officer in Dodoma in December 1916 reported that "The whole District has been ransacked for cattle". The Germans had killed 26,000 animals, and the British 5,659. The problems continued throughout 1917, and in November 1917 drought turned it into a crisis. Some 30,000, about 1 in 5 of the population of the district at the time died. Thousands of people emigrated, and others sold starving cattle for just a shilling at the market in Dodoma. Smallpox was prevalent, and a Spanish influenza epidemic killed an estimated 50,000–80,000 in Tanganyika between 1918 and 1920.
Coordinates: 6°18′25″S 34°51′14″E / 6.307°S 34.854°E / -6.307; 34.854
Tanzania /ˌtænzəˈniːə/, officially the United Republic of Tanzania (Swahili: Jamhuri ya Muungano wa Tanzania), is a country in East Africa within the African Great Lakes region. It is bordered by Kenya and Uganda to the north; Rwanda, Burundi, and the Democratic Republic of the Congo to the west; Zambia, Malawi, and Mozambique to the south; and the Indian Ocean to the east. Kilimanjaro, Africa's highest mountain, is in northeastern Tanzania.
Tanzania is one of the poorest countries in the world. Tanzania's population of 51.82 million (2014) is diverse, composed of several ethnic, linguistic, and religious groups. Tanzania is a presidential constitutional republic, and since 1996, its official capital has been Dodoma, where the President's Office, the National Assembly, and some government ministries are located.Dar es Salaam, the former capital, retains most government offices and is the country's largest city, principal port, and leading commercial centre.
Tanzania is a spider genus of the Salticidae family (jumping spiders), with three described species that all occur in the Mkomazi Game Reserve of Tanzania.
These minute spiders range in body length from 1.5 to 3 mm. Both sexes look alike, but the females are sometimes darker.
This genus is related to the genera Euophrys and Talavera.
The genus name is derived from Lilliput, a land in Jonathan Swift's book Gulliver's Travels that is inhabited by minute people.
Dodoma is the capital city of Tanzania after the city was relocated from Dar es salaam. it is one of the fastest growing cities in East Africa. Algeria, Angola, Benin, Botswana, Burkina Faso, Burundi, Cape Verde, Cabo Verde, Cameroon, Central African Republic (CAR), Chad, Comoros, The Democratic Republic of the Congo, Republic of the Congo, Cote d'Ivoire, Djibouti, Egypt, Equatorial Guinea, Eritrea, Eswatini (formerly Swaziland), Ethiopia, Gabon, Gambia, Ghana, Guinea, Guinea-Bissau, Kenya, Lesotho, Liberia, Libya, Madagascar, Malawi, Mali, Mauritania, Mauritius, Morocco, Mozambique, Namibia, Niger, Nigeria, Rwanda, Sao Tome and Principe, Senegal, Seychelles, Sierra Leon, Somalia, South Africa, South Sudan, Sudan, Tanzania, Togo, Tunisia, Uganda, Zambia, Zimbabwe cameroon, cape verde, Iv...
Tanzania is constructing a high-capacity airport in the new administrative capital Dodoma to meet and accommodate the anticipated growth in air transport in the city. The Msalato International Airport Project is part of the government’s priority to relocate administrative functions from the commercial capital Dar es Salaam to the administrative capital Dodoma. The new airport is aimed at enhancing Dodoma’s transport connectivity, with an expected annual capacity of approximately 50,000 aircraft and one million passengers, most of which international. #tanzania #airport #construction #update
Drone Video of Dodoma City center
After arriving in Dodoma from Dar es Salaam by electric train, I toured Dodoma City, and a lot has changed including laying electric cable underground all over Magufuli city, new roads, apartments and new buildings. #tanzania #africa #dodoma #2024
JOIN Membership https://www.youtube.com/channel/UCFQk9AVZtAsHGIsl8I2ohhQ/join JOIN Patreon https://www.patreon.com/mikachavala JOIN PayPal https://www.paypal.com/paypalme/mikachavala SIGN THE PETITION NOW https://secure.avaaz.org/community_petitions/en/all_africans_globally_one_africa_right_now/ Stay connected https://www.linktr.ee/mikachavala ACCOUNT NAME: SWAHILI NATION-ONE AFRICA FOUNDATION(SNOA-F) STANBIC BANK (T) LTD TZS ACCOUNT NUMBER 9120002763557 USD ACCOUNT NUMBER 9120002763573 BRANCH: PENINSULA SWIFT CODE: SBICTZTX WE DO ALL WE CAN DO AND ALL THE GLORY, HONOR, AND POWER WE RETURN TO THE KING OF KINGS #oneafrica #swahilination #mikachavala #Africa #tanzania #sgr #daressalaam #morogoro #dodoma #tanzanian #samiasuluhuhassan #samiasuluhu #magufuli #jpm #rip #johnpombe...
Tanzania has launched a new rail service between the port city of Dar es Salaam and the nation's capital, Dodoma. Authorities say the railway line will significantly reduce travel times and boost cargo movement across the East African nation. Subscribe to us on YouTube: http://ow.ly/Zvqj30aIsgY Follow us on: Facebook: https://www.facebook.com/cgtnafrica/ Twitter: https://twitter.com/cgtnafrica Instagram: https://www.instagram.com/cgtn_africa/
Dodoma was originally a small market town known as Idodomya, which was established in the early 1900s during the German colonial period. The town was initially a stopover on the overland caravan route. The modern Dodoma was founded in 1907 by German colonists during construction of the Tanzanian central railway. Its central location, moderate climate, and fertile lands eventually made it the administrative center of the country. #tanzania #dodoma #2025 #christmas Music by Nico Anuch - Atardecer - https://thmatc.co/?l=6793787C
Mabasi Tz. Happy New Year 2025.
https://uta.lk/dudy learn languages on uTalk teaching and learning platform. U Talk is here to help you out.
Dodoma City Tanzania In today's episode we will be exploring Dodoma the capital city of Tanzania. Dodoma (lit. 'It has sunk' in Gogo), officially Dodoma City, is the national capital of Tanzania and the capital of the Dodoma Region. In 1973, the Tanzanian government announced that the capital would be moved to Dodoma for social and economic reasons and to centralise the capital within the country. Hey if you liked the video, please consider subscribing and turning notifications on to not miss any future videos, Thank You! Subscribe: https://bit.ly/3pMljGO WAYS TO SUPPORT CHANNEL/THANK ME CashApp: £wembaimani24 Paypal: [email protected] Buy Inspire For Travel Merch: https://inspirefortravelshop.creator-spring.com/ For Business And Inquires [email protected] FOLLOW ME ON...
Katika video ya leo nashare nanyi historia fupi ya mkoa wa Dodoma. Kuanzia jina lake na vitu vingine. Asante kwa kuangalia, Kususcribe, kulike na kushare!
Discover Dodoma, Capital city of Tanzania
The construction of the new State House offices at Chamwino in Dodoma is expected to be completed by the mid of this year-concluding nearly 51 years since the founding father of the nation [ Tanzania ], Mwalimu Julius Nyerere inaugurated it. Initially, Mwalimu Nyerere built a tent to serve the purpose in 1969 and resolved permanently that the government relocates to Dodoma, as the country's capital city. The plan was later endorsed by a vote in 1973. To reinforce that, on Sunday, President John Magufuli announced that his government was focused on making Mwalimu Nyerere's dream come true. He said the government has invested massively in infrastructures to make Dodoma measure and reflect a capital city's status. --------------------------------------- Like this video if you want to see...
MRADI WA SGR ULIVYOBADILI MAISHA YA WANANCHI WA CHAMWINO DODOMA... WANANCHI wa wilaya ya Chamwino jijini Dodoma wamezungumza jinsi mradi wa SGR ulivyowanufaisha na kuwakomboa na umaskini ambapo wengi wao wamefanikiwa kujenga nyumba zao kwa staili ya kisasa... ⚫️ Kwa UPDATES zote, Download GLOBAL APP: ⚫️ ANDROID:http://bit.ly/38Lluc8 ⚫️ iOS:https://apple.co/38HjiCx ⚫️ VISIT AMAZON: https://www.amazon.com/shop/globaltvonline ⚫️ JE, NA WEWE UNA HABARI? ⚫️ WASILIANA NA GLOBAL TV ONLINE ( +255 784 888982), ( +255 713 837506) ⚫️ Email: [email protected] OR [email protected] ⚫️ OUR PLAYLISTS: ⚫️ HABARI MPYA DAILY:shorturl.at/mnux2 ⚫️ HISTORIA ZA VIONGOZI ZA KUSISIMUA: http://bit.ly/mikasa_ya_kusisimua ⚫️ GLOBAL RADIO TV: http://bit.ly/255globalradio ⚫️ EXCLUSIVE INTERVI...
Singida is a town in central Tanzania. The town is the location of the regional headquarters of Singida Region as well as the district headquarters of Singida Urban District. The region and district are named after the town. Dodoma (lit. 'It has sunk' in Gogo), officially Dodoma City, is the national capital of Tanzania and the capital of the Dodoma Region, with a population of 410,956. In 1974, the Tanzanian government announced that the capital would be moved to Dodoma for social and economic reasons and to centralise the capital within the country. It became the official capital in 1996. Much of the initial design did not come to fruition for a long time. As a result, Dar es Salaam remains the commercial capital of Tanzania and still retains the state house Ikulu, and a large number o...
Tanzania is one of the best countries to visit in Africa! Enjoy this travel guide featuring the most incredible places in Tanzania. From hiking to the top of Mt. Kilimanjaro, to the wildlife of The Serengeti, Tanzania will blow you away with its beauty and wonders. This is one of my favorite videos I've made and I can't wait to share it with you! Where is your favorite place in Tanzania? Huge shoutout to my good friend @EllisvanJason for bringing me along the trip. He's made some incredible videos on Tanzania - https://youtu.be/0jC-sW5l4_g Special thanks to Safari Goats for being our guide and showing us around Tanzania - https://safarigoats.com/ Book a stay with Four Seasons Serengeti - https://www.fourseasons.com/serengeti/ Serengeti Balloon Safari - https://www.balloonsafaris.com/ ...
Life in Tanzania - Cities of Dodoma & Dar es Salaam, History, People, Lifestyle, Traditions & Music: Tanganyika and Zanzibar united on 26th April 1964, forming the United Republic of Tanzania. Tanganyika became independent from the British on December 1961 and Zanzibar became free through a revolution on 12th January 1964. The United Republic of Tanzania is an East African country bordering the Indian Ocean. Its neighbors are Kenya and Uganda, to the north, Rwanda, Burundi and Democratic Republic of the Congo, to the west, and Zambia, Malawi and Mozambique to the south. The current population of the United Republic of Tanzania is 64,745,038. The city of Dodoma is considered the official capital of Tanzania, but Dar es Salaam remains the political and business center of the country. Tanzani...
Uncle Waffles and Tony Duardo presents the official audio to Tanzania, featuring Sino Msolo and Boibizza. Available to stream / download: http://africori.to/reddragon.oyd © 20 22 Kreativekornerr Distribution by Africori: http://www.africori.com #UncleWaffles #Tanzania
I spent 1 month Travelling through the beautiful east African country Tanzania. In this travel documentary you will watch me explore the capital city of Dar es Salaam, Zanzibar, and Arusha, the northern side of Tanzania The FPV and some Ariel shot from @ellisvanjason & @ryanshirley Download Northern Tanzania Travel Guide https://bit.ly/TanzaniaTravelguide DOWNLOAD THE ZANZIBAR TRAVEL GUIDE https://bit.ly/travelzanzibarguide LET'S CONNECT ON SOCIAL =========-------------- INSTAGRAM, TIKTOK & TWITTER @stevenndukwu TIMESTAMP 00:00 - Travel Tanzania 01:37 - download the Tanzania Travel Guide 02:20 - Dar es salaam 4:40 - Zanzibar 15:05 - Arusha 16:11 - Ngorongoro Crater 18:54 - Serengeti 26:14 - Ol Doyin Lengai 26:43 - Lake Natron #tanzania #travel #Lifestlye ---------- Re...
Dar es Salaam, a major city and commercial port on Tanzania’s Indian Ocean coast, grew from a fishing village. RECOMMENDED videos 👉 https://bit.ly/2UCjj5Q SUBSCRIBE here 👉 https://goo.gl/jYw6so One of East Africa's busiest ports, Dar es Salaam is Tanzania's largest city and commercial center. A lively waterfront city that blends African, Indian and Arab influences to create a unique urban culture, Dar has sprawled chaotically in all directions in recent decades, but still has plenty of charm.
Uncle Waffles and Tony Duardo presents the official Music Video to their multi-platinum number 1 hit single #Tanzania featuring Sino Msolo and Boibizza. Available to stream / download: http://africori.to/reddragon.oyd © 20 22 Kreativekornerr Distribution by Africori: http://www.africori.com #UncleWaffles #Tanzania
My first ever African safari was here in the Serengeti of Tanzania and it was one of the most exciting moments of my life. Get your own Insta360 Go 2 here: https://www.insta360.com/sal/go_2?insrc=INR30D0 - Want to book an epic Tanzania Safari experience? Click here to get no-obligation free quotes from the very tour companies that I trust to organise my trips: https://safarisbyella.com/go/ref/3/ Get my FREE 1-Hour Content Creator Training HERE: https://lostcreatoracademy.com/FreeTraining Thanks to the Four Seasons Serengeti for hosting us Instagram https://www.instagram.com/lostleblanc Facebook Lost LeBlanc Twitter Lost LeBlanc All Music Music Used in this Video comes from HERE: http://share.epidemicsound.com/freemusic (The Best Copyright Free Music - Try it Free!) Where I get Copyri...
► SUBSCRIBE for daily travel videos: http://bit.ly/2hyQnZ1 ► INSTAGRAM for more! https://www.instagram.com/drewbinsky/ I'M SO HAPPY that I made it back to the incredible East African nation of TANZANIA! My previous (and only) visit here was back in Jan 2018, where I only visited the island of Zanzibar. But I really missed out because the people, culture, food and nature on the mainland is just about as good as you can find anywhere on this planet. My friends at Qatar Airways reached out and offered to fly me and Deanna on business class to Tanzania, and we couldn't say no! I've never had a better flying experience in my life... and Tanzania was just amazing! We began our trip in Arusha, then went to Ngorongoro Conservation area before heading deep into the Serengeti for 3 nights and ...
Turn your Africa Vision into Action: Get PREMIUM ACCESS to the Travel, Move, & Do Business TANZANIA Virtual Conference: https://www.afrikainvestorsacademy.com/Travel-Move-Business-Tanzania For purchase and rental inquiries email: [email protected] Get on our email list: Afrika Investors Academy https://www.afrikainvestorsacademy.com/academy Get the AIA Insider for Weekly Africa Economic Updates: https://www.afrikainvestorsacademy.com/offers/Fw4EbvFH Get the Replays: Afrika Investors Academy Virtual Summit https://www.afrikainvestorsacademy.com/virtual-summit *SOCIAL LINKS* Instagram: https://www.instagram.com/ashleyinafrika Instagram: https://www.instagram.com/afrikainvestorsacademy.com *TRAVEL TO AFRICA* Access my personal travel guides to cities including: Cape Town, Sou...
This is Tanzania from the endless plains of Serengeti in the African savannah to the breathtaking crystal clear water beaches in Zanzibar Island. Locations | Arusha, Mto Wa Mbu, Ngorongoro Crater, Serengeti National Park, Tarangire National Park, Moshi, Zanzibar Island. Shots with Panasonic Lumix GH5 + Leica 12-60mm F2.8-F4.0 Music by: "Solomon Vandy" from Blood Diamond - JAMES NEWTON HOWARD "Some Sunsick Day" - MORGAN DELT "Spirit of Africa" - BIANCA BAN https://www.youtube.com/watch?v=ZidgvDvQAq4 Hakuna Matata!
Dodoma (literally "It has sunk" in Gogo), officially Dodoma Urban District, is the national capital of Tanzania and the capital of Dodoma Region, with a population of 410,956.
Located at 6°10′23″S 35°44′31″E / 6.17306°S 35.74194°E / -6.17306; 35.74194Coordinates: 6°10′23″S 35°44′31″E / 6.17306°S 35.74194°E / -6.17306; 35.74194, in the center of the country, the town is 486 kilometres (302 mi) west of the former capital at Dar es Salaam and 441 kilometres (274 mi) south of Arusha, the headquarters of the East African Community. It is also 259 km north of Iringa through Mtera. It covers an area of 2,669 square kilometres (1,031 sq mi) of which 625 square kilometres (241 sq mi) is urbanized.
Out of the total population, 199,487 people (48.5 percent) are male while 211,469 people (51.5 percent) are female. The average household size is 4.4 people. The Roman Catholic Church reports that 19.2% of the population are Roman Catholics. Dodoma is populated by different ethnic groups because it is a government administrative centre, although the indigenous ethnic groups are the Gogo, Rangi, and Sandawe. There are also small Indian minorities.
(version sung as OFF enters Capital City:)
(lines by members of OFF are spoken, not sung; Tony's line "Hey,
good to see you" is also spoken.)
Homer: Well, kids, there it is! Capital City!
Marge: Look, the Cross-Town Bridge!
(begin vamp)
Bart: Wow!
Homer: Wow.
Tony Bennett: There's a swingin' town I know called... Capital
City.
Lisa: The Penny Loafer!
Tony: People stop and scream hello in... Capital City.
Homer: Kids, look! Street crime!
Tony: It's the kind of place that makes a bum feel like
a king.
Homer: Wow, that's service!
Tony: And it makes a king feel like some nutty, cuckoo,
super-king.
Marge: Look, it's Tony Bennett!
Tony: Hey, good to see you.
It's against the law to frown in... Capital City.
You'll caper like a stupid clown when you chance
to see...
Marge: Fourth Street and 'D'!
Tony: Fourth Street and 'D'! Yeah!
Once you get a whiff of it, you'll never want to roam.
Homer: The Duff brewery!
Tony: Capital City, my home sweet, yeah!
Capital City, that happy-tal city,
It's Capital City,
my home sweet swingin' home!
All: Capital City! Yeah!
Closing credits version:
Tony Bennett: There's a swingin' town I know called... Capital City.
People stop and scream hello in... Capital City.
It's the kind of place that makes a bum feel like a king.
And it makes a king feel like some nutty, cuckoo,
super-king.
It's against the law to frown in... Capital City.
You'll caper like a stupid clown when you chance to see...
Fourth Street and 'D'! Yeah!
Once you get a whiff of it, you'll never want to roam,
From Capital City, my home sweet, swingin' home!