'+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; })); }); -->

Corey Holcomb

Corey Holcomb (born June 23, 1968) is an American stand-up comedian and actor. Born and raised in Chicago, Illinois, Holcomb got his start in comedy with the help of another Chicago-area comedian, Godfrey.

Often billing himself as the "ghetto Dr. Phil", most of Holcomb's standup material revolves around relationships, particularly relationships gone wrong. In addition to touring the country, he has been a regular on the stand-up/improv-based television shows Comic View, Def Comedy Jam, Last Comic Standing, and Nick Cannon Presents Wild 'n Out. Early in his career, Holcomb appeared once on The Jerry Springer Show with fellow comedian DeRay Davis. He has appeared in three comedy specials of his own, Corey Holcomb: The Problem Is You, Comedy Central Presents: Corey Holcomb, and Corey Holcomb: Your Way Ain't Working. He also appeared on the 2010 edition of Shaquille O'Neal's All-Star Comedy Jam.

As an actor, Holcomb has appeared as guest star on several sitcoms such as Half & Half, Everybody Hates Chris, Tyler Perry's House of Payne and Black Jesus, as well as minor roles in films such as Like Mike and Dance Flick. Holcomb is a recurring voice actor for the Family Guy spin-off The Cleveland Show, for which he provides the voice of Robert Tubbs, Cleveland's rival and the ex-husband of his wife Donna. Holcomb was a regular personality on Jamie Foxx's satellite radio channel The Foxxhole from 2007 to 2011. He currently hosts his own internet show, The Corey Holcomb 5150 Show, which began on satellite on The Foxxhole but later moved to the Roscoe Media Center (RMC) website.

Podcasts:

  • The Corey Holcomb 5150 Show 5-11-2021

    Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz https://cash.app/$DarleneOGOrtiz DarleneOrtiz.com https://Cameo.com/DarleneOGOrtiz Ryan Davis https://instagram.com/ryandaviscomedy https://cash.app/$ComedianRyanDavis Marcus Smith https://instagram.com/YouKnowMaaacus https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Sh...

    published: 12 May 2021
  • The Corey Holcomb 5150 Show 5-4-2021

    Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz​ https://cash.app/$DarleneOGOrtiz​ DarleneOrtiz.com https://Cameo.com/DarleneOrtiz​ Marcus Smith https://instagram.com/YouKnowMaaacus​ https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Show Merch https://5150gear.bigcartel.com #CoreyHolcomb #5150Show #5150Nation

    published: 05 May 2021
  • ▶ Corey Holcomb All Star Comedy

    All Star Comedy

    published: 22 Jul 2018
  • The Corey Holcomb 5150 Show 4-27-2021

    Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz​ https://cash.app/$DarleneOGOrtiz​ DarleneOrtiz.com https://Cameo.com/DarleneOrtiz​ Marcus Smith https://instagram.com/YouKnowMaaacus​ https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Show Merch https://5150gear.bigcartel.com #CoreyHolcomb #5150Show #5150Nation

    published: 28 Apr 2021
  • The Corey Holcomb 5150 Show 5-4-2021

    Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz​ https://cash.app/$DarleneOGOrtiz​ DarleneOrtiz.com https://Cameo.com/DarleneOrtiz​ Marcus Smith https://instagram.com/YouKnowMaaacus​ https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 CashApp: $KoleAlyse IG: @koleskyy Snap Chat: @RealLadiLyke Twitter: @RealLadiLyke YouTube: Kole's Porch Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Officia...

    published: 05 May 2021
  • Corey Holcomb⎢I gotta do a current event joke... I guess!⎢Shaq's Five Minute Funnies⎢Comedy Shaq

    SUBSCRIBE▶︎http://bit.ly/SubscribeLOL and http://bit.ly/LOLStandUpYT FOLLOW THE FUNNY: Newsletter▶https://mailchi.mp/laughoutloud/stand-up Facebook▶ http://bit.ly/LOLNetwork-FB Twitter▶ http://bit.ly/LOLNetwork-TW Instagram▶ http://bit.ly/LOLNetwork-IG YouTube▶ http://bit.ly/LOLNetwork-YouTube Snapchat▶ LOLNetwork Official Website▶ http://www.laughoutloud.com Laugh Out Loud is a comedy brand and multi-platform network founded by the world’s top comedian Kevin Hart. Through his network, Hart delivers his vision for the future of comedy: social, mobile, multicultural and seriously funny. From stand-up legends to globally-recognized digital influencers, Hart and LOL curate comedy’s boldest voices to produce original scripted and unscripted series, stand-up specials, live broadcasts an...

    published: 25 Sep 2013
  • COREY HOLCOMB and ZO WILLIAMS almost fight - 5150 SHOW

    Corey Holcomb and Zo William almost get in a fight when argument starts about who's hypocritical. #5150 #coreyholcolm #zowilliams original video https://youtu.be/qu8-1fRMX7Q

    published: 13 Jan 2021
developed with YouTube
The Corey Holcomb 5150 Show 5-11-2021
1:41:34

The Corey Holcomb 5150 Show 5-11-2021

  • Order:
  • Duration: 1:41:34
  • Uploaded Date: 12 May 2021
  • views: 83152
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz https://cash.app/$DarleneOGOrtiz DarleneOrtiz.com https://Cameo.com/DarleneOGOrtiz Ryan Davis https://instagram.com/ryandaviscomedy https://cash.app/$ComedianRyanDavis Marcus Smith https://instagram.com/YouKnowMaaacus https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Show Merch https://5150gear.bigcartel.com #CoreyHolcomb #5150Show #5150Nation
https://wn.com/The_Corey_Holcomb_5150_Show_5_11_2021
The Corey Holcomb 5150 Show 5-4-2021
58:59

The Corey Holcomb 5150 Show 5-4-2021

  • Order:
  • Duration: 58:59
  • Uploaded Date: 05 May 2021
  • views: 82741
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz​ https://cash.app/$DarleneOGOrtiz​ DarleneOrtiz.com https://Cameo.com/DarleneOrtiz​ Marcus Smith https://instagram.com/YouKnowMaaacus​ https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Show Merch https://5150gear.bigcartel.com #CoreyHolcomb #5150Show #5150Nation
https://wn.com/The_Corey_Holcomb_5150_Show_5_4_2021
▶ Corey Holcomb   All Star Comedy
12:52

▶ Corey Holcomb All Star Comedy

  • Order:
  • Duration: 12:52
  • Uploaded Date: 22 Jul 2018
  • views: 817516
All Star Comedy
https://wn.com/▶_Corey_Holcomb_All_Star_Comedy
The Corey Holcomb 5150 Show 4-27-2021
1:34:38

The Corey Holcomb 5150 Show 4-27-2021

  • Order:
  • Duration: 1:34:38
  • Uploaded Date: 28 Apr 2021
  • views: 112580
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz​ https://cash.app/$DarleneOGOrtiz​ DarleneOrtiz.com https://Cameo.com/DarleneOrtiz​ Marcus Smith https://instagram.com/YouKnowMaaacus​ https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Show Merch https://5150gear.bigcartel.com #CoreyHolcomb #5150Show #5150Nation
https://wn.com/The_Corey_Holcomb_5150_Show_4_27_2021
The Corey Holcomb 5150 Show 5-4-2021
1:04:13

The Corey Holcomb 5150 Show 5-4-2021

  • Order:
  • Duration: 1:04:13
  • Uploaded Date: 05 May 2021
  • views: 58128
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz​ https://cash.app/$DarleneOGOrtiz​ DarleneOrtiz.com https://Cameo.com/DarleneOrtiz​ Marcus Smith https://instagram.com/YouKnowMaaacus​ https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 CashApp: $KoleAlyse IG: @koleskyy Snap Chat: @RealLadiLyke Twitter: @RealLadiLyke YouTube: Kole's Porch Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Show Merch https://5150gear.bigcartel.com #CoreyHolcomb #5150Show #5150Nation
https://wn.com/The_Corey_Holcomb_5150_Show_5_4_2021
Corey Holcomb⎢I gotta do a current event joke... I guess!⎢Shaq's Five Minute Funnies⎢Comedy Shaq
4:21

Corey Holcomb⎢I gotta do a current event joke... I guess!⎢Shaq's Five Minute Funnies⎢Comedy Shaq

  • Order:
  • Duration: 4:21
  • Uploaded Date: 25 Sep 2013
  • views: 2892861
SUBSCRIBE▶︎http://bit.ly/SubscribeLOL and http://bit.ly/LOLStandUpYT FOLLOW THE FUNNY: Newsletter▶https://mailchi.mp/laughoutloud/stand-up Facebook▶ http://bit.ly/LOLNetwork-FB Twitter▶ http://bit.ly/LOLNetwork-TW Instagram▶ http://bit.ly/LOLNetwork-IG YouTube▶ http://bit.ly/LOLNetwork-YouTube Snapchat▶ LOLNetwork Official Website▶ http://www.laughoutloud.com Laugh Out Loud is a comedy brand and multi-platform network founded by the world’s top comedian Kevin Hart. Through his network, Hart delivers his vision for the future of comedy: social, mobile, multicultural and seriously funny. From stand-up legends to globally-recognized digital influencers, Hart and LOL curate comedy’s boldest voices to produce original scripted and unscripted series, stand-up specials, live broadcasts and special events. Hart brings the groundbreaking social-first strategy that earned him 100 million+ followers to Laugh Out Loud, with one core mission: keep the world laughing. Dope Comedy. Delivered Daily. Always On. Always Loud. Directly from Kevin Hart and his hand-picked crew of comedic rockstars.
https://wn.com/Corey_Holcomb⎢I_Gotta_Do_A_Current_Event_Joke..._I_Guess_⎢Shaq's_Five_Minute_Funnies⎢Comedy_Shaq
COREY HOLCOMB and ZO WILLIAMS almost fight - 5150 SHOW
18:28

COREY HOLCOMB and ZO WILLIAMS almost fight - 5150 SHOW

  • Order:
  • Duration: 18:28
  • Uploaded Date: 13 Jan 2021
  • views: 892595
Corey Holcomb and Zo William almost get in a fight when argument starts about who's hypocritical. #5150 #coreyholcolm #zowilliams original video https://youtu.be/qu8-1fRMX7Q
https://wn.com/Corey_Holcomb_And_Zo_Williams_Almost_Fight_5150_Show
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

The Corey Holcomb 5150 Show 5-11-2021

Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "OG" Ortiz https://instagram.com/DarleneOG_Ortiz https://cash.app/$DarleneOGOrtiz DarleneOrtiz.com https://Cameo.com/DarleneOGOrtiz Ryan Davis https://instagram.com/ryandaviscomedy https://cash.app/$ComedianRyanDavis Marcus Smith https://instagram.com/YouKnowMaaacus https://cash.app/$Maaacus Precyse https://instagram.com/Precyse888 https://cash.app/$Precyse888 Unscene Abe https://instagram.com/abe.creator https://cash.app/$UnsceneBTS Website Services: https://Unscene.us Na'il Ali (Guitar/Tech Crew) https://instagram.com/therealnaheel https://cash.app/$NaheelAli https://5150Skin.com - GET YOUR ENTANGLEMENT KIT! Official 5150 Show Merch https://5150gear.bigcartel.com #CoreyHolcomb #5150Show #5150Nation
1:41:34
The Corey Holcomb 5150 Show 5-11-2021
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene "...
published: 12 May 2021
Play in Full Screen
58:59
The Corey Holcomb 5150 Show 5-4-2021
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene ...
published: 05 May 2021
Play in Full Screen
12:52
▶ Corey Holcomb All Star Comedy
All Star Comedy
published: 22 Jul 2018
Play in Full Screen
1:34:38
The Corey Holcomb 5150 Show 4-27-2021
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene ...
published: 28 Apr 2021
Play in Full Screen
1:04:13
The Corey Holcomb 5150 Show 5-4-2021
Host Corey Holcomb https://instagram.com/5150SHOW https://cash.app/$JokeBag Darlene ...
published: 05 May 2021
Play in Full Screen
4:21
Corey Holcomb⎢I gotta do a current event joke... I guess!⎢Shaq's Five Minute Funnies⎢Comedy Shaq
SUBSCRIBE▶︎http://bit.ly/SubscribeLOL and http://bit.ly/LOLStandUpYT FOLLOW THE FUNNY: N...
published: 25 Sep 2013
Play in Full Screen
18:28
COREY HOLCOMB and ZO WILLIAMS almost fight - 5150 SHOW
Corey Holcomb and Zo William almost get in a fight when argument starts about who's hypocr...
published: 13 Jan 2021
Play in Full Screen

Corey Holcomb

Corey Holcomb (born June 23, 1968) is an American stand-up comedian and actor. Born and raised in Chicago, Illinois, Holcomb got his start in comedy with the help of another Chicago-area comedian, Godfrey.

Often billing himself as the "ghetto Dr. Phil", most of Holcomb's standup material revolves around relationships, particularly relationships gone wrong. In addition to touring the country, he has been a regular on the stand-up/improv-based television shows Comic View, Def Comedy Jam, Last Comic Standing, and Nick Cannon Presents Wild 'n Out. Early in his career, Holcomb appeared once on The Jerry Springer Show with fellow comedian DeRay Davis. He has appeared in three comedy specials of his own, Corey Holcomb: The Problem Is You, Comedy Central Presents: Corey Holcomb, and Corey Holcomb: Your Way Ain't Working. He also appeared on the 2010 edition of Shaquille O'Neal's All-Star Comedy Jam.

As an actor, Holcomb has appeared as guest star on several sitcoms such as Half & Half, Everybody Hates Chris, Tyler Perry's House of Payne and Black Jesus, as well as minor roles in films such as Like Mike and Dance Flick. Holcomb is a recurring voice actor for the Family Guy spin-off The Cleveland Show, for which he provides the voice of Robert Tubbs, Cleveland's rival and the ex-husband of his wife Donna. Holcomb was a regular personality on Jamie Foxx's satellite radio channel The Foxxhole from 2007 to 2011. He currently hosts his own internet show, The Corey Holcomb 5150 Show, which began on satellite on The Foxxhole but later moved to the Roscoe Media Center (RMC) website.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: corey holcomb

Edit

A first look at Cincinnati's FULL 2025 concert (and comedy) calendar

Cincinnati.com 01 Jan 2025
Cincinnati's 2025 concert calendar is shaping up to be epic ... Jan. 2. Phil DeGreg Trio ... 2 ... Corey Hooker, MOTR Pub ... With Kountry Wayne, Karlous Miller, Lil Duval, Corey Holcomb, Mojo Bookzz, Tony Roberts ... Drew & Ellie Holcomb ... With Corey Kent and Kassi Ashton.
Edit

Beyonc� Brings ‘COWBOY CARTER’ To Netflix NFL Halftime Show With Blue Ivy And More

Vibe Magazine 26 Dec 2024
Beyonc� Brings ‘COWBOY CARTER’ To Netflix NFL Halftime Show With Blue Ivy And More Erica Mena Apologizes To Nicki Minaj For Past Remarks, Blames Safaree For Manipulation Corey Holcomb ...
Edit

Corey Holcomb Accused Of Punching Comedian Cristina Payne In Club Dispute

Vibe Magazine 23 Dec 2024
Comedian Corey Holcomb is facing assault accusations after an alleged altercation with fellow comedian Cristina Payne ... Holcomb reportedly fled the scene, and police were called shortly after ... Corey Holcomb cristina payne.
Edit

Erica Mena Apologizes To Nicki Minaj For Past Remarks, Blames Safaree For Manipulation

Vibe Magazine 23 Dec 2024
Mena revealed regret for believing Safaree's past negative remarks about his ex, Minaj ... Staff Writer, News ... Follow ... Corey Holcomb Accused Of Punching Comedian Cristina Payne In Club Dispute Swizz Beatz, Alicia Keys, Mashonda Celebrate 18 Y.O ... ....
Edit

All the acts scheduled to perform on dirt, ice and stage at Gainbridge Fieldhouse this winter

IndyStar 10 Dec 2024
Kelly Wilkinson, Indianapolis Star ... 1 p.m. Jan. 18. Get tickets ... Jan ... 2 ... Indianapolis native and comedian Mike Epps hosts the tour, which includes Kountry Wayne, Karlous Miller, Lil Duval, Corey Holcomb, Mojo Bookzz, Haha Davis, Bubba Dub and Tony Roberts.
Edit

Corey Holcomb Defends Women in Poverty Dating Preference After Controversy

TMZ 26 Nov 2024
Corey Holcomb is standing by his comment that he ...
Edit

How Did Jasmin Brown React to Cam Newton’s Infidelity Confession?

Coming Soon 04 Nov 2024
He openly stated, “As long as I’ve been with Jas, Jas has not been the only person I’ve had sex with.” Newton shared this revelation while speaking with comedian Corey Holcomb, explaining that he ...
Edit

Jasmin Brown Stands By Cam Newton Amid Infidelity Admission

Vibe Magazine 04 Nov 2024
The mother of his youngest child knows exactly what she signed up for. By Mya Abraham Plus Icon Mya Abraham. R&B Reporter. Plus Icon myabriabe. Follow ... Newton made the confession on his Funky Friday podcast while chatting with comedian Corey Holcomb.
Edit

Mike Epps comedy tour returns to Gainbridge, tickets on sale

Indianapolis Recorder 29 Oct 2024
Presented by BMN Entertainment, “We Them OnesComedy Tour features Kountry Wayne, Karlous Miller, Lil Duval, Corey Holcomb, Mojo Bookzz, Haha Davis, Bubba Dub, Tony Roberts and more. The show is scheduled for Feb ... .
Edit

BMN Entertainment's Legendary 'We Them Ones' Comedy Tour Returns

ACCESSWIRE 29 Oct 2024
The last WTO tour sold out , reaching over half-a-million comedy lovers nationwide ... Performers include Kountry Wayne, Karlous Miller, Lil Duval, Corey Holcomb, Mojo Bookzz, Haha Davis, Bubba Dub, Tony Roberts, and other special surprises ... ....
Edit

'We Them Ones' comedy tour, with Indy's Mike Epps, returns to Gainbridge Fieldhouse Feb. 2

IndyStar 28 Oct 2024
Indianapolis Mike Epps finishes year strong ... Robert Scheer, Indianapolis Star ... 2. Performers will include Kountry Wayne, Karlous Miller, Lil Duval, Corey Holcomb, Mojo Bookzz, Haha Davis, Bubba Dub and Tony Roberts ... How to get tickets ... 1 at 10 a.m.
Edit

KING BAU RADIO | SATURDAY NIGHT LIVE | COREY HOLCOMB ON CAM NEWTON'S PODCAST WATCH ...

Rumble 20 Oct 2024
Go to the source via the article link to view the video or click the video icon ....
Edit

Corey Holcomb says NOTHING IS OFF LIMITS! Diddy, Trump, Kamala, Dr.Bryant, Hypocrisy & Religion

Bitchute 19 Oct 2024
Go to the source via the article link to view the video or lcik the video icon ....

Most Viewed

×