- published: 29 Jun 2023
- views: 755313209
'+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; })); }); -->
Round and Round may refer to:
Toys in the Attic is the third studio album by American rock band Aerosmith, released in April 1975 by Columbia Records. Its first single release, "Sweet Emotion", was released a month later on May 19 and "Walk This Way" was later released on August 28 in the same year. The album is their most commercially successful studio LP in the US, with eight million copies sold, according to the RIAA.
Steven Tyler said that his original idea for the album cover was a teddy bear sitting in the attic with its wrist cut and stuffing spread across the floor. They decided, in the end, to put all of the animals in instead.
The album was ranked #229 on Rolling Stone's list of The 500 Greatest Albums of All Time. "Walk This Way" and the album's title track are part of The Rock and Roll Hall of Fame's 500 Songs that Shaped Rock and Roll list.
For Aerosmith's previous album, 1974's Get Your Wings, the band began working with record producer Jack Douglas, who co-produced the album with Ray Colcord. In the liner notes to the 1993 reissue of Greatest Hits it was said by an unnamed member of the group that they "nailed" the album. At the beginning of 1975 the band started working at The Record Plant in New York City for the album that became Toys in the Attic. The sessions for Toys were produced by Douglas without Colcord - the album was engineered by Jay Messina with assistant engineers Rod O'Brien, Corky Stasiak and Dave Thoener. The songs for Toys were recorded with a Spectrasonics mixing board and a 16-track tape recorder. By this point, Aerosmith had fully matured as a band and Steven Tyler made sex the primary focus of his songwriting on the album.
"Round and Round" is a song by the American heavy metal band, Ratt. It was released as a single in 1984 on Atlantic Records.
The song was written by group members Warren DeMartini, Stephen Pearcy and Robbin Crosby.
It appears as the third track off of Ratt's debut album Out of the Cellar. The tune was ranked number 51 on "VH1: 100 Greatest Songs of the 80's", and was named the 61st best hard rock song of all time also by VH1.
"Round and Round" was featured in the 2008 film The Wrestler and the 2012 comedy film That's My Boy. The song was also featured in the 2006 video game Grand Theft Auto Vice City Stories, 2007 video game Guitar Hero Encore: Rocks the 80s, also the mastered track later appeared in Guitar Hero: Smash Hits, Rock Band 2 and Guitar Hero Live. It was also used to open each newscast aired on Los Angeles radio station KFI until late 2013. The song was featured in the credits of The Grim Adventures of Billy & Mandy Christmas special, Billy and Mandy Save Christmas and was featured in the Family Guy epsisode Farmer Guy in a scene which shows a pigeon jet skiing with the song playing. It was also featured in the 2006 video game Saints Row
Charles Hicks (July 6, 1973 – December 16, 1993), also known by his stage name Charizma, was an MC from Milpitas, California, United States. He is best known for his work with Peanut Butter Wolf; the two artists formed a duo after meeting in 1990 but their musical partnership was cut short following Charizma's murder in 1993.
Charizma was 13 when he got his first taste for hip hop, and he started rapping at high school talent shows. He was only 16 when he met 19-year-old Chris Manak, also known as Peanut Butter Wolf, in 1990. They became best friends, recording several demos and performing live in the San Jose area.
After hearing Charizma on San Jose State's KSJS 90.5 FM, Matt Brown approached Charizma and Peanut Butter Wolf, offering to become their manager. Charizma and Peanut Butter Wolf agreed and began looking for a record label. After entertaining offers from some major record labels, including Columbia Records, they signed with the Disney-owned record label Hollywood Basic, now Hollywood Records.
Charizma is a rock band formed in Oskarshamn, Sweden, where they are still based. Founded by the three brothers Bo, Jan and Göran Nikolausson, the band now also includes Johan Mauritzson and Thomas Karlsson.
Starting out as a hard rock trio, Charizma is now a radio-friendly rock band focusing on melodies and strong vocal elements.
The band is primarily known for its songs "Waiting (Here for you)" and "Run to God".
The band also performed in the pre-selections for Eurovision Song Contest in 2004 in Estonia (Eurolaul) and in 2007 in Poland (Piosenka dla Europy 2007).
Charizma has toured all over the world including USA, UK, Germany, Australia, Switzerland, Austria, Liechtenstein, Estonia, Poland, Sweden, Finland, Norway, Denmark, The Netherlands and Faroe Islands.
Let’s sing the touching "Wheels on the Bus" song in which a baby and his grandpa help their sick animal friends get to the doctor on time! Lyrics: The wheels on the bus go round and round, round and round, round and round. The wheels on the bus go round and round, All through the town. The cow on the bus says moo moo moo, Moo moo moo, moo moo moo. The cow on the bus says moo moo moo, All through the town. The sheep on the bus says baa baa baa, Baa baa baa, baa baa baa, The sheep on the bus says baa baa baa, All through the town. The pig on the bus go oink oink oink Oink oink oink, oink oink oink, The pig on the bus go oink oink oink, All through the town. The horse on the bus says neigh neigh neigh Neigh neigh neigh, neigh neigh neigh, The horse on the bus says neigh neigh neigh, All ...
Han Sooji: White Heize: Black Round and Round - Heize (ft. Han SooJi) Lyrics Tamtam Lyrics Color Coded Colour Coded
'헤이즈' [도깨비 OST Part.14] 드라마와 함께 음악으로도 감동을 이어가며 '신드롬'을 일으키고 있는 드라마 '도깨비' OST가 가수 '헤이즈'와 '한수지'의 콜라보레이션으로 대미를 장식한다. 도깨비의 마지막 OST인 '헤이즈'와 '한수지'가 참여한 "Round and round(라운드 앤 라운드)"가 공개됐다. 이 곡은 드라마의 오프닝 타이틀 음악 및 극 중 각종 주요 장면에 삽입되어 첫 회 방영 직후부터 음원 발매 문의가 폭주한 데 이어, 공유와 이동욱이 대파를 들고 모델처럼 걸어 화제를 모았던 '대파 런웨이 씬'에도 삽입되면서 시청자들은 물론 제작진들로부터도 완곡 발매 요청이 빗발쳐 정식 음원 발매로 이어지게 되었다. 이에 이번 음원은 드라마의 감동을 최대한 이어가기 위해 드라마에 삽입되었던 '한수지'가 부른 50초 가량의 원곡을 3분 30초 가량의 풀버전으로 편곡, 원곡의 감동에 보다 풍성함을 더하기 위해 '헤이즈'가 참여하여 두 사람의 콜라보레이션으로 곡을 완성시켰다. Available on iTunes, Apple Music : https://itun.es/kr/SQ0whb Listen on Spotify : http://spoti.fi/2wE7Zuw CJ E&M Music은 아시아 No.1 엔터테인먼트 기업인 CJ E&M의 음악사업 브랜드로 음원/음반의 투자/제작/유통부터 콘서트/페스티벌 개최까지 포함하고 있습니다. CJ E&M MUSIC과 함께 하는 K-POP 아티스트들의 신곡과 뮤직비디오, 미공개 독점 영상 등을 이곳 YOUTUBE 채널에서 가장 먼저 만나보세요. CJ E...
Bounce along in the bus all over town with this favorite nursery rhyme! https://www.youtube.com/c/Cocomelon?sub_confirmation=1 Lyrics: The wheels on the bus go round and round Round and round Round and round The wheels on the bus go round and round All through the town The doors on the bus go open and shut Open and shut Open and shut The doors on the bus go open and shut All through the town The wipers on the bus go swish, swish, swish Swish, swish, swish Swish, swish, swish The wipers on the bus go swish, swish, swish All through the town The signals on the bus go blink, blink, blink Blink, blink, blink Blink, blink, blink The signals on the bus go blink, blink, blink All through the town The horn on the bus goes beep, beep, beep Beep, beep, beep Beep, beep, beep The horn on the bu...
Goblin, Grim Reaper, Yoo Deok Hwa, Samshin. From their cool side ^^ Round and round~~
Get REVIVAL, out now: http://smarturl.it/sgrevival Get exclusive REVIVAL merchandise bundles: http://smarturl.it/sgrevivald2c Sign up for updates: https://www.selenagomez.com/mailing-list Facebook -- http://facebook.com/SelenaGomez Twitter -- http://twitter.com/SelenaGomez Instagram — http://instagram.com/SelenaGomez Official Site -- http://selenagomez.com
Musical Chairs Song can be played with many games. Musical Chairs Song | Game Development Goal To develop strategic thinking, listening to directions and social comfort. Before You Start Equipment Needed: 7 Chairs (one chair less than the number of players participating) and music Players are gathered in a circle around the chairs Set Up Arrange chairs in a circle with the seats facing outwards How to Play Play the music and have the players walk around the perimeter of the chair circle. When the music stops, everyone must immediately sit in a chair. The one person left standing it out. Remove another chair and continue until only one person is left. Lyrics: This is musical chairs Go around and when the music stops, sit down Round and round and round and round and round and round yo...
Hello my dear friend. If you love mommy Click on like button and Share this video and don't forget Subscribe!!! Thank you) #thewheelsonthebus #cocomelon #wheelsonthebus #nurseryrhymes #cocomelonwheelsonthebusseveralversions #CocomelonSoundVariations #cocomelonsoundeffect #cocomelonwheelsonthebussoundvariations #wheelsonthebuskidssongs #cocomelonwheelsonthebusseveralversions #wheelsonthebussoundeffects #wheelsonthebus #wheelsonthebussong #wheelsonthebusgoroundandround #cocomelonbus #cocomelonwheels wheels cocomelon, abckidtv, cocomelon wheels song, baby songs,best nursery rhymes, boss baby, children songs, cocomelon song, cocomelon dance,cocomelon dance party,cocomelon family,cocomelon friends,cocomelon preschool songs,cocomelon song,cocomelonwheelsonthebus,dance party,jj,jj cocomelon,ki...
Hi Kids! Watch this Nursery Rhymes Collection by Little Treehouse! We hope you enjoy watching this animation as much as we did making it for you! This kids songs collection is great for learning the alphabet, numbers, shapes, colors and lots more. Happy Learning! Click on the link below for Little Treehouse more nursery rhymes & baby songs - https://found.ee/LittleTreehouseGeneral * Download our iOS app for offline viewing: https://bit.ly/littletreehouse * Parents! Download our latest kids songs compilations here: https://wayokids.com/littletreehouse * Subscribe for free now to get notified about new videos - https://www.youtube.com/c/littletreebies?sub_confirmation=1 * If you enjoyed this collection, you may also like these compilations: - ABC Phonics Song: https://youtu.be/hDj-VM...
Let's see how this Teddy bear goes round and round the garden and finds your funny bone... tickle, tickle, tickle! Now again, Round and Round The Garden. Our YouTube Channels: English Channel: https://www.youtube.com/user/APPUSERIES Hindi Channel: https://www.youtube.com/user/APPUSERIESHINDI Kannada Channel: https://www.youtube.com/user/APPUSERIESKANNADA Tamil Channel: https://www.youtube.com/user/APPUSERIESTAMIL Telugu Channel: https://www.youtube.com/user/APPUSERIESTELUGU Gujarati Channel: https://www.youtube.com/user/APPUSERIESGUJARATI Marathi Channel: https://www.youtube.com/user/APPUSERIESMARATHI Sindhi Channel: https://www.youtube.com/user/APPUSERIESSINDHI Bengali Channel: https://www.youtube.com/user/APPUSERIESBENGALI Academy Channel: https://www.youtube.com/user/AppuSeriesAcademy ...
Round and Round may refer to:
[chorus:]
Round and round upside down
Livin my life underneath the ground (x 4)
I never had the skills that it took to sell weed
I was too generous too understanding to your needs
As far as school I lacked the motivation for the occupation preparation
Guess I'll never catch that bacon
I need to find a duty doin sales or some shit
'cause I was always good at talking people into dumb shit
Fuck it. Just program some drums
I'll be honest to myself and take the wealth if it comes
Run baby run baby run
Because this metro is destined for ruin
Let go of that echo baby what are you pursuing
Priorities are twisted head's not on straight
I think I'm gonna pop a bottle stop and take a long break
And find time to reflect
I need to take a second quit breakin my neck
Tryin to get this fat pay check
Because money is the root of all evil
Ay yo most people are evil so I'm on the roof shootin at bald eagles
Adrenaline, mescaline, ephedrine and apple sauce
Aint nowhere to hang a platinum record on these padded walls
Every man's a faggot and all women are sluts
So Immuh ho out my love for all of ya'll to shake your butts and
[chorus]
somewhat exotic how a lot of these cats went about it
and when they got crowded let the boundaries clouded
I doubted if they only knew how I was comin through
Probably be the oasis they was runnin to
Fashion the lifestyle around the bashings and lifestyles
of entities you don't know much less trust
Judgment judgmental the soldier with the common pencil
So say wussup when you see me on the bus man
Ay yo the worst is yet to come
In fact its on its way you better go and get you some
Before there aint no more today and hey
I'll be just fine tryin to bust rhymes
Got my eye on my son and my hand on my
Nine O'clock. The clock stops
For everybody that you know that got shot
And eight o'clock the seconds get hesitant
For every cat that went in an accident
And seven o'clock time stands still
For every man killed by the planet's build
Consumed by the elements: water, earth, wind, fire
when I die I wanna go like that
Fuck the devil's developments
[chorus]
run away, come away from the land of Sodom and Gomorra
run away, come away from the land of the sinking sands
(x 4)
[chorus]