- published: 03 Oct 2009
- views: 124169565
'+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; })); }); -->
Roy Ayers (born September 10, 1940) is an American funk, soul, and jazz composer and vibraphone player. Ayers began his career as a post-bop jazz artist, releasing several albums with Atlantic Records, before his tenure at Polydor Records beginning in the 1970s, during which he helped pioneer jazz-funk. He is a key figure in the acid jazz movement, which is a mixture of jazz into hip-hop and funk, and has been dubbed by many as "The Godfather of Neo Soul". He is most well known for his signature compositions "Everybody Loves The Sunshine" and "Searchin". and is also famous for having more sampled hits by rappers than any other artist.
Ayers was born in Los Angeles, and grew up in a musical family, where his father played trombone and his mother played piano. At the age of five, he was given his first pair of vibraphone mallets by Lionel Hampton. The area of Los Angeles that Ayers grew up in, now known as "South Central" but then known as "South Park", was the epicenter of the Southern California Black music scene. The schools he attended (Wadsworth Elementary, Nevins Middle School, and Thomas Jefferson High School) were all close to the famed Central Avenue, Los Angeles' equivalent of Harlem's Lenox Avenue and Chicago's State Street. Roy would likely have been exposed to music as it not only emanated from the many nightclubs and bars in the area, but also poured out of many of the homes where the musicians who kept the scene alive lived in and around Central. During high school, Ayers sang in the church choir and fronted a band named The Latin Lyrics, in which he played steel guitar and piano. His high school, Thomas Jefferson High School, produced some of the most talented new musicians, such as Dexter Gordon.
Take Me Out may refer to:
Take Me Out is a 2002 play by American playwright Richard Greenberg originally staged by Donmar Warehouse, London, with The Public Theater. It premiered Off-Broadway on September 5, 2002, at the Joseph Papp Public Theater, and made its Broadway debut on February 27, 2003, at the Walter Kerr Theatre, where it ran 355 performances. It won the 2003 Tony Award for Best Play.
Much of the play is set in the locker room of a professional baseball team, and as such has an all-male cast that explores themes of homophobia, racism, class, and masculinity in sports.
The play's main character, Darren Lemming, is a popular and successful mixed-race baseball player at the peak of his career when he decides to come out. Several of his teammates react strongly (some supportive and accepting, and some not), and the drama plays out over the course of a baseball season with tragic consequences.
While Glenn Burke was out to teammates and team owners in the 1970s and Billy Bean came out in 1999 after retiring from playing in Major League Baseball for eight seasons, at the time of the writing of this play no Major League Baseball player had ever come out to the public during his career. This play is the dramatic exploration of what such an event might be like.
Take Me Out is an Irish television dating game show airing on TV3. The show features Irish radio personality Ray Foley as the presenter. It is based on the Australian series Taken Out and the British series of the same name. The series is produced by Sideline Productions for TV3. The series is filmed in The Helix in Dublin.
One single man has to try to impress thirty single women. Each woman has a (white) light which she can turn off (red) if she is unimpressed by the man. His aim is to convince as many women as possible to keep their lights on so that he can then pick, from the women remaining, the one that he wishes to take out on a date.
The game starts when the single man emerges from behind a door while his chosen song is played in the background. There are three rounds during which the women learn more about the man and may choose to turn off their lights. The first round is a brief introduction from the man. The second and third rounds usually have the man talk more about himself for 30 seconds ("Flirty for Thirty"), show off a talent (song, dance, trick, etc.), or a video is shown of the man's friends promoting him and talking more about his background.
Franz Ferdinand: Buy/Listen: https://lnk.to/FFalbum!yttmo About the album: Franz Ferdinand is the debut studio album by Scottish indie rock band Franz Ferdinand, released in early 2004 through Domino Records. It was recorded during 2003 at Gula Studios in Malmö, Sweden and was co-produced by the band and Tore Johansson. It entered the United Kingdom album charts at number three in February 2004 and contains the UK top ten singles "Take Me Out" and "The Dark of the Matinée" (often referred to simply as "Matinée"), as well as UK top 20 hit "Michael". Follow Franz Ferdinand: Spotify - https://lnk.to/FFalbumYS!tmo Facebook - https://lnk.to/FFalbumYF!tmo Twitter - https://lnk.to/FFalbumYT!tmo Instagram - https://lnk.to/FFalbumYI!tmo Website - https://lnk.to/FFalbumAW!tmo YouTube - http...
Franz Ferdinand are a rock band formed in Glasgow in 2002. The band is composed of Alex Kapranos (lead vocals and guitar), Bob Hardy (bass guitar), Nick McCarthy (rhythm guitar, keyboards and backing vocals) and Paul Thomson (drums, percussion, guitar and backing vocals).
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Franz Ferdinand perform Take Me Out from King Tut's Wah Wah Tent at T in the Park 2014. T in the Park is a Scottish music festival which began back in 1994 and hosts some of the biggest names from the Rock, indie, electronic & pop genres. T in the Park | 2014 | BBC #BBC #FranzFerdinand #TinThePark All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
Provided to YouTube by Domino Take Me Out · Franz Ferdinand Hits To The Head ℗ 2022 Domino Recording Co Ltd Released on: 2022-03-11 Music Publisher: Universal Music Publishing Composer, Lyricist: Alex Kapranos Composer, Lyricist: Nicholas McCarthy Auto-generated by YouTube.
#Eps78 #TakeMeOutIndonesia #SingleMan Reza, Single Man yang memiliki hobi mengkoleksi action vigure ini siap mencari Single Ladies terbaik! Kira-kira siapakah yang akan menjadi pasangan Reza? HAI LOVERS!!💖 Yuuk rekomendasikan TEMAN & KELUARGA kalian untuk menjadi #HighQualitySingleMan ✨ Persyaratan: 1. Pria Single 2. Usia minimal 21 tahun 3. Menarik & berkarakter Rekomendasikan SEKARANG JUGA & dapatkan HADIAH MENARIK, siapa yang mauuu? 😆🙌🏻 #TakeMeOutIndonesia Real PEOPLE, More LOVE, More DRAMA❤️ ___________________________________________________________________ Welcome to Take Me Out, Indonesia! Real Love, Real People, Real Drama~ Yang dibawakan oleh host tampan & cantik, Rian Ibram dan Angel Karamoy! Saksikan Take Me Out di MNCTV! Join Our Social Media: Subscribe to our YouT...
Franz Ferdinand - "Take Me Out" from 'Franz Ferdinand' released 2004 on Domino Record Co. Subscribe to Franz Ferdinand on YouTube: https://smarturl.it/FranzYT Purchase ‘Franz Ferdinand’: LP/CD: http://bit.ly/FFFranzFerdinand Digital: http://bit.ly/FFFranzi Stream & Save "Take Me Out": http://bit.ly/FFTakeMeOut Franz Ferdinand’s new album ‘Always Ascending’ is out now. Listen & Buy here: http://smarturl.it/AlwaysAscending Follow Franz Ferdinand: YouTube: https://smarturl.it/FranzYT Website: http://franzferdinand.com Facebook: http://smarturl.it/FranzFB Twitter: http://smarturl.it/FranzTW Instagram: http://smarturl.it/FranzIN Spotify: http://smarturl.it/FranzSP Apple Music: http://smarturl.it/FranzAM Follow Domino Record Co: YouTube: http://smarturl.it/DominoYT Website: http://smart...
Damian gets a date, but not in the way he wants it, after embarrassing or insulting every girl on the show! Note: Despite what this system says, I did not block the video from viewing on mobile phones - that was Fremantle Media. Also, don't bother doing 'video responses' unless it's actually relevant, hence why there's only one been let through so far. (C) Fremantle Media, ITV 2012
It’s time to play some baseball! Have fun singing along with this classic song! https://www.youtube.com/c/Cocomelon?sub_confirmation=1 Lyrics: Take me out to the ball game, Take me out with the crowd! Buy me some peanuts and cracker jacks I don’t care if I never get back! Let me root, root root for the home team! If they don’t win it’s a shame! For it’s one! Two! Three strikes, you’re out! At the old ball game! About Cocomelon: Where kids can be happy and smart! At Cocomelon, our goal is to help make learning a fun and enjoyable experience for kids by creating beautiful 3D animation, educational lyrics, and toe-tapping music. Kids will laugh, dance, sing, and play along with our videos, learning letters, numbers, animal sounds, colors, and much, much more while simply enjoying ou...
Thank you all for watching and all the love and support on my most recent videos. Many more videos to come so subscribe if you wanna come along for the SHMEEZY ride. Tracks: https://www.mxbikes-shop.com/downloads/snowysx/ Bike Link: https://mxb-mods.com/oem-bike-pack Discord: https://discord.gg/h8dsemWP5k
#GaryValenciano #TakeMeOutOfTheDark #lLyricVideo LISTEN to "Take Me Out Of The Dark" https://spoti.fi/2UsfDCr Don’t forget to subscribe: http://bit.ly/1ocCqit We are the number one independent record label in the Philippines. Home of the best Original Pilipino Music (OPM) artists, our roster includes Gary Valenciano, Parokya Ni Edgar, Ice Seguerra, Noel Cabangon, Christian Bautista, Sponge Cola, Neocolours, Gloc-9, The Company, Neocolours, Elmo Magalona, Julie Anne San Jose, Shanti Dope, Claudia Barretto, Donny Pangilinan, Hannah Pangilinan, Angelina Cruz, Fern., TALA, Janina Vela, Kyle Juliano, Teejay Marquez, Better Days, Mark Oblea, and Paolo Sandejas and many more. Subscribe to our channel for exclusive videos including official music videos, lyric videos, album previews and album ...
Roy Ayers (born September 10, 1940) is an American funk, soul, and jazz composer and vibraphone player. Ayers began his career as a post-bop jazz artist, releasing several albums with Atlantic Records, before his tenure at Polydor Records beginning in the 1970s, during which he helped pioneer jazz-funk. He is a key figure in the acid jazz movement, which is a mixture of jazz into hip-hop and funk, and has been dubbed by many as "The Godfather of Neo Soul". He is most well known for his signature compositions "Everybody Loves The Sunshine" and "Searchin". and is also famous for having more sampled hits by rappers than any other artist.
Ayers was born in Los Angeles, and grew up in a musical family, where his father played trombone and his mother played piano. At the age of five, he was given his first pair of vibraphone mallets by Lionel Hampton. The area of Los Angeles that Ayers grew up in, now known as "South Central" but then known as "South Park", was the epicenter of the Southern California Black music scene. The schools he attended (Wadsworth Elementary, Nevins Middle School, and Thomas Jefferson High School) were all close to the famed Central Avenue, Los Angeles' equivalent of Harlem's Lenox Avenue and Chicago's State Street. Roy would likely have been exposed to music as it not only emanated from the many nightclubs and bars in the area, but also poured out of many of the homes where the musicians who kept the scene alive lived in and around Central. During high school, Ayers sang in the church choir and fronted a band named The Latin Lyrics, in which he played steel guitar and piano. His high school, Thomas Jefferson High School, produced some of the most talented new musicians, such as Dexter Gordon.
Coming with the realness lyrics of life
Some people need to watch what they say
Watch what you're saying
Someone's gonna hear exactly what you said
Soon you'll be paying in the dead of night
They'll be nowhere to run while you were laying
Laying for the doom that's coming to a head, no kind of praying
Is gonna save us from the past that will surely come
Warning, rappers be like boring they're sleeping
It's deep man, so peep in closely when I'm speaking
Weaklings, it's obvious you can't like up to
Your petty pointless words, yet and still you love to
Run off your jibs, now there come a time for judgment
Punishment, what if we take away your ornaments
And strip you down to the raw deal then I'd reveal the evidence
'Cause you don't really represent
Watch what you're saying
Someone's gonna hear exactly what you said
Soon you'll be paying in the dead of night
They'll be nowhere to run while you were laying
Laying for the doom that's coming to a head, no kind of praying
Is gonna save us from the past that will surely come
Listen here, I'm getting tired of you shooting lip
You better tighten up or you will really slip up
And say something that you mean to do
Turn around and it'll be on you
To save yourself from your call and blunder
And bury your [unverified] like the world it's under
And like a fool you'll sit and wonder
What, who do you wanna know? Wish no water
No magic spell can save you from your self made hell
You've made your bed and you know darn well
You got a lay it in the [unverified] and there's no magic potion
To save you from the wheels you've set in motion
The stone is cut, the die is cast, what were you thinking?
Watch what you're saying
Someone's gonna hear exactly what you said
Soon you'll be paying in the dead of night
They'll be nowhere to run while you were laying
Laying for the doom that's coming to a head, no kind of praying
Is gonna save us from the past that will surely come
I can't understand it, they should ban it, can it?
Too much weak talk and not enough real hip-hop
I sense a purpose is filling me to display credibility
And show responsibility, willingly
I'll take on any Johnny Dangerous
Pull his file, for he knows, he cannot hang with this
The illest king, I smack the jokers
No hocus pocus, a real MC when I kick vocals
Watch what you're saying
Someone's gonna hear exactly what you said
Soon you'll be paying in the dead of night
They'll be nowhere to run while you were laying
Laying for the doom that's coming to a head, no kind of praying