- published: 12 Dec 2021
- views: 66309
'+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; })); }); -->
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.
Joe Louis Arena is a multi-purpose arena located in Detroit, Michigan. It is the home of the Detroit Red Wings of the National Hockey League. Completed in 1979 at a cost of $57 million, the venue is named after boxer and former heavyweight champion Joe Louis, who grew up in Detroit. Only one other NHL arena, Madison Square Garden, is without a corporate sponsorship name. The third oldest NHL venue after Madison Square Garden and Rexall Place, Joe Louis Arena is owned by the city of Detroit, and operated by Olympia Entertainment, a subsidiary of Ilitch Holdings. Joe Louis Arena replaced Detroit Olympia. It sits adjacent to Cobo Hall on the bank of the Detroit River and is accessible through its own station on the Detroit People Mover.
Joe Louis Arena replaced Detroit Olympia, where the Detroit Red Wings had played since 1927. The neighborhood around the Olympia gradually deteriorated, especially after the 1967 riots. After two murders took place near the Olympia, Red Wings owner Bruce Norris seriously considered moving to a proposed arena in suburban Pontiac. However, the city of Detroit countered with a proposal for a new riverfront arena at one-third of the rent Pontiac was offering. The package also gave the Red Wings operational control of both the arena, nearby Cobo Arena and nearby lots.
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...
Although construction began without a budget, architectural plans, or a tenant - Joe Louis Arena became the destination for hockey royalty and the home to champions. “The Joe” chronicles four decades of unforgettable moments in Red Wings history retold by the players, coaches, and managers that lived them. Dubbed the “Dead Wings” for their futility during the late 70s, the transition of ownership from the Norris family to the Ilitch family began a renaissance in the Motor City. Future captain Steve Yzerman arrived in 1983 and Detroit quickly established themselves as a perennial contender for the Stanley Cup. After disappointing playoff exits in the early 1990s, the Red Wings, led by future Hall of Famers Sergei Fedorov, Brendan Shanahan, and Nicklas Lidstrom, finally ended a 42-year cha...
Local 4 got a look inside Joe Louis Arena.
The Red Wings last game at the Joe ends with a 4-1 victory over the Devils.
RISE ABOVE MERCH HERE https://www.riseabove.shop Rise Above Instagram page! https://www.instagram.com/riseabove.clothing/ FOLLOW MY SOCIAL MEDIA facebook = https://www.facebook.com/exploringwithjosh Twitter = https://twitter.com/i_am_joshyo instagram = https://www.instagram.com/exploringwithjosh SUBSCRIBE TO MY 2nd CHANNEL FOR LIVE STREAMS AND GAMING https://www.youtube.com/c/justjoshingyou DONATIONS FOR TRAVELS/HOTELS/GAS/FOOD https://www.patreon.com/exploringwithjosh MUSIC USED HERE - YOUTUBERS DREAM!! https://goo.gl/Ev7obc FOR OTHER MUSIC I USED MUSICBED HERE : http://share.mscbd.fm/exploringwithjosh Business Inquiries [email protected] !!!! MY GEAR !!!! MY Camera ( a7s2 ) - http://amzn.to/2hPVRji MAIN Lens to vlog 16-34 f/4 with - ...
As WWE hosts the final event ever at the Joe Louis Arena, take a look back at The Joe's most legendary sports-entertainment moments. More ACTION on WWE NETWORK : http://wwenetwork.com Subscribe to WWE on YouTube: http://bit.ly/1i64OdT Must-See WWE videos on YouTube: https://goo.gl/QmhBof Visit WWE.com: http://goo.gl/akf0J4
As time runs out on the Joe, here's our tribute to the longtime home of the Red Wings and all the memories made there.
With only two games left before the Red Wings move to Little Caesar's Arena, Al Sobotka--a lifelong Detroiter and the man who knows The Joe better than anyone--shares his fondest memories of the games and the people who made this rink so important.
Mayor Mike Duggan said it’s a symbol of how far the city has come since its bankruptcy.
With only a few games left in the historic Joe Louis Arena, one fan made sure to get an octopus out on the ice.
Farewell to the Joe. Take a final look inside Joe Louis Arena, the home of The Detroit Red Wings since 1979. The historic arena is set to close its doors at the end of the season as the Red Wings move to Little Ceasars Arena next year.
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.
Yeh-yi-yeh-yo (Ooh...ooh...yeh)
Yeh-yi-yeh-yo (I-yeh-yi)
When you came and told me that you don't wanna stay
And you turned around and you just walked away
I never knew that the day would come
When you would take my heart and drop it on the ground
(Why you) Why you wanna break my heart
(Why you) Didn't tell me from the start
Why you wanna break my heart
And leave me on my own
(Why you) Why you wanna break my heart
(Why you) Didn't tell me from the start
God please help me find someone
Who sees me as I am
Yeh-yi-yeh-yo (I-yeh-yi)
Yeh-yi-yeh-yo (Oh...ooh...hey)
Maybe you might think that this was just circumstance
Here I am believing that it was romance
Why did you even do the things that you do
When in your heart you knew that I would die for you