- published: 09 Apr 2016
- views: 136849
'+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; })); }); -->
Abdullah Ibrahim (born Adolph Johannes Brand on 9 October 1934 and formerly known as Dollar Brand) is a South African pianist and composer. His music reflects many of the musical influences of his childhood in the multicultural port areas of Cape Town, ranging from traditional African songs to the gospel of the AME Church and ragas, to more modern jazz and other Western styles. Ibrahim is considered the leading figure in the subgenre Cape jazz. Within jazz, his music particularly reflects the influence of Thelonious Monk and Duke Ellington. With his wife, the jazz singer Sathima Bea Benjamin, he is father to the New York underground rapper Jean Grae, as well as to a son, Tsakwe.
Ibrahim was born in Cape Town on 9 October 1934, and was baptized Adolph Johannes Brand. He attended Trafalgar High School in Cape Town's District Six, and began piano lessons at the age of seven, making his professional debut at 15.
In 1959 and 1960, Ibrahim played with the Jazz Epistles in Sophiatown, alongside saxophonist Kippie Moeketsi, trumpeter Hugh Masekela, trombonist Jonas Gwangwa, bassist Johnny Gertze and drummer Makaya Ntshoko; in 1960, the group recorded the first jazz LP by Black South African musicians. Ibrahim then joined the European tour of the musical King Kong.
Windhoek (/ˈvɪnt.hʊk/ VINT-huuk; German: Windhuk ; Khoekhoe: ǀAiǁgams; Otjiherero: Otjomuise) is the capital and largest city of the Republic of Namibia. It is located in central Namibia in the Khomas Highland plateau area, at around 1,700 metres (5,600 ft) above sea level. The population of Windhoek in 2011 was 325,858 growing continually due to an influx from all over Namibia.
The town developed at the site of a permanent spring known to the indigenous pastoral communities. It developed rapidly after Jonker Afrikaner, Captain of the Orlam settled here in 1840 and built a stone church for his community. However, in the decades thereafter multiple wars and hostilities led to the neglect and destruction of the new settlement such that Windhoek was founded a second time in 1890 by Imperial German Army Major Curt von François.
Windhoek is the social, economic, political, and cultural centre of the country. Nearly every Namibian national enterprise, governmental body, educational and cultural institution is headquartered there.
RADIO STATION | GENRE | LOCATION |
---|---|---|
Hitradio Namibia | Top 40 | Namibia |
Radio Eros | Contemporary | Namibia |
Channel 7 / Kanaal 7 | Christian Contemporary | Namibia |
West Coast FM 107.7 | Varied | Namibia |
Kosmos 94.1 FM | News Talk,Pop | Namibia |
I fly into Windhoek, the surprisingly modern capital city on Namibia. I wander along Independence Avenue to see the old colonial buildings and a meteorite memorial. Then head up Robert Mugabe Avenue to see the church, the parliament and the independence monument. I finish my tour by wandering the botanical gardens in search of a rock hyrax.
Windhoek City Review & Windhoek, Namibia nightlife. Windhoek is the capital of Namibia, in the country’s central highlands. South of the city, the sprawling Heroes’ Acre war memorial commemorates Namibia’s 1990 independence. On a hilltop in the city center are the 1890s Alte Feste, a former military headquarters with historical exhibits, and Independence Memorial Museum. Colonial influences are visible in nearby buildings like the sandstone Lutheran Christus Church. The heart of Namibia, Windhoek, possesses a unique charm due to its harmonious blend of African and European cultures and the friendliness of its people Recommended Business/ Self-Improvement Reading: Think And Grow Rich https://amzn.to/3tjmAJ8 How To Win Friends And Influence People. https://amzn.to/3Gp9tdb Rich Dad Poor Dad ...
Windhoek Namibia Travel Information Video In this video I provide some of the important travel information you'll need when visiting Windhoek in Namibia. It is a travel info video and not a travel entertainment video. Keeping that in mind I'll show you camping at UrbanCamp, Joes Beerhouse, shopping at the Grove Mall, Hosea Kutako International Airport, transport, where to get a SIM card, money matters and about getting fuel #travel #windhoek #namibia #5410Africa Join the 5410Africa family on Patreon for exclusive perks & benefits: https://www.patreon.com/5410Africa Map of 5410Africa Trip: https://5410africa.com/want-to-travel-africa-with-me-the-official-5410africa-map/ Accommodation: UrbanCamp http://www.urbancamp.net/ Arebusch https://www.arebbusch.com/ Chameleon backpackers https...
Find out how to lunch with giraffes, visit a township, join a free walking tour, come up close and personal with lions in a carnivore feeding and have a cocktail in the best rooftop bar. These and many more things to do and places to see in Windhoek will be shown in this vlog about the capital of Namibia. Let me help you to make the most of your trip to Windhoek. For even more activities and travel tips I invite you to read my blog with a list of the 19 best things to do in Windhoek: https://www.traveltomtom.net/destinations/africa/namibia/things-to-do-in-windhoek-namibia I have visited Windhoek several times and traveled Namibia thoroughly on several trips. I also host group trip to Namibia, click here if you are interested in joining: https://www.traveltomtom.net/group-trips Or watch...
Hello everyone, welcome to Travelzilla, this is my travel guide and vlog about WINDHOEK the capital and gateway to the wonderful country of NAMIBIA. Here I give you a tour of WINDHOEK, take you to some of the city's main attractions such as Christ Church, the Gibeon Meteorites, the Wernhil Mall, The Skybar rooftop at the Hilton Hotel, The National Museum of Namibia, The Parliament Gardens, as well as 2 of the best places to eat in town, the Stellenbosch and the incredible Joe's Beerhouse where we will taste household dishes made with Zebra and Kudu meat. I also introduce you to my favorite tour operator in the country, Chemeleon Safaris. WINDHOEK isn't only the capital, but also the gateway to NAMIBIA for this is the starting point for most safari tours within the country. Please make sur...
How to drive from Cape Town to Windhoek Namibia A helpful video for those that want to drive from Cape Town to Windhoek Namibia including the border crossing at Vioolsdrift / Noordoewer. Also information on distances from Cape Town to the Namibian border, where to stop for fuel and food and my overnight sleepover at Vioolsdrift lodge. The N7 from Cape Town and then the B1 in Windhoek Namibia makes for a remarkable roadtrip #5410Africa #travel #overlandingAfrica #roadtrip 00:00 Intro 00:35 Cape Town 02:50 First fuel stop at Klawer 05:15 Sleeping over at Vioolsdrift Lodge 06:18 The Vioolsdrift border post 08:03 The Noordoewer border post 09:44 Second fuel stop at Noordoewer 11:11 Third fuel stop at Keetmanshoop 12:53 Fourth fuel stop at Mariental 13:42 Stopping at the Tropic of Ca...
The Unbelievable Beautiful City in Africa (Windhoek) Windhoek is definitely one of the many beautiful cities and towns in Africa. Windhoek is the capital and largest city of Namibia. It is located in central Namibia in the Khomas Highland plateau area, at around 1,700 metres (5,600 ft) above sea level, almost exactly at the country's geographical centre. The population of Windhoek in 2020 was 431,000 which is growing continually due to an influx from all over Namibia Africa.
Windhoek is the capital and largest city of Namibia. It is located in central Namibia in the Khomas Highland plateau area, at around 1,700 metres (5,600 ft) above sea level, almost exactly at the country's geographical centre. The population of Windhoek in 2020 was 431,000 which is growing continually due to an influx from all over Namibia. Windhoek is the social, economic, political, and cultural center of the country. Please subscribe to Discover Africa New Channel Official Youtube to get notified when we release new video,like, comment and share the video. Thanks for watching!!
Heute entdecken wir die Hauptstadt Namibias, Windhoek :D Besten Dank an Dijongo Zaire für die tolle Tour (http://www.bwana.de/ueber-uns/namibia-reiseleiter/dijongo-zaire.html) sowie an die Schülerinnen der Windhoek Highschool Namibia und das Goethe-Institut Windhoek (goethe.de/ins/na/win/) ► BECOME A PATRON OF EASY GERMAN: https://www.patreon.com/easygerman ► SUBSCRIBE TO EASY GERMAN: https://goo.gl/sdP9nz ► FOLLOW US ON FACEBOOK: http://www.facebook.com/easygermanvideos ► DAILY VOCAB ON INSTAGRAM: https://www.instagram.com/easygermanvideos/ ► CHECK OUT OUR WEBSITE: http://www.easygerman.org/ ► EASY GERMAN SHOP: http://www.shop.spreadshirt.com/easygerman ► PRODUCED IN COOPERATION WITH: http://www.theglobalexperience.org Easy German/ Easy Languages is an international video projec...
The Real Cost of Living in Namibia Africa (Windhoek) Compared To USA The cost of living in Namibia is $921, which is 1.04 times less expensive than the world average. Namibia ranked 77th out of 197 countries by cost of living and the 126th best country to live in. The average salary after taxes in Namibia is $749, which is enough to cover living expenses for 0.8 months. Kimmys Empire https://youtube.com/channel/UCNG4nT5XDDZJR2NwS19IWVw
Abdullah Ibrahim (born Adolph Johannes Brand on 9 October 1934 and formerly known as Dollar Brand) is a South African pianist and composer. His music reflects many of the musical influences of his childhood in the multicultural port areas of Cape Town, ranging from traditional African songs to the gospel of the AME Church and ragas, to more modern jazz and other Western styles. Ibrahim is considered the leading figure in the subgenre Cape jazz. Within jazz, his music particularly reflects the influence of Thelonious Monk and Duke Ellington. With his wife, the jazz singer Sathima Bea Benjamin, he is father to the New York underground rapper Jean Grae, as well as to a son, Tsakwe.
Ibrahim was born in Cape Town on 9 October 1934, and was baptized Adolph Johannes Brand. He attended Trafalgar High School in Cape Town's District Six, and began piano lessons at the age of seven, making his professional debut at 15.
In 1959 and 1960, Ibrahim played with the Jazz Epistles in Sophiatown, alongside saxophonist Kippie Moeketsi, trumpeter Hugh Masekela, trombonist Jonas Gwangwa, bassist Johnny Gertze and drummer Makaya Ntshoko; in 1960, the group recorded the first jazz LP by Black South African musicians. Ibrahim then joined the European tour of the musical King Kong.