- published: 30 May 2022
- views: 8083
'+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.
District Six (Afrikaans Distrik Ses) is the name of a former inner-city residential area in Cape Town, South Africa. Over 60,000 of its inhabitants were forcibly removed during the 1970s by the apartheid regime.
The area of District Six is now partly divided between the suburbs of Walmer Estate, Zonnebloem, and Lower Vrede, while the rest is undeveloped land.
The area was named in 1867 as the Sixth Municipal District of Cape Town. The District Six neighbourhood is bounded by Sir Lowry Road on the north, Tennant Road to the west, De Waal Drive on the south and Cambridge Street to the east. By the turn of the century it was already a lively community made up of former slaves, artisans, merchants and other immigrants, as well as many Malay people brought to South Africa by the Dutch East India Company during its administration of the Cape Colony. It was home to almost a tenth of the city of Cape Town's population, which numbered over 1,700–1,900 families.
District Six is the debut album by Amphibious Assault. It was released in 2003.
District Six is a place in Cape Town, South Africa
District Six may also refer to:
Schools
Other uses
From the Villon Films Archive collections. Extract. Full duration: 0:09:54. To order the full film or clips in high/lo-res or to find out more visit: http://www.villonfilms.ca/ Subscribe for more high quality, rare and inspiring documentary material from our large archive of footage. We offer films and photography licensing for Film&TV, museums, galleries, education, and heritage organisations. About The Film Unedited footage. Father Basil van Rensburg was a Catholic priest who gained international recognition for his fight against forced removals from Cape Town's District Six. Broll. About Villon Villon Films has been independently producing and distributing award-winning films since 1970. With a strong focus on socio-political documentary, the collection spans such issues as government...
A visit to the museum and memories from the residents. http://www.districtsix.co.za http://en.wikipedia.org/wiki/District_Six,_Cape_Town
sifunukubuyela edistrict six
“But let me tell you that Big Brother Apartheid might be dead but his father is still with us. We never killed his father. His father’s name is the class system and his job is gentrification. In the name of gentrification, the father of Apartheid is still chasing poor black people from District Six. […] He is coming for us. He came for us last week on his first round through Woodstock. He chased us around the corner” - Leigh Davids, 2018. Even though DA’s values found in their 2014 Election Manifesto include opposing Apartheid and the want to overcome the “legacy of Apartheid”, as Davids explained, the legacy of Apartheid is still alive and thriving today through the displaced former residents of District 6 as well as reinventing itself as gentrification, found in Woodstock. This is 5 m...
Examines the role of English and attitudes to English since the end of Apartheid. (Part 4 of 4) Playlist link - http://www.youtube.com/playlist?list=PL479264A41796FA92 Transcript link - http://media-podcast.open.ac.uk/feeds/u214-worlds/transcript/u214worlds04_01163_10808.pdf OpenLearn content: Worlds of English https://www.open.edu/openlearn/languages/worlds-english Study a free course on Exploring the English Language at the Open University https://www.open.edu/openlearn/history-the-arts/culture/english-language/exploring-the-english-language/content-section-0?active-tab=description-tab Study a free course on English in the world today at the Open University https://www.open.edu/openlearn/languages/english-language/english-the-world-today/content-section-0?active-tab=content-tab St...
District Six as it was in the late 1950's and 1960's. There have been many romantic versions of District Six presented on stage and screen, sung about but this is what D6 really looked like during that period. During the 1970's the inhabitants of D6 were forcibly removed by the apartheid goverment (National Party) and relocated around the peninsula most notably Mitchells Plain. Music by Charles Jones and Andrew Hendricks. We have a considerable stock library of District Six footage available for purchase. [email protected]
How centuries of division built one of the most unequal countries on earth. Subscribe to our channel and turn on notifications (🔔) http://goo.gl/0bsAjO For decades, South Africa was under apartheid: a series of laws that divided people by race. Then, in the 1990s, those laws were dismantled. But many of the barriers they created continue to divide South Africans by skin color - which in turn determines their quality of life, access to jobs, and wealth. Racial division was built into the fabric of cities throughout South Africa, and it still hasn't been uprooted. That's partly because, while apartheid was the culmination of South Africa's racial divisions, it wasn't the beginning of them. That story starts closer to the 1800s, when the British built a network of railroads that transforme...
Incumbent Rep. Andrea Salinas, a Democrat, and Republican challenger Mike Erickson debate economic policies, gun safety measures and abortion laws in an interview with The Oregonian/OregonLive Editorial Board on Sept. 11. • Subscribe to our YouTube channel: https://www.youtube.com/subscription_center?add_user=oregoniannews • Get the latest news and more at The Oregonian/OregonLive: http://www.oregonlive.com/ • Subscribe to The Oregonian/OregonLive: https://www.oregonlive.com/subscribe/ • Follow us on TikTok: https://www.tiktok.com/@theoregonian?lang=en • Follow us on Instagram: https://www.instagram.com/theoregonian/ • Like us on Facebook: https://www.facebook.com/theoregonian/ • Follow us on X: https://x.com/Oregonian • Subscribe to our newsletters: https://link.oregonlive.com/join/6fk/...
Bra Hugh and Sibongile performing at COSATU's 8th National Congress.
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.
Distrust is what will separate
a close felt bond just dissipates
wishing time would freeze for us
i feel as if live's just futile
love is just so volatile
i've been waiting all this time
what have you done?
you've made me feel?
i can't believe that this is for real
restlessly sleeping foolishly weeping
sighing wishing bleeding
yeah
familiar smell fire touch
has never ever meant so much
why aren't you run of the mill
is it because we are the same
romantically violent, harmful, tame
a constant state of love and war
and maybe in time i will heal
from all dreadful things you've
made me feel
a four letter word, a suicide kiss
i don't know if i'm ready for this
I'm dying