- published: 07 Oct 2009
- views: 66048896
'+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; })); }); -->
Christine Flores (born September 26, 1981), better known as Christina Milian (/mɪliˈɑːn/), is an American singer, songwriter and actress. At the age of 19, Milian signed a contract with Def Jam. In 2001, Milian released her self-titled debut album, which featured the singles "AM to PM" and "When You Look at Me"; "AM to PM" charted within the Top 40 of the U.S. Billboard Hot 100 and both peaked in the top three on the UK Singles Chart. In 2004, Milian released her second studio album It's About Time, which provided her first major U.S. hit, "Dip It Low", which reached number five on the U.S. Billboard chart. "Whatever U Want" was released as the album's second single. Both singles charted within the Top 10 of the UK chart.
In 2006, Milian released her third studio album So Amazin'. The album produced one single, "Say I", which peaked in the Top 30 of the US Billboard chart. A month after the release of So Amazin', Milian's representative confirmed that she had left Island Records due to creative differences. Milian signed with Interscope Records in 2009. A single, ballad "Us Against the World", was released in October 2008. In 2012, Milian signed to Young Money Entertainment, which will release her fourth studio album.
Christina Milian is the self-titled debut studio album by American singer Christina Milian released by Def Soul on October 9, 2001. Its release was postponed because of the September 11 attacks, which occurred just two weeks before its release date. Her label opted to release it later that year in Europe, but due to changing music trends, Milian decided not to release the album domestically.
Milian made her first professional musical appearance on Ja Rule's single "Between Me and You", which led to a record deal with Def Soul and The Inc. Records in 2000. Milian traveled to Sweden where she collaborated with several producers, most notably Bloodshy & Avant, who helmed five tracks. Milian co-wrote eleven of the twelve songs on the album, taking inspiration from personal experiences. The album's musical style is mostly dance and R&B, and critics noted similarities to her contemporaries Britney Spears and Christina Aguilera. Milian was displeased by Def Soul's portrayal of her image, which she felt was constantly changing and confusing the audience.
Joe Budden (born August 31, 1980) is an American rapper from Jersey City, New Jersey, who, in addition to being a solo artist, is a member of the American hip hop supergroup Slaughterhouse, alongside fellow rappers Royce da 5'9", Joell Ortiz, and Crooked I.
His most commercially successful single is the 2003 hit song "Pump It Up", from his self-titled album, which contains production from Just Blaze. He was formerly signed to major record label Def Jam, but left for personal reasons and for them pushing back his album releases. After his splitting from Def Jam, he began recording and releasing mixtapes and albums on independent labels. He released No Love Lost (2013). His follow-up album "Some Love Lost" was released November 4, 2014. Most recently, he released "All Love Lost" on October 16, 2015. Budden also co-stars on the VH1 reality show Love & Hip Hop.
Budden was born in Harlem, New York. but was raised in Jersey City, New Jersey. Uninterested in school, he began abusing drugs. After an emotional confrontation with his mother, Budden willingly went into rehab on July 3, 1997. Budden began freestyling, first at his high school with acquaintances against whom he claims that he always won battles. He eventually made appearances on several New York mixtapes with the likes of DJ Clue, DJ Kayslay, and Cutmaster C.
Joe Budden is the eponymous debut studio album by American hip hop recording artist Joe Budden, released on June 10, 2003 under Def Jam Recordings. The album's production was handled primarily by Whiteboyz Noize (Dub B and Elementary), along with Just Blaze and Lofey. The album features guest appearances from Lil' Mo, Busta Rhymes and 112. Upon the album's release, it was met with favorable reviews from music critics. The album debuted at number 8 on the US Billboard 200, selling around 97,000 units in its first week, which was less than expected, although, the album went on to sell 420,000+ copies. The album entered number 55 on the UK Albums Chart.
The album's release was supported by two singles – the Just Blaze-produced club anthems "Pump It Up" and "Fire (Yes Yes Y'all)" featuring Busta Rhymes, and two promotional singles – "Focus" and "Drop Drop". Its hit single "Pump It Up" was featured in 2 Fast 2 Furious, You Got Served and Madden NFL 2004, and reached #38 in the United States and #13 in the United Kingdom. "Focus" was featured in Def Jam Vendetta. The album's second single, "Fire", was released in 2003 and was featured in the movie Mean Girls. "Walk With Me" was featured as the ending song for Def Jam: Fight for NY. Budden was a playable character in both games.
REMASTERED IN HD! Music video by Christina Milian performing Dip It Low. (C) 2003 The Island Def Jam Music Group #ChristinaMilian #DipItLow #Remastered
REMASTERED IN HD! Official Music Video for When You Look At Me performed by Christina Milian Follow Christina Milian Instagram: https://www.instagram.com/christinamilian Twitter: https://twitter.com/christinamilian Facebook: https://www.facebook.com/christinamilian (C) 2001 The Island Def Jam Music Group #ChristinaMilian #WhenYouLookAtMe #Remastered
Music video by Christina Milian performing Say I. (C) 2006 The Island Def Jam Music Group
Christina Milian - Us Against The World Produced by : Maddscientist Director : Ray Kay Album : Dream In Color 2009 Official video. If you love it, please vote 4 Christina Milian ! : http://www.bet.com/OnTV/BETShows/106andpark/106_Vote_Poll.htm Christina @ MySpace : http://myspace.com/christinamilian 1st French fansite : http://lovemilian.free.fr
Music video by Christina Milian performing Whatever U Want. (C) 2004 The Island Def Jam Music Group
From Christina Milian’s new EP, ‘4U,' available now on iTunes: http://smarturl.it/christina_4u, Google Play: http://smarturl.it/christina_gp + Amazon: http://smarturl.it/christina_amz. Follow Christina: Website: http://www.christinamilian.com/ Facebook: http://facebook.com/christinamilian Twitter: http://twitter.com/christinamilian Instagram: http://instagram.com/christinamilian #ChristinaMilian #LikeMe #Vevo
her first video i think^=] cool dance moves
From Christina Milian’s new EP, ‘4U,' available now on: iTunes: http://smarturl.it/christina_4u, Google Play: http://smarturl.it/christina_gp + Amazon: http://smarturl.it/christina_amz. Follow Christina: Website: http://www.christinamilian.com/ Facebook: http://facebook.com/christinamilian Twitter: http://twitter.com/christinamilian Instagram: http://instagram.com/christinamilian
From Christina Milian’s new EP, ‘4U,' available Dec. 4! Buy it now on: iTunes: http://smarturl.it/christina_4u Google Play: http://smarturl.it/christina_gp Amazon: http://smarturl.it/christina_amz. Follow Christina for more info: Website: http://www.christinamilian.com/ Facebook: http://facebook.com/christinamilian Twitter: http://twitter.com/christinamilian Instagram: http://instagram.com/christinamilian http://vevo.ly/JfwYWV
Become a Patron! - http://bit.ly/JBNPatreon Ye (Kanye West) and Drake came together for a one-night-only concert and performed hits from their respective catalogs (13:05), leading Joe and the crew to react. The collective also discusses the surrounding topics such as Larry Hoover's involvement (28:20), Kanye pleading to Kim Kardashian (36:26), and the overall outcome of the concert. Next, Travis Scott breaks his silence in a recent interview with Charlamagne Tha God (41:21), new music from Rick Ross, Tory Lanez, Russ, and others (56:30). And lastly, Joe addresses Jussie Smollet's case, LAPD warning tourists to stay away from Los Angeles (1:41:52), and MORE! Subscribe on YouTube - http://bit.ly/BuddenYTSub Watch more exclusive series and footage from the Joe Budden Network: The Joe Budd...
Become a Patron! - http://bit.ly/JBNPatreon In this episode, the gang starts off talking about cryptocurrency and the importance of investments, which turned into a reflection on how the black and poor community teaches (or doesn’t teach) their kids about how vital investments are. The subject of family relationships and investments moved into a conversation about the dangers of family members feeling entitled to other family member’s time, and how that affects people. They emphasize the importance of being one’s own person, ending the talk on training oneself to not always pick up the phone. They then went into a discussion about the deceptions or surprises that they felt about adulthood. Speaking about what they were never told would happen, things they were told to do or not do that ...
Become a Patron! - http://bit.ly/JBNPatreon On an episode with much to discuss, Joe begins by giving an updated review on Kevin Hart's limited series "True Story" (19:30). He observes the parallel experiences of Kevin Harts's actual life and his characters and explains why he was fascinated by the series (**SPOILER ALERTS THROUGHOUT THIS SEGMENT**). Next, the guys discuss Drake withdrawing his Grammy nomination (33:04), Joe pleads for the residence of Los Angeles and Atlanta to heighten their home security (42:02), Joe reacts to 'Million Dollars Worth of Game' (50:45), an update on Jussie Smollet's case (1:26:49). Lastly, the guys cover Pete Davidson and Machine Gun Kelly's bromance (1:52:05), 50 Cent and French Montana squash their beef (2:02:52), and MORE! Subscribe on YouTube - http:/...
FOLLOW MY PATREON FOR EARLY ACCESS TO VIDEOS AND EXCLUSIVE VIDEOS: https://www.patreon.com/chigssmooth JOIN MY DISCORD AND LETS CHAT: https://discord.gg/8VHzsgv5wX FOR PROMOTIONS, EMAIL ME: [email protected] SUBSCRIBE TO MY CHANNEL (Feel free to donate to my cashapp $chigs908 if you enjoy my content. I appreciate ya'll)
Become a Patron! - http://bit.ly/JBNPatreon The crew kicks things off by announcing Savon's departure from the pod (2:29). The Verzuz-cast returns after an explosive performance between two legendary rap groups, Three 6 Mafia and Bone Thugs-N-Harmony (6:31). Joe and the guys also discuss Swizz Beats airs out his grievances with artists at Verzuz (29:27), new music from SZA (53:41), and a lyric breakdown of Rick Ross's new song (57:02). Lastly, the crew denounces Hulu's decision to air a distasteful Astroworld documentary (1:23:14) and MORE! Subscribe on YouTube - http://bit.ly/BuddenYTSub Watch more exclusive series and footage from the Joe Budden Network: The Joe Budden Podcast - http://bit.ly/BuddenPodcast Pull Up - http://bit.ly/JoeBuddenPullUp See, The Thing Is - http://bit.ly/STTIY...
REMASTERED IN HD! Official Music Video for Pump It Up performed by Joe Budden. Follow Joe Budden: Website: https://www.joebudden.com Facebook: https://www.facebook.com/officialjoebudden Instagram: https://www.instagram.com/joebudden Twitter: https://twitter.com/joebudden #JoeBudden #PumpItUp #Remastered
Become a Patron! - http://bit.ly/JBNPatreon After a brief Thanksgiving break, Joe and the guys return to share how the holidays affect them (18:35). The crew also highlights the excellence of fashion designer, Virgil Abloh who transitioned after a quiet battle with cancer (23:57). Next, Joe challenges male R&B artists to push the envelope after an underwhelming year compared to their female counterparts (52:38), and Joe runs into Cardi B and Offset (1:03:20). Finally, the collective explains why Lil Baby and Saweetie's dating rumors could cause harm beyond gossip (1:15:11); Joe isn't a fan of Lil Rel (1:46:23) or Will Smith's latest movie (2:19:16), and MORE! Subscribe on YouTube - http://bit.ly/BuddenYTSub Watch more exclusive series and footage from the Joe Budden Network: The Joe Bud...
Become a Patron! - http://bit.ly/JBNPatreon Music Award season is approaching in this episode, and the Grammy's announced its nominees this past week (22:58). First, Joe and the guys predict who will win Rap Album of the Year (30:46) and shows his appreciation for SZA, H.E.R., and Summer Walker. They also speculate on Summer's new relationship (53:47). Next, Joe explains why Kim Kardashian and Pete Davidson's dating rumors are ridiculous (1:13:19), Adele gets Spotify to remove the shuffle feature (1:37:25), and season 4 of Ozark is announced (1:56:03). The crew then attempts to list ten current NFL Quarterbacks who play at a higher level than Buffalo Bill's QB, Josh Allen (2:09:06), and MORE! Subscribe on YouTube - http://bit.ly/BuddenYTSub Watch more exclusive series and footage from t...
Become a Patron! - http://bit.ly/JBNPatreon Unlike previous Verzuz recaps, Joe shared his desire to not criticize but appreciate two of Hip Hop's greatest legends (Big Daddy Kane and KRS-One) as they performed their timeless catalogue of hits (15:31). Joe explained the nostalgia he endured while viewing the Verzuz and emphasized how pivotal both emcee's are to the evolution of Hip Hop (29:50). The crew then discuss the viral clip of a young man who attempted to steal another mans car at a gas station which lead to a discussion regarding this current generation not fearing consequences (57:02). Howard University students protest due to alleged poor living conditions (1:37:21), the crew remembers Colin Powell (1:57:18), an update on the Ben Simmons saga (1:58:55) and MORE! Subscribe on Yo...
Christine Flores (born September 26, 1981), better known as Christina Milian (/mɪliˈɑːn/), is an American singer, songwriter and actress. At the age of 19, Milian signed a contract with Def Jam. In 2001, Milian released her self-titled debut album, which featured the singles "AM to PM" and "When You Look at Me"; "AM to PM" charted within the Top 40 of the U.S. Billboard Hot 100 and both peaked in the top three on the UK Singles Chart. In 2004, Milian released her second studio album It's About Time, which provided her first major U.S. hit, "Dip It Low", which reached number five on the U.S. Billboard chart. "Whatever U Want" was released as the album's second single. Both singles charted within the Top 10 of the UK chart.
In 2006, Milian released her third studio album So Amazin'. The album produced one single, "Say I", which peaked in the Top 30 of the US Billboard chart. A month after the release of So Amazin', Milian's representative confirmed that she had left Island Records due to creative differences. Milian signed with Interscope Records in 2009. A single, ballad "Us Against the World", was released in October 2008. In 2012, Milian signed to Young Money Entertainment, which will release her fourth studio album.
[Intro: Joe Budden]
Whoo! (Uhh, welcome) Ohhh!
I'd like to welcome e'rybody, welcome e'rybody (yo y-yo yo yo)
To the muh'fuckin Padded Room (yo, y-yo, yo)
[Joe Budden]
How many niggaz fell victim to the streets
Rest in peace young nigga, it's a heaven for a G
I'd be a liar if I told you that I never thought of death
My nigga, we the last ones left (l-look) l-look (l-look)
I said - how many niggaz fell victim to the streets
Rest in peace young nigga, it's a heaven for
I'd be a liar if I told you that I never thought of death (l-look look)
My nigga, we the last ones left; but life goes on
And I ain't gon' stop 'til a nigga see blood on the wall!
L-look, look, look, look
Maybe it started with the rims on the whip
Uh, I lost the Hummer, push the Benz through the strip
But I'll swim with the fish before I lend niggaz shit
Cause personally, they ain't worth the phlegm that I spit
That's why, sometimes I think the end's comin quick
My old ass father shot twins out his dick
So, if they so happen to come out without a older brother
Won't be alone cause comin up at least they'll have each other
At least they'll one another cause life's a muh'fucker
But while I'm here my only job is not to see 'em suffer
Through dope boys, shootouts, stick-ups and undercovers
The world is full of suckers but don't worry, I'm your buffer
Buffer, like I shoulda been for BJ
Well he never listened to nothin we say
(It was) half past 12, midnight on a weekday
Not even 20 hours past his release date, we stay
This nigga hit him up four times, one kick the heart
And that kicked my heart
Call his pops, niggaz pick the phone up
So he can come find his son lyin in his own (blood) blood
On the block that we ran through
House we grew up in, corner we would post on
Shot dead in front of niggaz we would be with
But how the fuck nobody see shit? (nigga)
It's on there to be a brother to his brother lucky
Cause in the belly of the beast I know this shit get ugly
Get on my knees and have a convo with the Lord above me
Maybe sometimes I hear him wrong, I think he sayin "Fuck me"
Only he could judge me, care less what they thinkin of me
Cause honestly I'd be aight if no one ever love me (love me)
I write "I only fear Joe" in blood
Smeared slow on my brain by my earlobe (earlobe)
And I ain't gon' stop 'til a nigga see blood on the wall!
Y-yo, yo, yo
All I tried do is raise the bar
See my, weeks is scabbed up, days are scarred
Still I love to see a muh'fucker hate from far
More they talk 'bout me the more I pray for y'all
I mean, I don't get how Prodigy gon' acknowledge me
When the nigga 'bout as big as an apostrophe (ohh!)
For him to possibly think that he is hot as me
is far from a prophecy, it's more like a mockery
Used to be hip-hop to me, 'fore you bombarded me
with everything ass like side of me has gotta be drugs
Four-fifths and snubs, what's that about?
Nigga you can't lift the guns that you rappin 'bout
But real talk, I can't front on your old shit
Now you just old as shit! Not old and sick
'Stead of holdin my dick, here's a better way (dawg)
Never mind me, worry about your Medicaid
... Shit's so unfair
Nigga beats carried your ass most of your career
Wanna blog, here's a reason - I FUCKS "Murda Music"
Anybody ever dissed this nigga is still breathin
Jay-Z, Saigon, Nas already peeled him
2Pac, he ain't alive but you ain't kill him
50 signs the bum only cause where he was from
Put his stamp on a nigga and still nobody feels him
Not a murderer, a gangsta, robber
Washed up 90's nigga, now a gangsta blogger
Me that, underground flow strike like the pound blow
Your sound's old, not even worth a download
I would have niggaz hunt you like a hound's nose
Problem is you pussy, the whole town knows
So why let the body count grow
for some fiend-out nigga now starrin in a clown show (clown show)
And I ain't gon' stop 'til a nigga see blood on the wall!