- published: 02 Feb 2017
- views: 83867509
'+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; })); }); -->
John Kenneth Dust (born John Kenneth Dunkin: November 30, 1972), better known by the stage name Pigeon John, is an American rapper based in Los Angeles, California. He is a former member of L.A. Symphony.
Pigeon John claims that his stage name was provided by Jesus who was driving around Inglewood: "He hopped out and handed me a dead pigeon. He whispered, 'Please have a good time, you're really bumming me out.' I watched him sink back into the cushioned seats and drive, quickly away. And that's when it happened, the pigeon started shaking violently and became awake, picked up and flew away. I don't think I had a choice... it was 'pigeon' or die." He later explained that he was discussing his need for a stage name with a friend when the friend suggested "Chicken John", taken from the character Chicken George in Roots. The friend's mother then interjected that John didn't look like a chicken, claiming that he looked like a pigeon and should therefore be called "Pigeon John".
A class reunion is a meeting of former classmates, typically organized at or near their former school by one or a group of the class members on or around an anniversary of their graduation, e.g. 5 years later. Former teachers may be invited as well. They reminisce about their school days and bring each other up to date on what has happened since they went their separate ways.
Some class reunions also include a reunion class gift to the institution.
In film and literature, especially comedy, crime novels, thrillers, and psychological suspense novels, class reunions have been a frequent device used to show the eruption of emotions such as shame, hatred, and guilt within individual characters who, suddenly faced again with their own youth, become aware that they have been unable to cope with their past. In many cases, those who used to be bullied, humiliated, or in some other way mistreated by their teachers or classmates believe that now their chance has come to take revenge on their former torturers. Participants often nostalgically reminisce about their old school days or fondly remember their school pranks. Alumni are quite often concerned about how their lives have turned out when compared with the lives of their former classmates, and will sometimes feel pressured enough to go to great lengths to concoct stories about their fruitful careers, personal accomplishments, and relationships with others.
High School Reunion may refer to:
High School Reunion is a reality television series chronicling real-life high school reunions.
The program originally aired on The WB for two seasons between 2003 and 2005, and featured reunions of classes after ten years.
A new version of the series began airing on TV Land on March 5, 2008, focusing on the 20-year reunion of the 1987 graduating class of J.J. Pearce High School in Richardson, Texas. Filmed in Maui, the series featured documentary-style interviews with the classmates, who are assigned "labels" to describe their high school roles.
The series returned to TV Land in February 2009 with members of the Class of 1988 of Chandler High School in Chandler, Arizona reuniting and the promise that one of them would reveal a major secret. Once again class members had labels such as "The Class Clown", "The Cowboy", etc.
The series returned with its third season premiering on January 13, 2010. It follows the members of the Class of 1989 of Chaparral High School in Las Vegas, Nevada.
WATCH MORE ▶ https://youtube.com/playlist?list=PLmjMRs-v1tgTWmpYuBPugvLqBXVz5H-vP SUBSCRIBE HERE ▶ http://youtube.com/channel/UCi9cDo6239RAzPpBZO9y5SA?sub_confirmation=1 THANKS FOR WATCHING! :) LIKE & SUBSCRIBE FOR MORE VIDEOS! ----------------------------------------------------------- FIND ME ON: Instagram | http://instagram.com/lelepons Twitter | http://twitter.com/lelepons Facebook | http://facebook.com/lele TikTok | https://tiktok.com/@lelepons Text Me | https://my.community.com/lelepons #Lele #LelePons
Lizzie Borden High's class of '72 are going through the motions at their tenth-year reunion, until deranged alum Walter Baylor, driven insane by a sadistic senior-year prank, escapes from the mental institution and crashes the party. When guests start getting bumped off, the other alumni, including snooty yacht salesman Bob Spinnaker, class tease Bunny Packard, and class zero Gary Nash, spring into action to uncover the culprit. Chuck Berry makes an onstage appearance.
Class Reunion party is supposed to be fun, but organizing it can turn to be a stressful and challenging process, especially when you just don't know where to start. Sound familiar? http://www.PartyPOP.com is here to help you! With our massive database of tips, themes, and other Class Reunion Party planning ideas, everybody can plan a Class Reunion party of a lifetime. After all it is a very "special event". For more Class Reunion party and other party resources, visit http://www.partypop.com/dir.htm/Reunion http://www.partypop.com/dir.htm/Reunion/Reunion-Planners http://www.partypop.com/dir.htm/Reunion/Reunion-Invitations http://www.partypop.com/dir.htm/Reunion/Catering-Food http://www.partypop.com/dir.htm/Reunion/Reunion-Locations http://www.partypop.com/dir.htm/Reunion/Music ht...
Hey guys, Here is a quick clip that you won't see in my special, it's only on my DVD "I'm Not Fat...I'm Fluffy and here on Youtube! :) Hope you enjoy it! Check out my official youtube channel http://youtube.com/fluffyguy or check out other clips from my previous special "Hot & Fluffy"..... "Drinking & Driving" http://www.youtube.com/watch?v=j6--kTcODn8 "Chocolate Cake Made Me Late" http://www.youtube.com/watch?v=j-ruZ7zad8g "Drive Thru Voice" http://www.youtube.com/watch?v=JOQJiZ_g3Ho "Crocodile Hunter" http://www.youtube.com/watch?v=c2owUI45FL0 "Making Cops Laugh" http://www.youtube.com/watch?v=a77Dw3tNv8o "New Car/ Volkswagen Beetle" http://www.youtube.com/watch?v=hPqcTFm2ID8
Provided to YouTube by BNA Records Label Class Reunion (That Used To Be Us) · Lonestar Let's Be Us Again ℗ 2004 BMG Music Released on: 2004-05-13 Producer: Dann Huff Composer, Lyricist: Richie McDonald Composer, Lyricist: Frank Myers Composer, Lyricist: Don Pfrimmer Background Vocal: Dean Sams Background Vocal: Russell Terrell Auto-generated by YouTube.
planning: 01:07 organizing committee 2:15 money matters 4:35 Social media 9:11 Email 15:00 more email stuff 19:39 suggestions for reunion program/contents 20:00
After an epic summer at Camp Shallow Lake, the Wildcats return to East High where they prepare a stage production of “High School Musical 3: Senior Year.” But plans are disrupted when Principal Gutierrez announces that Disney has decided to make the long-awaited “High School Musical 4: The Reunion” movie on location at their beloved high school. Corbin Bleu, Monique Coleman, Lucas Grabeel, Bart Johnson, Alyson Reed and Kaycee Stroh will play themselves, resurrecting their “High School Musical” roles as “Chad Danforth,” “Taylor McKessie,” “Ryan Evans,” “Coach Jack Bolton,” “Ms. Darbus” and “Martha Cox,” respectively, and the Wildcats will play featured extras in the movie. High School Musical: The Musical: The Series The Final Season is now streaming only on Disney+. Soundtrack available ...
Happy Saturday Everybody!!!
WATCH MORE ▶ https://youtube.com/playlist?list=PLmjMRs-v1tgTWmpYuBPugvLqBXVz5H-vP SUBSCRIBE HERE ▶ http://youtube.com/channel/UCi9cDo6239RAzPpBZO9y5SA?sub_confirmation=1 THANKS FOR WATCHING! :) LIKE & SUBSCRIBE FOR MORE VIDEOS! ----------------------------------------------------------- FIND ME ON: Instagram | http://instagram.com/lelepons Twitter | http://twitter.com/lelepons Facebook | http://facebook.com/lele TikTok | https://tiktok.com/@lelepons Text Me | https://my.community.com/lelepons #Lele #LelePons
SAINt JHN - "High School Reunion" (Official Audio) ✝️Exclusive album merch at http://SAINtJHN.com ✝️ Tour tickets available at http://SAINtJHN.com ✝️ http://ChristianSexClub.com Subscribe to my channel: https://www.youtube.com/channel/UCxmkHW42679-8rLTAsRyIgA?sub_confirmation=1 Stream 'Ghetto Lenny's Love Songs' here: https://SaintJhn.lnk.to/GhettoLennysLoveSongs Click here to watch the Borders ft. Lenny Kravitz Music Video ▶ https://www.youtube.com/watch?v=FPHpS34xNf0 Follow SAINt JHN: https://www.instagram.com/SAINtJHN https://twitter.com/SAINtJHN https://soundcloud.com/SAINtJHN https://www.facebook.com/SAINtJHN #SAINtJHN #HighSchoolReunion #HipHop
HS Reunion, Prom ft @LILUZIVERT Listen to While the World was Burning: https://saintjhn.lnk.to/Whiletheworldwasburning + SUBSCRIBE HERE ▶ https://www.youtube.com/channel/UCxmkHW42679-8rLTAsRyIgA?sub_confirmation=1 WATCH TRAP MUSIC VIDEO ▶ https://youtu.be/Mf6oZPPYIXI WATCH ROSES MUSIC VIDEO ▶ https://youtu.be/XHA-QM-q-3E WATCH BORDERS MUSIC VIDEO ▶ https://youtu.be/FPHpS34xNf0 WATCH LUST MUSIC VIDEO ▶ https://youtu.be/N8Ykxh9n5Hg WATCH 3 BELOW MUSIC VIDEO ▶ https://youtu.be/R5GNIZP0ceE WATCH 1999 MUSIC VIDEO ▶ https://youtu.be/ubWN0peTgHI WATCH BEEN THRU THIS BEFORE MUSIC VIDEO ▶ https://youtu.be/9A6QrnFpFjI WATCH WEDDING DAY ONE TAKE ▶ https://youtu.be/bu7E2Y_GfVM WATCH 5 THOUSAND SINGLES ONE TAKE ▶ https://youtu.be/2N7YPXr326w WATCH WHO DO YOU BLAME ONE TAKE ▶ https://youtu.be/Nq...
Provided to YouTube by Universal Music Group High School Reunion (From "High School Musical: The Musical: The Series (The Final Season)") · Cast of High School Musical: The Musical: The Series · Disney High School Reunion ℗ 2023 Walt Disney Records Released on: 2023-07-25 Producer, Studio Personnel, Mixer: Mitch Allan Producer: Chantry Johnson Studio Personnel, Mastering Engineer: Al Isler Studio Personnel, Mastering Engineer: Daniel Rowland Studio Personnel, Mastering Engineer: LANDR Composer Lyricist: Mitch Allan Composer Lyricist: Chantry Johnson Composer Lyricist: Michelle Zarlenga Auto-generated by YouTube.
Like many of us, Stephen didn’t have a good time at high school. He played saxophone in the band, got bullied and struggled a little. Having graduated ten years ago, he hasn’t seen any of his former classmates since. Now his high school reunion is coming up and he wants to settle some scores. So he enlisted the help of VICE's Oobah Butler via his app, Oobah. In the wake of sending doubles of himself to collect awards and be interviewed by media outlets around the world, Oobah auditioned lookalikes and sent a hotter, more successful but fake version of Stephen to attend his high school reunion to reinvent his image in front of his old classmates. But can he get away with it? 00:00 Intro 01:31 Step 1: Meet Stephen 04:08 Step 2: Visit High School 05:17 Step 3: Top Lookalike Attributes 05:...
Hey guys, Here is a quick clip that you won't see in my special, it's only on my DVD "I'm Not Fat...I'm Fluffy and here on Youtube! :) Hope you enjoy it! Check out my official youtube channel http://youtube.com/fluffyguy or check out other clips from my previous special "Hot & Fluffy"..... "Drinking & Driving" http://www.youtube.com/watch?v=j6--kTcODn8 "Chocolate Cake Made Me Late" http://www.youtube.com/watch?v=j-ruZ7zad8g "Drive Thru Voice" http://www.youtube.com/watch?v=JOQJiZ_g3Ho "Crocodile Hunter" http://www.youtube.com/watch?v=c2owUI45FL0 "Making Cops Laugh" http://www.youtube.com/watch?v=a77Dw3tNv8o "New Car/ Volkswagen Beetle" http://www.youtube.com/watch?v=hPqcTFm2ID8
Follow me on IG @DomoG_ Email - [email protected] Want me to react your music or a favorite song of yours hit me on Fiverr - https://www.fiverr.com/s/7dkrk1 Check Out My Main Channel - https://www.youtube.com/channel/UCc2JpeOHaJH5RrFOhAUD5Ng/featured Check out my music channel - https://www.youtube.com/channel/UCwQMeWzUPHalybvi_1wGJFA LOCK IN WITH ME ON TWITCH - https://www.twitch.tv/domog9719 Follow me on IG @DomoG_
Take it back to the place where you know it all began...WHAT TEAM?! SUBSCRIBE: https://smo.sh/Sub2Smosh WEAR OUR JOKES: https://smosh.com WHO YOU SEE Courtney Miller // https://www.instagram.com/co_mill/ Shayne Topp // https://www.instagram.com/shaynetopp/ Olivia Sui // https://www.instagram.com/oliviasui/ Jacklyn Uweh // https://www.instagram.com/jacklyn_uweh/ Chanse McCrary // https://www.instagram.com/phatchanse/ Angela Giarratana // https://www.instagram.com/giovanagiarratana/ Arasha Lalani // https://www.instagram.com/arashalalani_/ WHO YOU DON’T SEE (usually) Director: Janie Stolar Editor: Blake Jarvis Writers: Janie Stolar, Chanse McCrary, Shayne Topp, Angela Giarratana, Jackie Uweh, Courtney Miller, Arasha Lalani, Olivia Sui EVP of Programming: Joel Rubin AD: Jacqi Jones Art Di...
John Kenneth Dust (born John Kenneth Dunkin: November 30, 1972), better known by the stage name Pigeon John, is an American rapper based in Los Angeles, California. He is a former member of L.A. Symphony.
Pigeon John claims that his stage name was provided by Jesus who was driving around Inglewood: "He hopped out and handed me a dead pigeon. He whispered, 'Please have a good time, you're really bumming me out.' I watched him sink back into the cushioned seats and drive, quickly away. And that's when it happened, the pigeon started shaking violently and became awake, picked up and flew away. I don't think I had a choice... it was 'pigeon' or die." He later explained that he was discussing his need for a stage name with a friend when the friend suggested "Chicken John", taken from the character Chicken George in Roots. The friend's mother then interjected that John didn't look like a chicken, claiming that he looked like a pigeon and should therefore be called "Pigeon John".
[Chorus:]
"Sometimes I feel the weight of the world
And its so heavy and its bringing me down"
[Verse 1:]
Wake up to another day
Gotta get to work gotta get the big pay
I got car notes and rent and the other nonsense
That's slowly turning me into a slave
But its ok because I look good
I got the best clothes and the best neighborhood
And that's what it's about the American dream
In a rat race but the rats want cream
In an obscene amount more than I can count
So I won't recognize that I'm drowning deep
In the oceans of life my breathe full of strife
And my head aches the stress just pounding me down
Hear comes the tears of a clown
The hottest name in the whole town this time
But the frown that's inside is hidden by my pride
Cause everything I want is mine
[Chorus:]
"But sometimes I feel the weight of the world
And its so heavy and its bringing me down" [x2]
[Verse 2:]
Wake up to another day
Gotta peek out just make sure it safe
Cause these times are changing and reshaping
Into something I cant face and it feels strange
We got religious people judging the whole world
We got pimps and hoes once boys and girls
We got the media telling us whose to blame
But whose the media who's really running the game
Gotta get up gotta shake it off
Cause life is long as an unsung song in the dark
I'm getting confused I'm getting upset
Things don't work out I'm hunting a check
Regret is creeping up my window
My life is reachin a crescendo
I gotta numb it with drank and endo
Not chasing a dream I'm wasting time
Cause everything I want is mine
[Chorus:]
"But sometimes I feel the weight of the world
And its so heavy and its bringing me down" [x2]
[Bridge:]
I'm having a great day everythings ok
I'm doing fine just don't look in my eyes [x2]
I gotta get up I gotta get up [x4]
[Chorus:]
"But sometimes I feel the weight of the world