- published: 21 Jul 2017
- views: 127909590
'+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; })); }); -->
Anouar Hajoui better known as DJ Cut Killer or just Cut Killer (French pronunciation: [kœt kiˈlœʁ]; born 6 May 1971) is a renowned French DJ of Moroccan origin with a versatile repertoire of hip hop and rap.
He enjoys international fame and mixed in United States of America through invitations by DJ Big Dawg Pitbulls of Funkmaster Flex and Shadyville DJ's of rapper 50 Cent. For more than fifteen years, he has been one of the most emblematic DJs in French hip hop.
Killer as a young Parisian who loved music and a frenzied activist embraced wholeheartedly the emerging Parisian movement. He joined IZB, the first association to promote the hip-hop and organize concerts, and put down scratches on Original MC’s 1991 album. He performed a memorable role as himself in a scene from the cult movie La Haine. He was a DJ for MC Solaar’s concerts, scratcher on IAM member Akhenaton’s solo album, and a radio show on Radio Nova.
In the middle of the 1990s, Killer had already become a well-respected and active DJ. He adapted and consolidated New York hip-hop in France through many of his mix tapes, mixing the latest releases and freestyles of French rap, they became favorites and collectors' items. His dynamic mixes, his smartness to catch the best 12 inches before anyone, and his flair to find local rappers made his mix-tapes important. The big number of top brass of the second generation of French rap went through this: Sages Poètes de la Rue, Lunatic, 113 and many others. The Hip Hop Soul Party series, composed of double mixed CDs, started in 1996 at MCA’s. From the second volume on, exclusive tracks began to appear from Fabe, Busta Flex, among others, with one CD dedicated to hip-hop, the other to R&B. In volume three, a CD was dedicated to international hip-hop, the other to French hip-hop.
"Jump Around" is a song by American hip hop group House of Pain, produced by DJ Muggs of Cypress Hill, who has also covered the song. It became a hit in 1992, reaching number 3 in the group's native United States. A 1993 re-release of the song in the United Kingdom, where the initial release had been a minor hit, peaked at number 8. On VH1's 100 Greatest Songs of the 90s, "Jump Around" was featured at position 24. It was number 66 on VH1's 100 Greatest Songs of Hip Hop. The song is popular among dance hall DJs and is widely regarded in the United Kingdom as a club classic. Blender's 500 Greatest Songs Since You Were Born listed it at number 325.
The song features a distinctive horn fanfare intro, sampled from Bob & Earl's 1963 track "Harlem Shuffle". The song also samples "Popeye (The Hitchhiker)" by Chubby Checker. But it is best known for a high-pitched squeal that appears at the beginning of almost every bar—66 times in the course of the recording—sampled from the Junior Walker and the All Stars track "Shoot Your Shot".
This is a list of television programmes to have been broadcast on the children's television strand of RTÉ in the Republic of Ireland from 1986 until its conclusion.
Éanna ni Lamhna presented Creature Feature. It had a nature theme.
Each week Don Conroy would arrive at the studio to draw a picture (often of his beloved owls) or read from one of his children's books. The Den presenter, on his own sketchpad, would typically try to mimic Don's style; he would inevitably fail to match Don. Towards the end, Don would show the viewers a selection of drawings sent to him over the course of that week.
Echo Island —a "children's magazine" show along the lines of Blue Peter—first aired in 1994. The time of transmission was between 17:00 and 17:30. It ran three days a week for the first season, adding an extra programme at the start of the second season in September 1995, with two in English and the other two as Gaeilge. It was renamed Echo in 1999 (for its final season). Original hosts were Derek Mooney and Bláthnaid Ní Chofaigh. Comedian Dara Ó Briain, who has since become recognisable abroad, spent most of his RTÉ career on Echo Island from 1995 onwards. Carrie Crowley joined the show in 1996, later achieving global recognition by presenting Eurovision Song Contest 1997.
Download/Stream: https://tommyboyrecords.lnk.to/JumpAroundWE ************************************ Tommy Boy Records is a legendary Hip Hop & Electronic record label founded in New York City in 1981. The label is credited with launching the careers of notable legends Queen Latifah, House of Pain, Coolio and Naughty By Nature. Tune in to our Tommy Boy Radio 24/7: https://tommyboyrecords.lnk.to/tommyboyradio ************************************ Follow Tommy Boy Records: https://tommyboyrecords.lnk.to/instagram https://tommyboyrecords.lnk.to/Twitter https://tommyboyrecords.lnk.to/TikTok https://tommyboyrecords.lnk.to/Facebook https://tommyboyrecords.lnk.to/Spotify https://tommyboyrecords.lnk.to/Soundcloud Subscribe to the mailing list: https://tommyboy-records.com/ Shop: https://tommyb...
Download/Stream: https://tommyboyrecords.lnk.to/HouseOfPainID ************************************ Tommy Boy Records is a legendary Hip Hop & Electronic record label founded in New York City in 1981. The label is credited with launching the careers of notable legends Queen Latifah, House of Pain, Coolio and Naughty By Nature. ************************************ Follow Tommy Boy Records: https://tommyboyrecords.lnk.to/instagram https://tommyboyrecords.lnk.to/Twitter https://tommyboyrecords.lnk.to/TikTok https://tommyboyrecords.lnk.to/Facebook https://tommyboyrecords.lnk.to/Spotify https://tommyboyrecords.lnk.to/Soundcloud Subscribe to the mailing list: https://tommyboy-records.com/ Shop: https://tommyboyrecords.lnk.to/Website ************************************ Lyrics: Pack it up,...
Artist/Group: House of Pain Album: House of Pain Released: 1992 Label: Tommy Boy Watch the Official Video of this song https://www.youtube.com/watch?v=XhzpxjuwZy0 -------------------------------------------------- "Jump Around" is a song by the American hip hop group House of Pain, produced by DJ Muggs of the hip hop group Cypress Hill, who has also covered the song. It became a hit in 1992, reaching number 3 in the United States. A 1993 re-release of the song in the United Kingdom, where the initial release had been a minor hit, peaked at number 8. "Jump Around" was featured at position 24 on VH1's 100 Greatest Songs of the 90s, number 66 on VH1's 100 Greatest Songs of Hip Hop, and number 325 on Blender's 500 Greatest Songs Since You Were Born. The song is popular among dancehall DJs a...
"Jump" by Kris Kross Listen to Kris Kross: https://kriskross.lnk.to/listenYD Watch more Kris Kross videos: https://kriskross.lnk.to/listenYD/youtube Subscribe to the official Kris Kross YouTube channel: https://kriskross.lnk.to/subscribeYD Lyrics: (Jump Jump) The Mac Dad'll make ya (Jump jump) The Daddy Mac'll make ya (Jump jump) Kris Kross'll make ya (Jump jump) Uh huh, uh huh (Jump jump) The Mac Dad'll make ya (Jump jump) The Daddy Mac'll make ya (Jump jump) Kris Kross'll make ya (Jump jump) #Jump #KrisKross #OfficialVideo
Na pewno każdy z Was zna doskonale House of Pain, a już na pewno ich wielki przebój ‘Jump Around’ - posłuchajcie jak wybrzmiał na Dużej Scenie 23. Przystanku Woodstock! 🔔 Subskrybuj: http://youtube.com/owsiaknet?sub_confirmation=1 ❤️ Wielka Orkiestra Świątecznej Pomocy: http://youtube.com/wosp?sub_confirmation=1 🎥 Oglądaj na żywo: http://youtube.com/@owsiaknet/streams 🔥 Na czasie: http://youtube.com/playlist?list=PLPZ9sC5NT2-id4-EQOOo6BJ0fowKj4KVt MEDIA SPOŁECZNOŚCIOWE: 👍 http://facebook.com/kreciola 📸 http://instagram.com/kreciolatv 🐦 http://twitter.com/kreciolatv POL'AND'ROCK FESTIVAL: 🌎 http://polandrockfestival.pl 👍 http://facebook.com/PolAndRockFestival 📸 http://instagram.com/polandrockfestival 🐦 http://twitter.com/PolAndRockFest ZOBACZ WIĘCEJ: 🎬 NAJPOPULARNIEJSZE http://youtub...
"OST Oya Kohkoh - Jump Around" Halo semuanya, Selamat Pagi, Selamat Siang, Selamat Sore, Selamat Malam, dan Selamat Hari Valentine. =================================== #gudangkarya =================================== #highandlow =================================== #oyakohkoh =================================== OK temen-temen saya yakin kalian semua pasti udah nonton film High&Low kan, makanya kalian kemari untuk melihat-lihat. BTW buat kalian yang mau tau channel ini masih baru ya jadi wajar kalau editnya masih payah, nggak selevel ya sama Youtuber-youtuber lainnya, jadi untuk yang ini saya mohon maaf karena editnya masih kurang bagus. OK temen-temen sekian dulu dari saya, jangan lupa like, komen, and Subscribe 🙏 Tag: High and low, high and low the story of sword, high and low season...
Jump song for children. Jumping, dancing, sing along song for kids. Jump, jump, jump, jump. Movement song. Let's Move! Become a VIP member and access all Patty Shukla's videos without ads at https://pattysprimarysongs.com/shop/ For more videos http://www.pattysprimarysongs.com Teaching children about jumping is important because it promotes physical activity, coordination, and muscle development. Jumping also provides a fun way for children to improve their strength, balance, and overall health. Moreover, it encourages self-confidence as children achieve physical milestones, fostering a positive attitude toward exercise and a healthy lifestyle from an early age. Lyrics: Come on and Jump, Jump, Jump Jump, Jump, Jump Jump, Jump, Jump Jump, Jump, Jump Jump, Jump, Jump Jump, Jump, Jump Jump...
JUMP AROUND at 0:41 click here for JUMP AROUND
“Jump Around” is out now: Buy: http://po.st/T1gyUh | Spotify: http://po.st/Kri3BG | Apple Music: http://po.st/5vw8yU Follow KSI: Facebook : https://www.facebook.com/KSIOlajidebt Twitter : https://twitter.com/KSIOlajidebt Instagram : https://www.instagram.com/ksi/ YouTube : https://www.youtube.com/user/KSIOlajidebt Music video by KSI performing Jump Around. (C) 2016 Island Records, a division of Universal Music Operations Limited http://vevo.ly/IcRMhy #KSI #JumpAround #Vevo
Anouar Hajoui better known as DJ Cut Killer or just Cut Killer (French pronunciation: [kœt kiˈlœʁ]; born 6 May 1971) is a renowned French DJ of Moroccan origin with a versatile repertoire of hip hop and rap.
He enjoys international fame and mixed in United States of America through invitations by DJ Big Dawg Pitbulls of Funkmaster Flex and Shadyville DJ's of rapper 50 Cent. For more than fifteen years, he has been one of the most emblematic DJs in French hip hop.
Killer as a young Parisian who loved music and a frenzied activist embraced wholeheartedly the emerging Parisian movement. He joined IZB, the first association to promote the hip-hop and organize concerts, and put down scratches on Original MC’s 1991 album. He performed a memorable role as himself in a scene from the cult movie La Haine. He was a DJ for MC Solaar’s concerts, scratcher on IAM member Akhenaton’s solo album, and a radio show on Radio Nova.
In the middle of the 1990s, Killer had already become a well-respected and active DJ. He adapted and consolidated New York hip-hop in France through many of his mix tapes, mixing the latest releases and freestyles of French rap, they became favorites and collectors' items. His dynamic mixes, his smartness to catch the best 12 inches before anyone, and his flair to find local rappers made his mix-tapes important. The big number of top brass of the second generation of French rap went through this: Sages Poètes de la Rue, Lunatic, 113 and many others. The Hip Hop Soul Party series, composed of double mixed CDs, started in 1996 at MCA’s. From the second volume on, exclusive tracks began to appear from Fabe, Busta Flex, among others, with one CD dedicated to hip-hop, the other to R&B. In volume three, a CD was dedicated to international hip-hop, the other to French hip-hop.
[Everlast]
Pack it up, pack it in, let me begin
I came to win, battle me that's a sin
I won't ever slack up, punk you better back up
Try and play the role and yo the whole crew'll act up
Get up, stand up (c'mon!) c'mon throw your hands up
If you've got the feeling, jump across the ceiling
Muggs lifts a funk flow, someone's talking junk
Yo I bust him in the eye, and then I'll take the punk's hoe
Feelin, funkin, amps in the trunk and I got more rhymes
than there's cops at a Dunkin' Donuts shop
Sho' nuff, I got props
From the kids on the Hill plus my mom and my pops
I came to get down, I came to get down
So get out your seat and jump around!
Jump around! [3X]
Jump up, jump up and get down!
Jump! [17X]
I'll serve your ass like John McEnroe
If your girl steps up, I'm smacking the hoe
Word to your moms, I came to drop bombs
I got more rhymes than the Bible's got Psalms
And just like the Prodigal Son I've returned
Anyone stepping to me you'll get burned
Cause I got lyrics, but you ain't got none
If you come to battle bring a shotgun!
But if you do you're a fool, cause I duel, to the death
Trying to step to me, you'll take your last breath
I got the skills, come get your fill
Cause when I shoot the gift, I shoot to Kill
I came to get down, I came to get down
So get out your seat and jump around!
Jump around! [3X]
Jump up, jump up and get down!
Jump! [17X]
I'm the cream of the crop, I rise to the top
I never eat a pig, cause a pig is a cop
Or better yet a Terminator, like Arnold Schwarzanegger
Try to play me out like, as if my name was Sega
But I ain't going out like no punk bitch
Get used to one style and yo and I might switch
it up up and around, then buck buck you down
Put out your head and then you wake up in the Dawn of the Dead
I'm coming to get ya, I'm coming to get ya
Spitting out lyrics, homie I'll wet ya
I came to get down, I came to get down
So get out your seat and jump around!
Jump around! [3X]
Jump up, jump up and get down!
Jump! [33X]
Yo, this is dedicated.. to Joe.. DeBerg.. Dakota!
Grab your bozack, punk!