- published: 30 Mar 2023
- views: 628615
'+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; })); }); -->
Robert John "Bob" Odenkirk (born October 22, 1962) is an American actor, comedian, writer, director and producer, best known for his role as shady lawyer Saul Goodman (James Morgan McGill) on the AMC crime drama series Breaking Bad and its spin-off series Better Call Saul, which focuses on Goodman. Together with fellow comedian and writer David Cross, Odenkirk co-created and co-starred in the HBO sketch comedy series Mr. Show with Bob and David.
From the late 1980s to 1990s, Odenkirk worked as a writer for television shows Saturday Night Live, Late Night with Conan O'Brien, Get a Life, The Ben Stiller Show and The Dennis Miller Show. In the mid-1990s, he and David Cross created the Emmy-nominated sketch comedy program Mr. Show with Bob and David, which ran for four seasons, ultimately becoming a cult success., and was revived in 2015 under a new name, W/ Bob & David. In the early 2000s, Odenkirk discovered the comedy duo Tim & Eric and produced their television series Tom Goes to the Mayor and Tim and Eric Awesome Show, Great Job! He directed three films, Melvin Goes to Dinner (2003), Let's Go to Prison (2006) and The Brothers Solomon (2007).
Christopher Crosby "Chris" Farley (February 15, 1964 – December 18, 1997) was an American comedian and actor. Farley was known for his loud, energetic comedic style, and was a member of Chicago's Second City Theatre and cast member of the NBC sketch comedy show Saturday Night Live between 1990 and 1995. Farley and Chris Rock were introduced as two of the show's new cast members in early 1990. In late 1997, Farley died as a result of a drug overdose at the age of 33.
Farley was born on February 15, 1964 in Madison, Wisconsin. His father, Thomas John "Tom" Farley, Sr. (1936–1999), owned an oil company, and his mother was Mary Anne (née Crosby), a housewife. He had four siblings: Tom Jr., Kevin, John, and Barbara. His cousin, Jim, is the CEO and Chairman at Ford Motor Company Europe. Farley's family is traditionally Roman Catholic and of Irish descent, and Farley attended numerous Catholic schools in his hometown, including Edgewood High School of the Sacred Heart. According to Joel Murray, a fellow Second City cast member, Farley would "always make it to Mass." Many of his summers were spent as a camper and counselor at Red Arrow Camp, near Minocqua, Wisconsin.
Lucky Hank star Bob Odenkirk takes the WIRED Autocomplete Interview and answers the internet's most searched questions about himself. Is Bob Odenkirk actually a lawyer? How did Bob and David Cross meet? How did Bob get cast in Breaking Bad? Did he write for Saturday Night Live? When did he start acting? Bob answers all these questions and much more! Lucky Hank airs weekly on AMC+ (and runs through May 7th) Director: Justin Wolfson Director of Photography: Rahil Ashruff Editor: Richard Trammell Celebrity Talent: Bob Odenkirk Line Producer: Joseph Buscemi Associate Producer: Brandon White Production Manager: Eric Martinez Production Coordinator: Fernando Davila Talent Booker: Mica Medoff Camera Operator: Cloud Corredor Audio: Lily Van Leewun Production Assistant: C...
Bob Odenkirk is an actor and writer whose resume includes everything from the pioneering sketch comedy series Mr. Show, to Breaking Bad and an acclaimed performance as Jimmy McGill in Better Call Saul. You can also catch him starring in his latest project, Lucky Hank, a new comedy-drama TV series on AMC. But how is he with spicy food? Find out as Odenkirk takes on the wings of death and discusses his Chicago roots, Saturday Night Live memories, and the art of comedy. BUY HOT ONES HOT SAUCE NOW: https://fwfea.st/hotsauces TRY THE HOT ONES BONELESS CHICKEN BITE CHALLENGE: https://fwfea.st/chickenbites BUY HOT ONES TRUTH OR DAB: THE GAME: http://truthordabgame.com SHOP HOT ONES MERCH: https://bit.ly/2AIS271 SIGN UP FOR THE HOT ONES MONTHLY HOT SAUCE SUBSCRIPTION: https://bit.ly/2veY50P...
Bob Odenkirk talks about spending 13 years playing Saul Goodman when he was originally only booked for three or four episodes, surviving a heart attack on the Better Call Saul set and his show Lucky Hank. The Tonight Show Starring Jimmy Fallon. Stream now on Peacock: https://bit.ly/3gZJaNy Subscribe NOW to The Tonight Show Starring Jimmy Fallon: https://pck.tv/3d7lcDy Watch The Tonight Show Starring Jimmy Fallon Weeknights 11:35/10:35c Get more The Tonight Show Starring Jimmy Fallon: https://www.nbc.com/the-tonight-show JIMMY FALLON ON SOCIAL Follow Jimmy: http://Twitter.com/JimmyFallon Like Jimmy: https://Facebook.com/JimmyFallon Follow Jimmy: https://www.instagram.com/jimmyfallon/ THE TONIGHT SHOW ON SOCIAL Follow The Tonight Show: http://Twitter.com/FallonTonight Like The Ton...
'Late Show: The Movie' might be Bob Odenkirk's Colbert-iest performance yet. Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Follow "The Late Show" on Instagram HERE: http://bit.ly/29wfREj Follow "The Late Show" on Tumblr HERE: http://bit.ly/29DVvtR Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. Get the CBS app for iPhone & iPad! Click HERE: http://bit.ly/12rLxge Get new epis...
Bob and Rhea talk about the finale of “Better Call Saul,” the train scene from the penultimate episode, Rhea’s two Emmy nominations, and working with Carol Burnett. SUBSCRIBE to get the latest #Kimmel: http://bit.ly/JKLSubscribe Watch Mean Tweets: http://bit.ly/KimmelMT10 Connect with Jimmy Kimmel Live Online: Visit the Jimmy Kimmel Live WEBSITE: http://bit.ly/JKLWebsite Like Jimmy Kimmel on FACEBOOK: http://bit.ly/KimmelFB Like Jimmy Kimmel Live on FACEBOOK: http://bit.ly/JKLFacebook Follow @JimmyKimmel on TWITTER: http://bit.ly/KimmelTW Follow Jimmy Kimmel Live on TWITTER: http://bit.ly/JKLTwitter Follow Jimmy Kimmel Live on INSTAGRAM: http://bit.ly/JKLInstagram About Jimmy Kimmel Live: Jimmy Kimmel serves as host and executive producer of Emmy®-nominated “Jimmy Kimmel Live!,” ABC’...
Bob Odenkirk breaks down his most iconic characters, including his roles in 'Breaking Bad,' 'Better Call Saul,' 'Mr. Show with Bob and David,' 'Nobody,' 'Curb Your Enthusiasm,' 'The Larry Sanders Show,' 'Nebraska' and 'Seinfeld.' NOBODY is in theaters only March 26, 2021 - https://www.nobody.movie Still haven’t subscribed to GQ on YouTube? ►► http://bit.ly/2iij5wt Subscribe to GQ magazine and get rare swag: https://bit.ly/2xNBH3i ABOUT GQ For more than 50 years, GQ has been the premier men’s magazine, providing definitive coverage of style, culture, politics and more. In that tradition, GQ’s video channel covers every part of a man’s life, from entertainment and sports to fashion and grooming advice. So join celebrities from 2 Chainz, Stephen Curry and Channing Tatum to Amy S...
Bob Odenkirk and Rhea Seehorn take turns reading, confirming and denying 'Better Call Saul' fan theories from Reddit. Spoilers might or might not be ahead. The final episodes of Better Call Saul air Mondays at 9 pm ET/PT on AMC and AMC+, with the series finale on August 15, 2022. Director: Jackie Phillips Director of Photography: Matt Krueger Editor: Jordan Calig Celebrity Talent Bob Odenkirk and Rhea Seehorn Producer Funmi Sunmonu Line Producer: Jen Santos Associate Producer: Omar Elgohary Production Manager: Andressa Pelachi and Peter Brunette Production Coordinator: Carolina Wachockier Talent Booker: Meredith Judkins Camera Operator: Lucas Vilicich Audio: Kari Barber Production Assistant: Ariel Labasan Groomer: Sonia Lee Hair & Make-Up: Matthew Collins and Jamie ...
Bob talks about getting a star on the Hollywood Walk of Fame, Bryan Cranston and Aaron Paul appearing in the final season of “Better Call Saul,” living co-stars with Bryan Cranston, Ray Seehorn and Patrick Fabian during “Breaking Bad,” rescuing dogs while on set, having a heart attack halfway through shooting a scene, the outpouring of love from all his fans, his new book “Comedy Comedy Comedy Drama,” and he shares the footage from a training video he shot for Old Country Buffet. SUBSCRIBE to get the latest #Kimmel: http://bit.ly/JKLSubscribe Watch Mean Tweets: http://bit.ly/KimmelMT10 Connect with Jimmy Kimmel Live Online: Visit the Jimmy Kimmel Live WEBSITE: http://bit.ly/JKLWebsite Like Jimmy Kimmel on FACEBOOK: http://bit.ly/KimmelFB Like Jimmy Kimmel Live on FACEBOOK: http://bit.l...
(Original airdate: 12/10/03) Bob Odenkirk's previous appearance got him banned from the show for a couple of years. Plus, Bob shows a clip from the Frank International Film Festival. Watch more classic clips @ https://conanclassic.com.
Lucky Hank, starring Bob Odenkirk, premieres March 19. From the executive producers of Breaking Bad and Better Call Saul, Bob Odenkirk is Lucky Hank. An English department chairman at an underfunded college, Professor Hank Devereaux toes the line between midlife crisis and full-blown meltdown, navigating the offbeat chaos in his personal and professional life – oddly proving tantrums get better with age. #LuckyHank #AMCPlus #BobOdenkirk » Subscribe for More: https://bit.ly/3tz1yp9 AMC ON SOCIAL: Facebook : https://www.facebook.com/amc Twitter : http://twitter.com/AMC_TV Instagram: https://www.instagram.com/amc_tv/ AMC+ ON SOCIAL Facebook : https://www.facebook.com/TheGoodStuff... Twitter :https://twitter.com/amcplus Instagram: https://www.instagram.com/amcplus/ Tik Tok: http...
After their cleaning lady finds pot in the house, parents (Phil Hartman, Julia Sweeney) hire motivational speaker Matt Foley (Chris Farley) to talk to their teens (David Spade, Christina Applegate) about drugs and their future. Aired 05/08/93 #SNL Subscribe to SNL: https://goo.gl/tUsXwM Get more SNL: http://www.nbc.com/saturday-night-live Full Episodes: http://www.nbc.com/saturday-night-liv... Like SNL: https://www.facebook.com/snl Follow SNL: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Instagram: http://instagram.com/nbcsnl SNL Pinterest: http://www.pinterest.com/nbcsnl/
The Sandman remembers his dear friend, comedian Chris Farley. Watch Adam Sandler: 100% Fresh only on Netflix: https://www.netflix.com/title/80224536 SUBSCRIBE: https://bit.ly/2Kncxw6 About Netflix Is A Joke: The official hub of Netflix stand-up, comedy series, films, and all things funny — curated by the world’s most advanced algorithm and a depressed, yet lovable, cartoon horse. Their unlikely friendship is our story… About Netflix: Netflix is the world's leading internet entertainment service with over 148 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watchin...
Subscribe to SaturdayNightLive: http://j.mp/1bjU39d Game Shows: http://j.mp/1dHcX7K SEASON 20: http://j.mp/1bEe6ik American tourist + Japanese game show = big trouble in little Tokyo. Aired 12/10/94 Subscribe to SNL: https://goo.gl/tUsXwM Get more SNL: http://www.nbc.com/saturday-night-live Full Episodes: http://www.nbc.com/saturday-night-liv... Like SNL: https://www.facebook.com/snl Follow SNL: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Instagram: http://instagram.com/nbcsnl SNL Pinterest: http://www.pinterest.com/nbcsnl/
Top 10 Funniest Chris Farley Moments Subscribe http://goo.gl/Q2kKrD Chris Farley was a comedic genius who could make anything funny. He is missed in the comedy world, but his most hilarious moments and performances will live on. WatchMojo picks the ten funniest moments from Chris Farley's short career. List Entries and Rank: #10. The Bat “Black Sheep” #9. Lunchlady Land “Saturday Night Live” #8. The Bus Driver “Billy Madison” #7. Schmitt’s Gay “Saturday Night Live” #6. Bennett Brauer “Saturday Night Live” #5. Colombian Decaffeinated Coffee Crystals “Saturday Night Live” #4. Japanese Game Show “Saturday Night Live” #3. ?
A TV host (Tom Schiller) shows one customer's (Chris Farley) reaction when he finds out he's drinking instant coffee on a hidden camera commercial. [Season 17, 1991] #SNL Subscribe to SNL: https://goo.gl/tUsXwM Stream Current Full Episodes: http://www.nbc.com/saturday-night-live Watch Past SNL Seasons: Google Play - http://bit.ly/SNLGooglePlay iTunes - http://bit.ly/SNLiTunes Follow SNL Social - SNL Instagram: http://instagram.com/nbcsnl SNL Facebook: https://www.facebook.com/snl SNL Twitter: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Pinterest: http://www.pinterest.com/nbcsnl/
Now in prison, Matt Foley (Chris Farley) joins Deshawn Powers (Martin Lawrence) to scare kids straight with their tales of prison life, the market for bitches and how a cell and a toilet can't compare to a van down by the river. [Season 19, 1994] #SNL Subscribe to SNL: https://goo.gl/tUsXwM Get more SNL: http://www.nbc.com/saturday-night-live Full Episodes: http://www.nbc.com/saturday-night-liv... Like SNL: https://www.facebook.com/snl Follow SNL: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Instagram: http://instagram.com/nbcsnl SNL Pinterest: http://www.pinterest.com/nbcsnl/
Adam Sandler sings a tribute to his friend and Saturday Night Live alum Chris Farley. #SNL #AdamSandler #ShawnMendes #SNL44 Subscribe to SNL: https://goo.gl/tUsXwM Stream Current Full Episodes: http://www.nbc.com/saturday-night-live Watch Past SNL Seasons: Google Play - http://bit.ly/SNLGooglePlay iTunes - http://bit.ly/SNLiTunes Follow SNL Social - SNL Instagram: http://instagram.com/nbcsnl SNL Facebook: https://www.facebook.com/snl SNL Twitter: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Pinterest: http://www.pinterest.com/nbcsnl/
Bob Odenkirk remembers the last interaction he ever had with Chris Farley and explains why he doesn’t like the famous “Chippendales” sketch. SUBSCRIBE for more videos: http://bit.ly/2qswmZU Want to know what's going on with Howard Stern in the future? Follow us on Twitter: http://bit.ly/1RzxGPD On Facebook: http://on.fb.me/1JELtz3 On Instagram: https://goo.gl/VsWTND For more great content from the Howard Stern Show visit our official website: http://www.HowardStern.com Hear more Howard Stern by signing up for a free SiriusXM trial: https://goo.gl/uNL0Du #HowardStern #SternShow
Subscribe to SaturdayNightLive: http://j.mp/1bjU39d SEASON 19: http://j.mp/15pNorP Sports: http://j.mp/19uJPxC Kelsey Grammer attends the opening game at Yankee Stadium with Rudy Giuliani and his son, Andrew, who keeps getting nailed with stray balls. Aired 04/09/94 Subscribe to SNL: https://goo.gl/tUsXwM Get more SNL: http://www.nbc.com/saturday-night-live Full Episodes: http://www.nbc.com/saturday-night-liv... Like SNL: https://www.facebook.com/snl Follow SNL: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Instagram: http://instagram.com/nbcsnl SNL Pinterest: http://www.pinterest.com/nbcsnl/
Robert John "Bob" Odenkirk (born October 22, 1962) is an American actor, comedian, writer, director and producer, best known for his role as shady lawyer Saul Goodman (James Morgan McGill) on the AMC crime drama series Breaking Bad and its spin-off series Better Call Saul, which focuses on Goodman. Together with fellow comedian and writer David Cross, Odenkirk co-created and co-starred in the HBO sketch comedy series Mr. Show with Bob and David.
From the late 1980s to 1990s, Odenkirk worked as a writer for television shows Saturday Night Live, Late Night with Conan O'Brien, Get a Life, The Ben Stiller Show and The Dennis Miller Show. In the mid-1990s, he and David Cross created the Emmy-nominated sketch comedy program Mr. Show with Bob and David, which ran for four seasons, ultimately becoming a cult success., and was revived in 2015 under a new name, W/ Bob & David. In the early 2000s, Odenkirk discovered the comedy duo Tim & Eric and produced their television series Tom Goes to the Mayor and Tim and Eric Awesome Show, Great Job! He directed three films, Melvin Goes to Dinner (2003), Let's Go to Prison (2006) and The Brothers Solomon (2007).
[Chorus:]
I wanna party like Bon Scott on Charlie, Bob Marley non-stop
Chris Farley pissed, party on like the bombs dropped
So if you're "just too fucking blind" you know what's what
You're feeling like "blaaagh"
I wanna party like Bon Scott on Charlie, Bob Marley non-stop
Chris Farley pissed, party on like the bombs dropped
So if you're "drunk on Friday night" you know what's what
You're feeling like "bluuugh" you know what's what
[Presure; ]
I wanna go out like Biggie and 'Pac
No gunfire, I'm talking rum and dry, hit me with shots
Tequila and scotch, I'll wind up on the idiot box
Six o'clock with a grand tucked into my socks
My obituary notice will say that most of my days
Were spent inside a bottle and a toast will be raised
Until conspiracy theories say they know I'm okay
I'll drop seven more albums by my ghost from the grave
[Suffa:]
I wanna die in Memphis like Elvis
Senseless on the toilet pissing on my own pelvis
Helpless, choking on vodka and shellfish
Get found by my girl like "God, you're so selfish"
Well-wishers at my wake saying he'll be well missed
But wait till they're well pissed, they'll wish me to hell with
Everybody that I wanted to party with anyway
Don't care if it's a hundred and ninety degrees centigrade
[Chorus]
[Pressure:]
Like Jim Morrison, I wanna party till my heart stop
Tripping in a bath with a stripper and a glass of
Liquor in my grasp, man I figure that my last of
Days should be crazed, I'm a live it till I'm passed on
If any grief is shed, leave it said
I would remind 'em just how far the dream has led
So when it's time for me, be finally relieved I'm dead
I want to exit how I entered, between some legs
[Suffa (Pressure):]
I wanna bender like Hendrix, you blend six liquors with ten drinks
(Ten-four buddy) Well it's like ten-six
(Yo, when it's) Ten sixteen in the morning
My girl will send sixteen messages to me warning
We'll be exes if I don't exit, so exit
The next shit's getting called a sexist at breakfast
So let's get our phones and all set 'em to flight mode
And let the horns fly through the hook and take us right home
[Chorus]
[Suffa:]
Tell me how does it feel...
To be on your own...
On a bender like a Rolling Stone?