- published: 16 Jun 2011
- views: 28655140
'+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; })); }); -->
James Eugene "Jim" Carrey (/ˈkæri/; born January 17, 1962) is a Canadian American actor, comedian, impressionist, screenwriter, and film producer. He is known for his highly energetic slapstick performances.
Carrey first gained recognition in 1990 after landing a recurring role in the sketch comedy In Living Color. His first leading roles in major productions came with Ace Ventura: Pet Detective (1994), Dumb and Dumber (1994), The Mask (1994), and Ace Ventura: When Nature Calls (1995), as well as a supporting role in Batman Forever (1995) and a lead role in Liar Liar (1997). He then starred in The Truman Show (1998) and Man on the Moon (1999), with each garnering him a Golden Globe Award for Best Actor.
In the 2000s, he gained further recognition for his portrayal of the Grinch in How the Grinch Stole Christmas (2000), as well as Bruce Almighty (2003), Eternal Sunshine of the Spotless Mind (2004), Lemony Snicket's A Series of Unfortunate Events (2004), Fun with Dick and Jane (2005), Yes Man (2008), Horton Hears a Who! (2008) and A Christmas Carol (2009).
"Turn! Turn! Turn! (To Everything There Is a Season)" — often abbreviated to "Turn! Turn! Turn!" — is a song written by Pete Seeger in the late 1950s. The lyrics, except for the title which is repeated throughout the song, and the final verse of the song, are adapted word-for-word from Chapter 3 of the Book of Ecclesiastes, set to music and recorded in 1962. The song was originally released as "To Everything There Is a Season" on The Limeliters' album Folk Matinee and then some months later on Seeger's own The Bitter and the Sweet.
The song became an international hit in late 1965 when it was covered by the American folk rock band The Byrds, bowing at #80 on October 23, 1965, before reaching #1 on the Billboard Hot 100 chart on December 4, 1965, #3 in Canada (Nov. 29, 1965), and also peaking at #26 on the UK Singles Chart. In the U.S., the song holds distinction as the #1 hit with the oldest lyrics (Book of Ecclesiastes), theoretically authored by King Solomon.
"Turn, Turn, Turn" is the seventeenth episode of the first season of the American television series Agents of S.H.I.E.L.D., based on the Marvel Comics organization S.H.I.E.L.D. (Strategic Homeland Intervention, Enforcement and Logistics Division), revolving around the character of Phil Coulson and his team of S.H.I.E.L.D. agents as they discover the infiltration of their organization by Hydra. It is set in the Marvel Cinematic Universe (MCU), sharing continuity with the films of the franchise. The episode was written by Jed Whedon and Maurissa Tancharoen, and directed by Vincent Misiano.
Clark Gregg reprises his role as Coulson from the film series, and is joined by series regulars Ming-Na Wen, Brett Dalton, Chloe Bennet, Iain De Caestecker, and Elizabeth Henstridge. The episode ties-into the film Captain America: The Winter Soldier, taking place concurrently with it and being affected by its events, including the revelation that main character Grant Ward (Dalton) is a member of Hydra alongside recurring character John Garrett (Bill Paxton).
The ninth season of CSI: Crime Scene Investigation premiered on CBS on October 9, 2008 and ended May 14, 2009. The series stars William Petersen, Marg Helgenberger and Laurence Fishburne.
As the team grieve for their fallen colleague ("For Warrick"), Grissom makes a life changing decision ("One to Go"), during the ninth season of CSI. Also this season, Sara investigates the death of a woman attacked nine years ago ("The Happy Place"), new CSI Riley Adams joins the team ("Art Imitates Life"), and she and Nick witness a store robbery on Halloween ("Let it Bleed"), Grissom attends the trial of the Miniature Killer ("Woulda, Shoulda, Coulda"), and an infamous serial murderer brings Dr. Raymond Langston face-to-face with the CSI team ("19 Down"). As Catherine adjusts to life as the team's leader, she investigates the bizarre, the brutal, and the unlikely, including an S&M related murder ("Leave out all the Rest"), an arson-homicide ("The Grave Shift"), the murder of an FBI agent ("Disarmed and Dangerous"), death-by-toothpaste ("Deep Fried and Minty Fresh"), and a Mexican wrestling related death ("Mascara"). Nick, meanwhile, investigates the happenings of a seedy motel over the course of a year ("Turn, Turn, Turn"), and Hodges and Wendy attend a sci-fi convention ("A Space Oddity").
How the Grinch Stole Christmas movie clips: http://j.mp/15w4dTs BUY THE MOVIE: http://amzn.to/sLaPxT Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr Watch more Family and Animation videos to get all the best content that's fun for all ages: Best Animated Movie Clips http://bit.ly/2a9DaSm Best Family Movie Clips http://bit.ly/2a18bZK CLIP DESCRIPTION: Cindy Lou Who (Taylor Momsen) interviews the two women that raised The Grinch, and learns all about how special he was from the very beginning. FILM DESCRIPTION: He's mean, he's green, and he's doesn't like the Yuletide season one bit -- Jim Carrey stars in this live-action adaptation of the classic children's story by Dr. Seuss (aka Theodore Geisel). High atop Mt. Crumpet, the Grinch (Carrey) observes the residents of Whoville jo...
Jim Carrey has hosted SNL multiple times, but what many don’t know is that he also auditioned for the show. Carrey’s most famously failed SNL audition took place in the early 80s, and was preceded by an ominous event. Carrey told the Vulture that someone was about to jump from atop the NBC building upon his arrival. I got out of the car in the parking lot, and there was a person trying to work up the guts to commit suicide on the building on NBC in Burbank, and I walked into the building not knowing whether he did it. All the new crews were gathering around the building. I went, ‘That’s not probably a good sign. Carrey to Vulture According to Uproxx, Carrey apparently feels he wasn’t meant to fare well in the audition. Carrey went on to do ‘In Living Color,’ which pushed him to breakout st...
1994 was truly the year of Jim Carrey. That year brought the Canadian comedian and actor to us in Ace Ventura: Pet Detective, The Mask, and Dumb and Dumber. Carrey continued bringing his unique style of comedy and acting throughout the '90s and the 2000s. At one point, he even became the highest-paid actor in Hollywood. He is a master of physical and improvised comedy and has brought countless laughs to moviegoers. But if you think his best work is on the big screen, think again. Here are Jim Carrey bloopers that make us love him even more. #Bloopers #Movies #Actor Almighty then! | 0:00 Poppin' with the penguins | 1:03 Water in the court | 1:40 Something About Mary Christmas | 2:17 Hello, Clarice | 2:51 Fun with Jim and props | 3:27 A series of fortunate riffs | 4:02 What's my name agai...
Disney's latest live action film stars Dwayne Johnson as Bambi, Vin Diesel (Taran Killam) as Thumper, Tyrese Gibson (Jay Pharoah) as Flower and Michelle Rodriguez (Cecily Strong) as Faline. Directed by Matt & Oz. #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/
How the Grinch Stole Christmas movie clips: http://j.mp/15w4dTs BUY THE MOVIE: http://amzn.to/sLaPxT Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: The Grinch (Jim Carrey) finds the strength to save the presents from falling down the mountain once he sees that Cindy Lou (Taylor Momsen) is on top. FILM DESCRIPTION: He's mean, he's green, and he's doesn't like the Yuletide season one bit -- Jim Carrey stars in this live-action adaptation of the classic children's story by Dr. Seuss (aka Theodore Geisel). High atop Mt. Crumpet, the Grinch (Carrey) observes the residents of Whoville joyously preparing to celebrate Christmas. The Grinch was born in Whoville years ago, but was shunned due to his scary appearance, and his unrequited love for Martha May Whovier has ...
Official music video remastered in HD for 'Jumper' by Third Eye Blind from their 1997 self-titled album 'Third Eye Blind' Celebrate 25 years of Third Eye Blind's debut album and preorder the 2LP here: https://Rhino.lnk.to/ThirdEyeBlind 🔔 Subscribe to Third Eye Blind channel and ring the bell to turn on notifications https://rhino.lnk.to/ThirdEyeBlindSubscribe 🔊 Listen to Third Eye Blind https://rhino.lnk.to/ThirdEyeBlindListen Stay in touch with Third Eye Blind... 🌐 Website https://www.thirdeyeblind.com/ 📣 https://www.facebook.com/ThirdEyeBlind/ 📸 https://www.instagram.com/thirdeyeblind/ ⌨ https://twitter.com/thirdeyeblind ******************* With hits like “Semi-Charmed Life”, “Jumper”, “How’s It Going To Be” and more, Third Eye Blind’s fresh take on alternative rock has delight...
Millie Bobby Brown, Finn Wolfhard, Gaten Matarazzo, Caleb McLaughlin, Noah Schnapp and Sadie Sink dish on bonding over disobedience while filming Stranger Things, and they summarize Season 3 in one word. Subscribe NOW to The Tonight Show Starring Jimmy Fallon: http://bit.ly/1nwT1aN Watch The Tonight Show Starring Jimmy Fallon Weeknights 11:35/10:35c Get more Jimmy Fallon: Follow Jimmy: http://Twitter.com/JimmyFallon Like Jimmy: https://Facebook.com/JimmyFallon Get more The Tonight Show Starring Jimmy Fallon: Follow The Tonight Show: http://Twitter.com/FallonTonight Like The Tonight Show: https://Facebook.com/FallonTonight The Tonight Show Tumblr: http://fallontonight.tumblr.com/ Get more NBC: NBC YouTube: http://bit.ly/1dM1qBH Like NBC: http://Facebook.com/NBC Follow NBC: http://Twi...
Jim talks about how his life has changed since he took time away from the spotlight and reveals that his beard has taken on a life of its own. Exclusive Footage of Trump’s Media Lunch https://youtu.be/ixrDsJjAgOU 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 produ...
Joker - Teaser Trailer - In Theaters October 4 https://www.joker.movie https://www.facebook.com/jokermovie https://twitter.com/jokermovie https://www.instagram.com/jokermovie/ Director Todd Phillips “Joker” centers around the iconic arch nemesis and is an original, standalone fictional story not seen before on the big screen. Phillips’ exploration of Arthur Fleck, who is indelibly portrayed by Joaquin Phoenix, is of a man struggling to find his way in Gotham’s fractured society. A clown-for-hire by day, he aspires to be a stand-up comic at night…but finds the joke always seems to be on him. Caught in a cyclical existence between apathy and cruelty, Arthur makes one bad decision that brings about a chain reaction of escalating events in this gritty character study. Three-time Oscar nom...
James Eugene "Jim" Carrey (/ˈkæri/; born January 17, 1962) is a Canadian American actor, comedian, impressionist, screenwriter, and film producer. He is known for his highly energetic slapstick performances.
Carrey first gained recognition in 1990 after landing a recurring role in the sketch comedy In Living Color. His first leading roles in major productions came with Ace Ventura: Pet Detective (1994), Dumb and Dumber (1994), The Mask (1994), and Ace Ventura: When Nature Calls (1995), as well as a supporting role in Batman Forever (1995) and a lead role in Liar Liar (1997). He then starred in The Truman Show (1998) and Man on the Moon (1999), with each garnering him a Golden Globe Award for Best Actor.
In the 2000s, he gained further recognition for his portrayal of the Grinch in How the Grinch Stole Christmas (2000), as well as Bruce Almighty (2003), Eternal Sunshine of the Spotless Mind (2004), Lemony Snicket's A Series of Unfortunate Events (2004), Fun with Dick and Jane (2005), Yes Man (2008), Horton Hears a Who! (2008) and A Christmas Carol (2009).
You're a mean one, Mr. Grinch
You really are a heel
You're as cuddly as a cactus
You're as charming as an eel, Mr. Grinch
You're a bad banana with a greasy black peel
You're a monster, Mr. Grinch
Your heart's an empty hole
Your brain is full of spiders
You've got garlic in your soul, Mr. Grinch
I wouldn't touch you with a thirty-nine-and-a-half foot pole
You're a foul one, Mr. Grinch
You have termites in your smile
You have all the tender sweetness
Of a seasick crocodile, Mr. Grinch
Given the choice between the two of you
I'd take the seasick crocodile
You're a rotter, Mr. Grinch
You're the king of sinful sots
Your heart's a dead tomato splotched
With moldy purple spots, Mr. Grinch
You're a three decker sauerkraut and toadstool sandwich with arsenic sauce
You nauseate me, Mr. Grinch
With a nauseous super 'naus'
You're a crooked dirty jockey
And you drive a crooked hoss, Mr. Grinch
Your soul is an appalling dump heap
Overflowing with the most disgraceful assortment of rubbish imaginable
Mangled up in tangled up knots
You're a foul one, Mr. Grinch
You're a nasty wasty skunk
Your heart is full of unwashed socks
Your soul is full of gunk, Mr. Grinch
The three words that best describe you are as follows, and I quote