- published: 15 Apr 2023
- views: 45663
'+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; })); }); -->
HIDDEN ERROR: Usage of "Notable instruments" is not recognized
Jah Shaka has been operating a South East London-based, roots reggae Jamaican sound system since the early 1970s. His name is an amalgamation of the Rastafarian term for God and that of the Zulu king Shaka Zulu.
Jah Shaka started out on the Freddie Cloudburst Sound System as an operator, before setting up his own sound system. By the late 1970s Shaka's system had rapidly gained a large and loyal following due to the combination of spiritual content, high energy rhythms, massive sonority, and his dynamic personal style. That following notably included many of the pioneers of post-punk such as Public Image Ltd and The Slits.
In 1980 Shaka played himself in the film Babylon (directed by Franco Rosso, although he directed the scene he appeared in), operating his Sound System in a soundclash at the climax of the story.
Shaka stayed true to his spiritual and distinct musical style during the 1980s when many other Sound Systems had started to follow the Jamaican trend towards playing less orthodox styles tending towards slack dancehall music.
Addis Ababa (Amharic: አዲስ አበባ?Addis Abäba, IPA: [adˈdis ˈabəba], “new flower”; Oromo: Finfinne,[fɪnˈfɪ́n.nɛ́] "Natural Spring(s)"), sometimes spelled Addis Abeba (the spelling used by the official Ethiopian Mapping Authority), is the capital city of Ethiopia. Founded in 1886, it is the largest city in Ethiopia, with a population of 3,384,569 according to the 2007 population census with annual growth rate of 3.8%. This number has been increased from the originally published 2,738,248 figure and appears to be still largely underestimated.
As a chartered city (ras gez astedader), Addis Ababa has the status of both a city and a state. It is where the African Union is and its predecessor the OAU was based. It also hosts the headquarters of the United Nations Economic Commission for Africa (ECA) and numerous other continental and international organizations. Addis Ababa is therefore often referred to as "the political capital of Africa" due to its historical, diplomatic and political significance for the continent.
Shaka kaSenzangakhona (circa 1787 – 22 September 1828), also known as Shaka Zulu (Zulu pronunciation: [ˈʃaːɠa]), was one of the most influential monarchs of the Zulu Kingdom.
He was born near present-day Melmoth, KwaZulu-Natal Province. According to tradition, Shaka was conceived during an act of what began as ukuhlobonga, a form of sexual foreplay without penetration allowed to unmarried couples, also known as "the fun of the roads" (ama hlay endlela), during which the lovers were "carried away".
Due to persecution as a result of his illegitimacy, Shaka spent his childhood in his mother's settlements. He is recorded as having been initiated there and inducted into an ibutho lempi (fighting unit). In his early days, Shaka served as a warrior under the sway of Dingiswayo, chieftain of the Mthethwa, to whom the Zulu were then paying tribute.
Dingiswayo called up the emDlatsheni iNtanga (age-group), of which Shaka was part, and incorporated it into the Izichwe regiment. Shaka served as a Mthethwa warrior for perhaps as long as ten years, and distinguished himself with his courage and his adept skill as a close combat warrior. This skill gained the attention of Dingiswayo, who became even more interested in Shaka when he discovered Shaka's royal bloodline. He honoured Shaka by making him commander of a regiment or ibutho.
Shaka (c. 1787 – c. 1828) was the leader of the Zulu Kingdom in the early 19th century.
Shaka may also refer to:
The shaka sign, sometimes known as "hang loose", is a gesture often associated with Hawaii and surf culture. It consists of extending the thumb and smallest finger while holding the three middle fingers curled, and gesturing in salutation while presenting the front or back of the hand; the hand may be rotated back and forth for emphasis. The shaka sign was adopted from local Hawaiian culture and customs by visiting surfers in the 1960s, and its use has spread around the world.
Hawaiians use the shaka to convey the "Aloha Spirit", a concept of friendship, understanding, compassion, and solidarity among the various ethnic cultures that reside within Hawaii, lacking a direct semantic to literal translation. The shaka can also be used to express "howzit?", "thanks, eh?", and "all right!" Drivers will often use it on the road to communicate distant greetings and gratitude.
In American Sign Language, the shaka is one of the two signs used to refer to surfing. In California, the shaka sign may be referred to as "hang loose" or "hang ten"- both associated with surfer culture.
Tracklist : Seven Seals Dub 0:00 All Will Be Well 4:36 Majestic Dub 8:18 Creation (With Aswad) 11:56 Redemption Dub (With The Disciples) 14:58 Giver Of Life 19:00 Messenger Dub 23:48 Throne Of God 27:18 Don't Give Up 32:10 Rasta Deh Yah 36:10 Ganja Prayer Dub (With Sly & Robbie) 39:52 Believe Dub 43:31
https://www.facebook.com/Kingston.To.Babylon
FULL TRACKLIST, 320kbps DOWNLOAD LINK , WRITE UP AT https://mikusmusik.blogspot.com/2023/04/jah-shaka-music-tribute-to-zulu-warrior.html Tribute to the mighty Jah Shaka, playing some favourites released on the JAH SHAKA MUSIC label, 80s, 90s, and 00s. The majority feature Shaka as producer and sometimes vocalist, though there are also some tunes here produced by Shaka's son Young Warrior, Mad Professor, and others. Am playing these tunes live here in a soundsystem style... Love to all Shakaites.... Jah Shaka never to be forgotten, message will live forever...Journey on...
Jah Shaka and Friends: (Wailing Souls, Roots Radics, Linval Thompson, Johnny Osbourne, Earl Sixteen, Augustus Pablo, Barrington Levy, Eek-A-Mouse, Black Uhuru, Prince Jammy, Te Track, Rockers All Stars, General Saint & Clint Eastwood, Vivian Jones). "The Positive Message" and some more... (C) & (P) Greensleeves Records, Jah Shaka Music & featured artists respectively. Support your local Record Dealer!!!
Facebook http://on.fb.me/Z0k5IU Twitter http://bit.ly/VCxZcg
He is one of those who respect.
Shaka in fine form here with vibes flowing and bass lines blazing... clip was taken towards the end of his last session at The Cause, an arts venue in north London. Big respect to this venue as one of the very few to keep putting on events as best they could during the pandemic. Sad to see it close down to make way for flats in the new year.
Jah Shaka playing an Indica Dubs & Danman dubplate special at Dub Camp Festival 2018. Big respect to the King Of Dub, Jah Shaka! 👑🔊🔥. Video: Roots Revival. Voiced by Danman, produced by Indica Dubs, mixed by Echo Vault.
Addis Ababa, the Capital City of Ethiopia is the Fastest Growing City in East Africa. The political Capital of Africa as it has been often referred is the Headquarters of the African Union and is home to many International organizations. If you are planning to travel to Africa, Addis Ababa is one of the Cities you should visit. Addis Ababa is a vibrant and bustling Metropolis endowed with a rich history and diverse Cultural Heritage that serves as the Capital and the largest city of Ethiopia. The city of Addis Ababa has stunning Landscapes, warm hospitality, and Iconic Landmarks attracting tourists from all over the world. The City of Addis Ababa has undergone massive transformations over the years in terms of infrastructural developments as the government invests in Construction of mode...
Ethiopia, in the Horn of Africa, is a rugged, landlocked country split by the Great Rift Valley. With archaeological finds dating back more than 3 million years, it’s a place of ancient culture. Among its important sites are Lalibela with its rock-cut Christian churches from the 12th–13th centuries. Aksum is the ruins of an ancient city with obelisks, tombs, castles and Our Lady Mary of Zion church. The land has a total area of 426,372 square miles. Ethiopia is one of the largest countries in Africa and the 27th biggest in the world. The highest mountain peak (Ras Daschän) is at 4,533 meters. There is no access to the open sea. It shares national borders with the six neighboring countries Djibouti, Eritrea, Kenya, Somalia, South Sudan and Sudan. The current population of Ethiopia is 123,41...
STREAM + ADD ► https://orcd.co/culturechantingon "Chanting On" is an impressive compilation drawn from several critically acclaimed Culture albums spanning the 80's and 90's as well as earlier roots material. Culture is reggae’s preeminent harmony group. Born in the 70′s golden age of reggae, the ever viable Culture garnered continual US and international acclaim for its long series of classic “roots” albums. Culture’s legendary “Two Sevens Clash” (Shanachie) was Reggae Album of the Year in 1977 and is acknowledged today by Rolling Stone Magazine (April 11, 2002) as #25 of the 50 all time coolest records (the only reggae album to make the list). C&P 2014 Revolver Records #culture #reggae #rootsreggae
The rise of Addis Ababa in 2025 Embark on a breathtaking journey through the vibrant streets of Addis Ababa, Ethiopia, in stunning 4K resolution! This 2025 driving tour takes you off the beaten path to explore the city's hidden gems, from stanning skyscrapers to serene parks and historic landmarks. 🏙️ What You'll See: Bustling districts like Piassa and Bole Beautiful city views from various perspectives Historic spots and monuments Modern architecture blending with traditional styles 📌 Why Watch? Perfect for travelers planning their next trip or locals rediscovering the beauty of their city. This tour captures the rich culture, history, and vibrant energy of Addis Ababa like never before. Time codes 0:00 Meskel Square | መስቀል አደባባይ 1:17 Bole Flamingo | ፍላሚንጎ 2:28 Dembel Area|ደምበል አካባቢ 2...
Ethiopia Addis Ababa - NOT EUROPE, BUT AFRICA FOR BUSSINESS INQUIRES AND COLLABORATIONS HERE IS MY INFO. Instagram:harrietthetraveller Email: [email protected] WhatsApp: +256756287078 To support the channel please donate here : https://www.gofundme.com/f/support-my-youtube-travels-of-africa
In this video, I present to you Addis Ababa - Ethiopia: The African Political Capital. Addis Ababa, Ethiopia's capital which means "New Flower" in the native Amharic language, shows little sign of losing its youthful, lusty edge and is the pulsing heart of this eclectic nation's resurgence as one of the world's fastest-growing economies. According to current census data, the city has a population of close to 5 Million million inhabitants. As a chartered city, Addis Ababa is where the African Union is headquartered and where its predecessor the Organization of African Unity was based. The city also hosts the headquarters of the United Nations Economic Commission for Africa, as well as various other continental and international organizations. Addis Ababa is therefore often referred to as "...
In this video I am walking around Gerji . the final destination is around Gerji Unty , Addis Ababa . Ethiopia . 0:00 intro 12:45 Addis Ababa 25:22 Walking Tour Enjoy ! Watch more Addis Ababa Walking Tour Videos → https://www.youtube.com/watch?v=yPET1qf4X_o&list=PLKUgqvNY-UK9N89GJNWBhiU_hrOwyX0FP&pp=gAQBiAQB Watch Driving Downtown Addis Ababa → https://www.youtube.com/watch?v=pijbEKDPwT4 Contact me on favebook : https://www.facebook.com/ethiopia4k tags , አዲስ አበባ Addis Ababa Ethiopia walking tour addis ababa ethiopia walking tour addis ababa city addis abeba ebs tv ethiopian music walking tour addis #addisababa #Ethiopia #habesha #አዲስአበባ #walkingtour #addisababa2025 #Africa addis ababa city
A Road and Park at Kasanchiz, Addis Ababa #addisababa #Ethiopia #corridor development #abiyahamed
Ethiopia, often hailed as the "cradle of civilization," boasts a profound history stretching back to the very dawn of humankind. Archaeological discoveries, such as the famous "Lucy" skeleton, provide compelling evidence that the region was pivotal in the evolution of early hominids. Beyond its prehistoric significance, Ethiopia nurtured a unique and powerful civilization, giving rise to the Aksumite Empire, a major trading power that flourished for centuries. This empire left behind impressive architectural marvels, including towering obelisks and intricate churches carved into rock, testifying to the skill and sophistication of its people. The legacy of Aksum, coupled with Ethiopia's prolonged periods of independence and its unique blend of cultures, solidifies its claim to being a found...
#Shaka Performing #Karma Produce By Terro ChopCity Records X Tekktroniic Muziq Credits MIX AND MASTER By : @Tekktroniic_tmp Beat by : Marvoni / @jevvo_marvoni Shot And Edit By : KD VISUALS Buy And Stream The Song Here https://onerpm.link/Karma-Single My Social Media Instagram : https://www.instagram.com/shaka.muzic/ Twitter : https://twitter.com/iamshakamuzic
"May" Umar Hayyom sŏzi Nicolas Scholtes musiqasi #boshinggaketmonbilanbirsolaman
10/6配信クリップ『LOL』 https://www.twitch.tv/videos/2268910842 イブラヒム https://x.com/honmono_ibrahim きなこ https://x.com/kinako_pop RC MOTHER3 https://x.com/mother3rrd AlphaAzur https://x.com/AzurAlpha 0:00 ダイジェスト 0:15 「他意はない」 1:04 何も上手くいかない 1:38 お笑いネクサス攻防戦 5:49 弾避けゲーム 6:12 大歯茎の者達 ーーーSHAKAーーー 《ライブ配信先》 https://twitch.tv/fps_shaka 《X》 https://twitter.com/avashaka 《お仕事の連絡はこちら》 [email protected] #SHAKA
10/6配信クリップ『LOL』 https://www.twitch.tv/videos/2268910842 ありさか https://x.com/ArisakaaaT きなこ https://x.com/kinako_pop RC MOTHER3 https://x.com/mother3rrd AlphaAzur https://x.com/AzurAlpha 0:00 ダイジェスト 0:16 落ちる者の宿命 0:48 岩の裏の虫 1:31 輩でしかないコンビ 2:03 団結力が皆無の男達 7:37 やりたい放題のCRコンビ 9:37 好きな鍋の具材は 10:17 隙間から消されるきなこ 10:50 誰もタワーを壊さない 11:27 ギブだらけの人生 ーーーSHAKAーーー 《ライブ配信先》 https://twitch.tv/fps_shaka 《X》 https://twitter.com/avashaka 《お仕事の連絡はこちら》 [email protected] #SHAKA
"Shaka, A Story of Aloha" is a feature length documentary on the origin and meaning of the Shaka gesture. Set on O’ahu, Hawai’i, the film explores multiple versions of how the Shaka gesture came about, how it progressed to global use, the Shaka word origin and how it has been used to share the aloha spirit. An Untold, Unknown Story The largely untold story on the history and meaning of the Shaka gesture is only now becoming public now as today’s elders realize that the world sorely needs this epic story more than ever. A 2022 survey by Anthology Research revealed that 91% of Hawai’i residents don't know where the Shaka came from. Multiculturalism The story is also a multicultural melting pot that integrates Hawaiian, Mormon, Japanese/Okinawan plantation workers, entertainers, world lead...
Socials: Instagram- @Rinzo2x - @soulidifiedetherians__ @soulidifieddivinity - Free Dr Malachi Z York EL Peace to the gods and goddess of Planet Ki💯🫴🏽[Positive energy Always creates elevation] - Know ThySelf} - Surviving: the more mindset/skillset you have the better head you have to deal with the things that’s going on with reality and society reality and skillset accusations💯🧠] Music on All Platforms: Stream , Download , Etc [SOULIDIFIED - Etherians] MERCH Dropping Soon
Shaka - Round Deh Suh (Official Music Video) #Shaka Performing #RoundDehSuh https://onerpm.link/rounddehsuh Produced By : #TerroChopCityRecords x Tekktroniic Muziq x One Mckinley Crescent Beat By : Marvoni @jevvo_marvoni Directed By : KD Visuals http://vevo.ly/DfOYZy
#Shaka Performing #Walk Produce By Terro ChopCity Records X Tekktroniic Muziq Credits MIX AND MASTER By : @Tekktroniic_tmp Beat by : Marvoni / @jevvo_marvoni Shot And Edit By : KD VISUALS Buy And Stream The Song Here https://onerpm.link/Walk-Single My Social Media Instagram : https://www.instagram.com/shaka.muzic/ Twitter : https://twitter.com/iamshakamuzic
Kana Qani? #uzbekrap
Text: Nasafiy, Shaka Music: Nasafiy Administrator: +998909205436 Instagram: https://www.instagram.com/nasafiy_music/
HIDDEN ERROR: Usage of "Notable instruments" is not recognized
Jah Shaka has been operating a South East London-based, roots reggae Jamaican sound system since the early 1970s. His name is an amalgamation of the Rastafarian term for God and that of the Zulu king Shaka Zulu.
Jah Shaka started out on the Freddie Cloudburst Sound System as an operator, before setting up his own sound system. By the late 1970s Shaka's system had rapidly gained a large and loyal following due to the combination of spiritual content, high energy rhythms, massive sonority, and his dynamic personal style. That following notably included many of the pioneers of post-punk such as Public Image Ltd and The Slits.
In 1980 Shaka played himself in the film Babylon (directed by Franco Rosso, although he directed the scene he appeared in), operating his Sound System in a soundclash at the climax of the story.
Shaka stayed true to his spiritual and distinct musical style during the 1980s when many other Sound Systems had started to follow the Jamaican trend towards playing less orthodox styles tending towards slack dancehall music.
There is a land far far away
It's called Addis Ababba
There is a land far far away
It's called Addis Ababba
The ruler of the land
Which is far away
His name is King Selassie
King of Kings and Lord of Lords
The ruler of the land
Which is in the East
His name is King Selassie
There is a land far far away
It's called Addis Ababba
There is a land far far away
It's called Addis Ababba
Babylon them
They want to take away
The Ark of the Covenant from yard
The Ark of the Covenant
Cannot be taken away
From Addis Ababba
Respect!
There is a land far far away
It's called Addis Ababba
Here me when I say
There is a land far far away
It's called Addis Ababba
King of Kings and Lord of Lords
Ruler of Creation
His name is King Selassie
Mussolini tried to invade Ethiopia
But the Conqueror
His name is King Selassie
Rule and respect
There is a land far far away
It's called Addis Ababba
There is a land far far away
It's called Addis Ababba
Wonders of the world
The great River Nile
Is found there in Africa
The great treasure of Axum
Axum of Zion