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

Lamborghini (disambiguation)

Lamborghini is an Italian manufacturer of high performance sports cars, now a subsidiary of Audi AG

Lamborghini may also refer to:

  • Lamborghini Trattori, former Italian manufacturer of tractors, now a brand of Same Deutz-Fahr
  • Ferruccio Lamborghini (1916–1993), founder of the auto and tractor manufacturing companies
  • Osvaldo Lamborghini (1940–1985), Argentine writer
  • Automobili Lamborghini, a video game released in 1997
  • Lamborghini (video game), a cancelled racing video game by Rage Software
  • Modena Team, a short-lived Formula One team from Modena, Italy which was unofficially referred to as "Lamborghini" because of the automaker's engine sponsorship
  • "Lamborghini" (song), a 2015 song by English YouTuber KSI featuring English rapper P Money
  • Lamborghini 350 GT

    The Lamborghini 350 GT was the first production vehicle produced by Lamborghini. Production started in May 1964, after its well-received debut at the March 1964 Geneva auto show. Its success ensured the company's survival, establishing it as a viable competitor with sports car maker Ferrari.

    History

    Initial design team

    After the testing of his prototype Lamborghini engine in May 1963,Giotto Bizzarrini left the company, and the following month Ferruccio Lamborghini assigned Gian Paolo Dallarawith the assistance of Paolo Stanzani and Bob Wallacethe task of developing a production version of the grand tourer.

    Dallara and Stanzani quickly realized that the Lamborghini 350GTV was not properly designed for mass production, so they proceeded along parallel lines:

  • Detuning the original Bizzarrini engine and redesigning the original Bizzarrini chassis for street use, eventually in the 350 GT, and
  • Readying the GTV for its late-October 1963 Turin Auto Show debut.
  • Redesigning the GTV Prototype

    Super (2010 American film)

    Super is a 2010 American superhero dark comedy-drama film written and directed by James Gunn, starring Rainn Wilson, Ellen Page, Liv Tyler, Kevin Bacon and Nathan Fillion. The film premiered at the 2010 Toronto International Film Festival and was released in theaters in the United States on April 1, 2011 and on video on demand on April 13, 2011. The film was released unrated in U.S. theaters, and later received an R rating for its DVD/Blu-ray release.

    Plot

    Short-order cook Frank Darbo (Rainn Wilson) says in voice-over that he has only two good memories from a disappointing life: marrying his beautiful wife, Sarah (Liv Tyler), and an incident in which he directed a police officer to catch a purse snatcher. Frank immortalizes these two events in a pair of crayon drawings that he hangs on his wall for inspiration.

    Later, Sarah, a recovering addict, leaves Frank for Jacques (Kevin Bacon), a charismatic strip club owner who gets her hooked on drugs. Frank sinks into depression, where he has a vision in which he is touched by the finger of God and meets the Holy Avenger (Nathan Fillion), a superhero from a public-access television show on the All-Jesus Network, who tells Frank that God has chosen him for a very special purpose. Frank believes that God has chosen him to become a superhero and goes to a local comic book store for inspiration. His claim that he is designing a new superhero is met with enthusiastic appreciation from the foul-mouthed store clerk, Libby (Ellen Page). Frank creates a superhero costume and assumes the identity of "The Crimson Bolt."

    Super (Neu! song)

    Super is a single by German band Neu!, released in 1972. It failed to chart and has never been re-released, but has become a collector's item due to the rarity of the original vinyl 7". After the single's recording both the A and B side tracks were added to the album Neu! 2, which was released the following year.

    Recording, Release & Remixing

    Both tracks were recorded quickly at Conny Plank's studio in Cologne during the summer of 1972, six months after the release of Neu!'s debut album. Brain were pessimistic about the single's chances, and had to be convinced to release it by Dinger and Rother. When it was released, it was backed by only minimal promotion, and predictably failed to make any impact on the German music charts (though some Krautrock acts - such as Can - did have successful singles in the early '70s).

    When Dinger and Rother returned to the studio in early 1973 to record Neu! 2, they decided to fill the second side of the new album with tape manipulated remixes of the Super/Neuschnee single. There have been several conflicting explanations as to why this was done, the most quoted being Dinger's assertion that:

    .45 Super

    The .45 Super is a large and powerful smokeless powder center fire metallic firearm cartridge developed in 1988 by Dean Grennell, a well-known writer in the firearms field as well as managing editor of Gun World magazine. Born of a desire to update and improve the 1906 era .45 ACP, the .45 Super cartridge is dimensionally identical with the older .45 ACP round. A notable difference is that it has a thicker case wall than its ACP brethren cartridge, and the Super is loaded to higher pressures, which makes it a substantially more powerful round than the standard .45 ACP. It offers an average 300 foot per second (ft/s) improvement in muzzle velocity. The cartridge was co-developed by Tom Fergerson and Ace Hindman.

    Development history

    Podcasts:

    • Super Official Trailer #1 - (2010) HD

      Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: After his wife (Liv Tyler), turns her affections towards a smooth talking drug dealer (Kevin Bacon), Frank (Rainn Wilson) transforms himself into The Crimson Bolt, with a comic book store sidekick, Boltie (Ellen Page). FILM DESCRIPTION: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. Wi...

      published: 16 Jun 2011
    • Super: Official Movie Trailer

      Rainn Wilson is a sad-sack superhero wannabe in James Gunn's comic book satire movie, Super. Check out the hilarious trailer. IGN's YouTube is just a taste of our content. Get more: http://www.ign.com Want this week's top videos? Sign up: http://go.ign.com/VideoRound-up

      published: 10 Mar 2011
    • Super - trailer

      Super is a comedy that takes aim at the superhero genre. An average guy takes on the pseudo-superhero alter ego of the Crimson Bolt, after watching his wife fall under the spell of a charming drug dealer. Lacking super powers, he compensates by swinging a trusty wrench.

      published: 27 Mar 2012
    • Super Trailer - Super Movie Trailer

      http://www.blockbuster.co.uk/ - Frank (RAINN WILSON) is an average guy who starts dressing up as superhero The Crimson Bolt after his wife Sarah (LIV TYLER) leaves him for smooth-talking drug dealer, Jacques (KEVIN BACON). What Frank lacks in superpowers, he makes up for with a trusty wrench in his one-man war on petty criminals. Powers or not, every superhero needs a sidekick. Enter Libby (ELLEN PAGE), a cute psychopath working at the local comic book store. Transforming into 'Boltie', Libby teams up with Frank to take Jacques down. From the surprising imagination of writer-director JAMES GUNN (Slither) comes Bolt and Boltie, a crazed crime fighting duo here to save the day, or at least to beat you up. WRITTEN & DIRECTED BY James Gunn STARRING Rainn Wilson, Ellen Page, L...

      published: 24 Jun 2011
    • Super #1 Movie CLIP - No Cuts, No Buts (2010) HD

      Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Perturbed by the line-cutters, Frank (Rainn Wilson) shimmies into his Crimson Bolt costume and doles out some pretty extreme punishment. FILM DESCRIPTION: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. With a hand-made suit, a wrench, and a crazed sidekick named Boltie (Ellen Page), th...

      published: 16 Jun 2011
    • Super (2010) Powerfull Ending Scene

      Super (2010) The powerfull scene near the end of the film.

      published: 11 Aug 2012
    • SUPER Behind The Scenes - Part One (2010) James Gunn

      SUPER Behind The Scenes - Part One (2010) James Gunn PLOT: After his wife (Liv Tyler) leaves him, a fry cook (Rainn Wilson) emulates a TV superhero and transforms himself into a costumed vigilante. Release date: April 1, 2011 (USA) Director: James Gunn CAST: Rainn Wilson, Ellen Page, Liv Tyler, Kevin Bacon, Nathan Fillion SUBSCRIBE for more SUPERHERO videos here: https://goo.gl/9Ahzw8 For more daily movie news updates, check out: http://www.joblo.com/ Check out all of the JOBLO YOUTUBE channels: MOVIE TRAILERS: https://bit.ly/1GUxgxm MOVIE CLIPS: https://bit.ly/31ByDAf TV TRAILERS: https://bit.ly/2rgxfot SUPERHEROES: https://bit.ly/2W1GS7r ANIMATED: https://bit.ly/2Jd1moq HORROR: https://bit.ly/2p5YhzR ORIGINAL CONTENT VIDEOS: https://bit.ly/2MCQJh4 CELEBRITY INTERVIEWS: https://bit.l...

      published: 08 Oct 2020
    • Super #4 Movie CLIP - Uber Enlightenment (2010) HD

      Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Frank (Rainn Wilson) is touched by the finger of God along with slimy tentacles when he receives Divine enlightenment. FILM DESCRIPTION: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. With a hand-made suit, a wrench, and a crazed sidekick named Boltie (Ellen Page), the Crimson Bolt bea...

      published: 16 Jun 2011
    • How the Actors of Home Alone 2 Live (Macaulay Culkin, Joe Pesci and others) | Extended Version

      The movie Home Alone has become a true cinematic classic, giving audiences countless unforgettable moments. But what happened to the actors who played the lead roles in this iconic film? How did their careers develop after filming, and what other projects have they undertaken? In this video, we’ll take a closer look at the actors' journeys and find out how their lives changed after starring in this legendary comedy. #homealone #mixshowstarnews #movie #celebrity ► SUBSCRIBE: https://www.youtube.com/@MixShowStarNews ► Facebook: https://bit.ly/facebookMixShowStarNews ► Instagram: https://bit.ly/instagramMixShowStarNews ► Patreon: https://patreon.com/MixShowStarNews ► PayChute: https://www.paychute.com/c/mixshow-star-newsmZ37isWm8zXjMuSIQ?sub_confirmation=1 ★ Real Fighters in Movies Part 4...

      published: 17 Jan 2025
    • Super 2010 - Ellen Page gets blasted in the face (because you know, she's a woman)

      published: 01 Jan 2023
    • Super (2010) - Trailer

      After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.

      published: 28 Mar 2011
    • Super 2010 | High-Five

      Super a 2010 movie staring Rainn Wilson and Ellen Page

      published: 15 Jan 2016
    • SUPER Behind The Scenes - Part Two (2010) James Gunn

      SUPER Behind The Scenes - Part Two (2010) James Gunn PLOT: After his wife (Liv Tyler) leaves him, a fry cook (Rainn Wilson) emulates a TV superhero and transforms himself into a costumed vigilante. Release date: April 1, 2011 (USA) Director: James Gunn CAST: Rainn Wilson, Ellen Page, Liv Tyler, Kevin Bacon, Nathan Fillion SUBSCRIBE for more SUPERHERO videos here: https://goo.gl/9Ahzw8 For more daily movie news updates, check out: http://www.joblo.com/ Check out all of the JOBLO YOUTUBE channels: MOVIE TRAILERS: https://bit.ly/1GUxgxm MOVIE CLIPS: https://bit.ly/31ByDAf TV TRAILERS: https://bit.ly/2rgxfot SUPERHEROES: https://bit.ly/2W1GS7r ANIMATED: https://bit.ly/2Jd1moq HORROR: https://bit.ly/2p5YhzR ORIGINAL CONTENT VIDEOS: https://bit.ly/2MCQJh4 CELEBRITY INTERVIEWS: https://bit.l...

      published: 12 Oct 2020
    • Super #3 Movie CLIP - You Need a Sidekick (2010) HD

      Super Movie Clip - watch all clips http://j.mp/zxigmg click to subscribe http://j.mp/sNDUs5 Libby (Ellen Page) tries out for Frank's (Rainn Wilson) sidekick. TM & © IFC Films (2012) Cast: Rainn Wilson, Ellen Page Director: James Gunn MOVIECLIPS YouTube Channel: http://j.mp/vqieFG Join our Facebook page: http://j.mp/tb8OMH Follow us on Twitter: http://j.mp/rZzGsm Buy Movie: http://amzn.to/ueqTnK Producer: Miranda Bailey, Iddo Lampton Enochs Jr., Ted Hope, Iris Ichishita, Matthew Leutwyler, Amanda Marshall, Rainn Wilson Screenwriter: James Gunn Film Description: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a sed...

      published: 16 Jun 2011
    Super Official Trailer #1 - (2010) HD
    2:40

    Super Official Trailer #1 - (2010) HD

    • Order:
    • Duration: 2:40
    • Uploaded Date: 16 Jun 2011
    • views: 1047572
    Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: After his wife (Liv Tyler), turns her affections towards a smooth talking drug dealer (Kevin Bacon), Frank (Rainn Wilson) transforms himself into The Crimson Bolt, with a comic book store sidekick, Boltie (Ellen Page). FILM DESCRIPTION: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. With a hand-made suit, a wrench, and a crazed sidekick named Boltie (Ellen Page), the Crimson Bolt beats his way through the mean streets of crime in hopes of saving his wife. The rules were written a long time ago: You are not supposed to molest children, cut lines or key cars; if you do, prepare to face the wrath of the Crimson Bolt! No stranger to rebel filmmaking, James Gunn cut his teeth writing for Troma before making his directing debut with 2006's SLITHER. In a similar vein, his follow-up feature combines absurd humor with balls-out violence to create something that is both unashamed and inimitable. But this time Gunn adds a new ingredient, one that is dark, dramatic and subversive to the core. - CREDITS: TM & © IFC Films (2010) Cast: Rainn Wilson, Ellen Page, Liv Tyler, Kevin Bacon, Gregg Henry, Nathan Fillion Director: James Gunn Producers: Miranda Bailey, Iddo Lampton Enochs Jr., Ted Hope, Iris Ichishita, Matthew Leutwyler, Amanda Marshall, Rainn Wilson Screenwriter: James Gunn WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Super_Official_Trailer_1_(2010)_Hd
    Super: Official Movie Trailer
    2:12

    Super: Official Movie Trailer

    • Order:
    • Duration: 2:12
    • Uploaded Date: 10 Mar 2011
    • views: 571108
    Rainn Wilson is a sad-sack superhero wannabe in James Gunn's comic book satire movie, Super. Check out the hilarious trailer. IGN's YouTube is just a taste of our content. Get more: http://www.ign.com Want this week's top videos? Sign up: http://go.ign.com/VideoRound-up
    https://wn.com/Super_Official_Movie_Trailer
    Super - trailer
    1:26

    Super - trailer

    • Order:
    • Duration: 1:26
    • Uploaded Date: 27 Mar 2012
    • views: 535
    Super is a comedy that takes aim at the superhero genre. An average guy takes on the pseudo-superhero alter ego of the Crimson Bolt, after watching his wife fall under the spell of a charming drug dealer. Lacking super powers, he compensates by swinging a trusty wrench.
    https://wn.com/Super_Trailer
    Super Trailer - Super Movie Trailer
    2:18

    Super Trailer - Super Movie Trailer

    • Order:
    • Duration: 2:18
    • Uploaded Date: 24 Jun 2011
    • views: 9140
    http://www.blockbuster.co.uk/ - Frank (RAINN WILSON) is an average guy who starts dressing up as superhero The Crimson Bolt after his wife Sarah (LIV TYLER) leaves him for smooth-talking drug dealer, Jacques (KEVIN BACON). What Frank lacks in superpowers, he makes up for with a trusty wrench in his one-man war on petty criminals. Powers or not, every superhero needs a sidekick. Enter Libby (ELLEN PAGE), a cute psychopath working at the local comic book store. Transforming into 'Boltie', Libby teams up with Frank to take Jacques down. From the surprising imagination of writer-director JAMES GUNN (Slither) comes Bolt and Boltie, a crazed crime fighting duo here to save the day, or at least to beat you up. WRITTEN & DIRECTED BY James Gunn STARRING Rainn Wilson, Ellen Page, Liv Tyler & Kevin Bacon
    https://wn.com/Super_Trailer_Super_Movie_Trailer
    Super #1 Movie CLIP - No Cuts, No Buts (2010) HD
    2:14

    Super #1 Movie CLIP - No Cuts, No Buts (2010) HD

    • Order:
    • Duration: 2:14
    • Uploaded Date: 16 Jun 2011
    • views: 450262
    Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Perturbed by the line-cutters, Frank (Rainn Wilson) shimmies into his Crimson Bolt costume and doles out some pretty extreme punishment. FILM DESCRIPTION: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. With a hand-made suit, a wrench, and a crazed sidekick named Boltie (Ellen Page), the Crimson Bolt beats his way through the mean streets of crime in hopes of saving his wife. The rules were written a long time ago: You are not supposed to molest children, cut lines or key cars; if you do, prepare to face the wrath of the Crimson Bolt! No stranger to rebel filmmaking, James Gunn cut his teeth writing for Troma before making his directing debut with 2006's SLITHER. In a similar vein, his follow-up feature combines absurd humor with balls-out violence to create something that is both unashamed and inimitable. But this time Gunn adds a new ingredient, one that is dark, dramatic and subversive to the core. - CREDITS: TM & © IFC Films (2010) Cast: Rainn Wilson, Valentine Miele, Michelle Gunn Director: James Gunn Producers: Miranda Bailey, Iddo Lampton Enochs Jr., Ted Hope, Iris Ichishita, Matthew Leutwyler, Amanda Marshall, Rainn Wilson Screenwriter: James Gunn WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Super_1_Movie_Clip_No_Cuts,_No_Buts_(2010)_Hd
    Super (2010)  Powerfull Ending Scene
    2:18

    Super (2010) Powerfull Ending Scene

    • Order:
    • Duration: 2:18
    • Uploaded Date: 11 Aug 2012
    • views: 256739
    Super (2010) The powerfull scene near the end of the film.
    https://wn.com/Super_(2010)_Powerfull_Ending_Scene
    SUPER Behind The Scenes - Part One (2010) James Gunn
    8:38

    SUPER Behind The Scenes - Part One (2010) James Gunn

    • Order:
    • Duration: 8:38
    • Uploaded Date: 08 Oct 2020
    • views: 6404
    SUPER Behind The Scenes - Part One (2010) James Gunn PLOT: After his wife (Liv Tyler) leaves him, a fry cook (Rainn Wilson) emulates a TV superhero and transforms himself into a costumed vigilante. Release date: April 1, 2011 (USA) Director: James Gunn CAST: Rainn Wilson, Ellen Page, Liv Tyler, Kevin Bacon, Nathan Fillion SUBSCRIBE for more SUPERHERO videos here: https://goo.gl/9Ahzw8 For more daily movie news updates, check out: http://www.joblo.com/ Check out all of the JOBLO YOUTUBE channels: MOVIE TRAILERS: https://bit.ly/1GUxgxm MOVIE CLIPS: https://bit.ly/31ByDAf TV TRAILERS: https://bit.ly/2rgxfot SUPERHEROES: https://bit.ly/2W1GS7r ANIMATED: https://bit.ly/2Jd1moq HORROR: https://bit.ly/2p5YhzR ORIGINAL CONTENT VIDEOS: https://bit.ly/2MCQJh4 CELEBRITY INTERVIEWS: https://bit.ly/2W0EeyK JOBLO SUPERHEROES provides you with the latest trailers, clips, TV spots, promos, bloopers/gag reels, behind the scenes featurettes for all your favorite Marvel and DC superhero movies. #Super #RainnWilson #JamesGunn
    https://wn.com/Super_Behind_The_Scenes_Part_One_(2010)_James_Gunn
    Super #4 Movie CLIP - Uber Enlightenment (2010) HD
    1:52

    Super #4 Movie CLIP - Uber Enlightenment (2010) HD

    • Order:
    • Duration: 1:52
    • Uploaded Date: 16 Jun 2011
    • views: 31631808
    Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Frank (Rainn Wilson) is touched by the finger of God along with slimy tentacles when he receives Divine enlightenment. FILM DESCRIPTION: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. With a hand-made suit, a wrench, and a crazed sidekick named Boltie (Ellen Page), the Crimson Bolt beats his way through the mean streets of crime in hopes of saving his wife. The rules were written a long time ago: You are not supposed to molest children, cut lines or key cars; if you do, prepare to face the wrath of the Crimson Bolt! No stranger to rebel filmmaking, James Gunn cut his teeth writing for Troma before making his directing debut with 2006's SLITHER. In a similar vein, his follow-up feature combines absurd humor with balls-out violence to create something that is both unashamed and inimitable. But this time Gunn adds a new ingredient, one that is dark, dramatic and subversive to the core. - CREDITS: TM & © IFC Films (2010) Cast: Rainn Wilson Director: James Gunn Producers: Miranda Bailey, Iddo Lampton Enochs Jr., Ted Hope, Iris Ichishita, Matthew Leutwyler, Amanda Marshall, Rainn Wilson Screenwriter: James Gunn WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Super_4_Movie_Clip_Uber_Enlightenment_(2010)_Hd
    How the Actors of Home Alone 2 Live (Macaulay Culkin, Joe Pesci and others) | Extended Version
    2:14:38

    How the Actors of Home Alone 2 Live (Macaulay Culkin, Joe Pesci and others) | Extended Version

    • Order:
    • Duration: 2:14:38
    • Uploaded Date: 17 Jan 2025
    • views: 504
    The movie Home Alone has become a true cinematic classic, giving audiences countless unforgettable moments. But what happened to the actors who played the lead roles in this iconic film? How did their careers develop after filming, and what other projects have they undertaken? In this video, we’ll take a closer look at the actors' journeys and find out how their lives changed after starring in this legendary comedy. #homealone #mixshowstarnews #movie #celebrity ► SUBSCRIBE: https://www.youtube.com/@MixShowStarNews ► Facebook: https://bit.ly/facebookMixShowStarNews ► Instagram: https://bit.ly/instagramMixShowStarNews ► Patreon: https://patreon.com/MixShowStarNews ► PayChute: https://www.paychute.com/c/mixshow-star-newsmZ37isWm8zXjMuSIQ?sub_confirmation=1 ★ Real Fighters in Movies Part 4 | Hiroyuki Sanada, Randy Couture, Lucy Liu, Iko Uwais, Elodie Yung https://www.youtube.com/watch?v=CtR8JPYd5rI&list=PL9yBu_uGR59CIJESQxuK6evOALZGONFk3 ★ Tony Jaa | How the best Thai martial arts actor lives and how he spends his millions https://www.youtube.com/watch?v=TdDIXYkC2pc&list=PL9yBu_uGR59CSXbwUBrKlETTeHjuU0x3-&index=7 ★ Gal Gadot | From Soldier to Wonder Woman (Full Biography) https://www.youtube.com/watch?v=dN34dlIrxJo&list=PL9yBu_uGR59AU8QFs8WmlrD6qk0q1bx5Q&index=2 ★ Cynthia Rothrock | The Life of the Queen of ’90s Action Films https://www.youtube.com/watch?v=f_6jlZg11sA&list=PL9yBu_uGR59Cr-rF_spRZHzzZmADPPeQs ★ Top 10 Spectacular Fight Scenes That Will Leave You Breathless https://www.youtube.com/watch?v=y1HYTLQkeTU&list=PL9yBu_uGR59DxIRrwWlgJMpcxvmkurkfo&index=8
    https://wn.com/How_The_Actors_Of_Home_Alone_2_Live_(Macaulay_Culkin,_Joe_Pesci_And_Others)_|_Extended_Version
    Super 2010 - Ellen Page gets blasted in the face (because you know, she's a woman)
    1:18

    Super 2010 - Ellen Page gets blasted in the face (because you know, she's a woman)

    • Order:
    • Duration: 1:18
    • Uploaded Date: 01 Jan 2023
    • views: 6884
    https://wn.com/Super_2010_Ellen_Page_Gets_Blasted_In_The_Face_(Because_You_Know,_She's_A_Woman)
    Super (2010) - Trailer
    2:12

    Super (2010) - Trailer

    • Order:
    • Duration: 2:12
    • Uploaded Date: 28 Mar 2011
    • views: 131
    After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.
    https://wn.com/Super_(2010)_Trailer
    Super 2010 | High-Five
    0:21

    Super 2010 | High-Five

    • Order:
    • Duration: 0:21
    • Uploaded Date: 15 Jan 2016
    • views: 275
    Super a 2010 movie staring Rainn Wilson and Ellen Page
    https://wn.com/Super_2010_|_High_Five
    SUPER Behind The Scenes - Part Two (2010) James Gunn
    10:01

    SUPER Behind The Scenes - Part Two (2010) James Gunn

    • Order:
    • Duration: 10:01
    • Uploaded Date: 12 Oct 2020
    • views: 3094
    SUPER Behind The Scenes - Part Two (2010) James Gunn PLOT: After his wife (Liv Tyler) leaves him, a fry cook (Rainn Wilson) emulates a TV superhero and transforms himself into a costumed vigilante. Release date: April 1, 2011 (USA) Director: James Gunn CAST: Rainn Wilson, Ellen Page, Liv Tyler, Kevin Bacon, Nathan Fillion SUBSCRIBE for more SUPERHERO videos here: https://goo.gl/9Ahzw8 For more daily movie news updates, check out: http://www.joblo.com/ Check out all of the JOBLO YOUTUBE channels: MOVIE TRAILERS: https://bit.ly/1GUxgxm MOVIE CLIPS: https://bit.ly/31ByDAf TV TRAILERS: https://bit.ly/2rgxfot SUPERHEROES: https://bit.ly/2W1GS7r ANIMATED: https://bit.ly/2Jd1moq HORROR: https://bit.ly/2p5YhzR ORIGINAL CONTENT VIDEOS: https://bit.ly/2MCQJh4 CELEBRITY INTERVIEWS: https://bit.ly/2W0EeyK JOBLO SUPERHEROES provides you with the latest trailers, clips, TV spots, promos, bloopers/gag reels, behind the scenes featurettes for all your favorite Marvel and DC superhero movies. #Super #RainnWilson #JamesGunn
    https://wn.com/Super_Behind_The_Scenes_Part_Two_(2010)_James_Gunn
    Super #3 Movie CLIP - You Need a Sidekick (2010) HD
    2:02

    Super #3 Movie CLIP - You Need a Sidekick (2010) HD

    • Order:
    • Duration: 2:02
    • Uploaded Date: 16 Jun 2011
    • views: 116647
    Super Movie Clip - watch all clips http://j.mp/zxigmg click to subscribe http://j.mp/sNDUs5 Libby (Ellen Page) tries out for Frank's (Rainn Wilson) sidekick. TM & © IFC Films (2012) Cast: Rainn Wilson, Ellen Page Director: James Gunn MOVIECLIPS YouTube Channel: http://j.mp/vqieFG Join our Facebook page: http://j.mp/tb8OMH Follow us on Twitter: http://j.mp/rZzGsm Buy Movie: http://amzn.to/ueqTnK Producer: Miranda Bailey, Iddo Lampton Enochs Jr., Ted Hope, Iris Ichishita, Matthew Leutwyler, Amanda Marshall, Rainn Wilson Screenwriter: James Gunn Film Description: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. With a hand-made suit, a wrench, and a crazed sidekick named Boltie (Ellen Page), the Crimson Bolt beats his way through the mean streets of crime in hopes of saving his wife. The rules were written a long time ago: You are not supposed to molest children, cut lines or key cars; if you do, prepare to face the wrath of the Crimson Bolt! No stranger to rebel filmmaking, James Gunn cut his teeth writing for Troma before making his directing debut with 2006's SLITHER. In a similar vein, his follow-up feature combines absurd humor with balls-out violence to create something that is both unashamed and inimitable. But this time Gunn adds a new ingredient, one that is dark, dramatic and subversive to the core. - super,"super clip","super bass nicki minaj","super bass","super junior","super junior mr simple",superman,"ellen page","james gunn","light bulb videos","paper videos","action adventure","action comedies","comic books and superheroes","ted hope","miranda bailey","amanda marshall","iddo lampton enochs jr","matthew leutwyler","iris ichishita","rainn wilson","helping videos","teamwork videos","bedroom videos","frank darbo",libby,"movie clips",movieclipsdotcom,#AMG:V+++522035,/m/083chw,/m/049g_xj
    https://wn.com/Super_3_Movie_Clip_You_Need_A_Sidekick_(2010)_Hd
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Super Official Trailer #1 - (2010) HD
      2:40
      Super Official Trailer #1 - (2010) HDremove from playlist
    • Super: Official Movie Trailer
      2:12
      Super: Official Movie Trailerremove from playlist
    • Super - trailer
      1:26
      Super - trailerremove from playlist
    • Super Trailer - Super Movie Trailer
      2:18
      Super Trailer - Super Movie Trailerremove from playlist
    • Super #1 Movie CLIP - No Cuts, No Buts (2010) HD
      2:14
      Super #1 Movie CLIP - No Cuts, No Buts (2010) HDremove from playlist
    • SUPER Behind The Scenes - Part One (2010) James Gunn
      8:38
      SUPER Behind The Scenes - Part One (2010) James Gunnremove from playlist
    • Super #4 Movie CLIP - Uber Enlightenment (2010) HD
      1:52
      Super #4 Movie CLIP - Uber Enlightenment (2010) HDremove from playlist
    • How the Actors of Home Alone 2 Live (Macaulay Culkin, Joe Pesci and others) | Extended Version
      2:14:38
      How the Actors of Home Alone 2 Live (Macaulay Culkin, Joe Pesci and others) | Extended Versionremove from playlist
    • Super (2010) - Trailer
      2:12
      Super (2010) - Trailerremove from playlist
    • Super 2010 | High-Five
      0:21
      Super 2010 | High-Fiveremove from playlist
    • SUPER Behind The Scenes - Part Two (2010) James Gunn
      10:01
      SUPER Behind The Scenes - Part Two (2010) James Gunnremove from playlist
    • Super #3 Movie CLIP - You Need a Sidekick (2010) HD
      2:02
      Super #3 Movie CLIP - You Need a Sidekick (2010) HDremove from playlist
    PLAYLIST TIME: 0:00 / 2:54:10

    Super Official Trailer #1 - (2010) HD

    Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: After his wife (Liv Tyler), turns her affections towards a smooth talking drug dealer (Kevin Bacon), Frank (Rainn Wilson) transforms himself into The Crimson Bolt, with a comic book store sidekick, Boltie (Ellen Page). FILM DESCRIPTION: In the outlandish dark comedy SUPER, James Gunn has created what is perhaps the definitive take on self-reflexive superheroes. When sad-sack loser Frank (Rainn Wilson) sees his ex-addict wife (Liv Tyler) willingly snatched by a seductive drug dealer (Kevin Bacon), he finds himself bereft and wholly unable to cope. But soon he decides to fight back under the guise of a DIY superhero called Crimson Bolt. With a hand-made suit, a wrench, and a crazed sidekick named Boltie (Ellen Page), the Crimson Bolt beats his way through the mean streets of crime in hopes of saving his wife. The rules were written a long time ago: You are not supposed to molest children, cut lines or key cars; if you do, prepare to face the wrath of the Crimson Bolt! No stranger to rebel filmmaking, James Gunn cut his teeth writing for Troma before making his directing debut with 2006's SLITHER. In a similar vein, his follow-up feature combines absurd humor with balls-out violence to create something that is both unashamed and inimitable. But this time Gunn adds a new ingredient, one that is dark, dramatic and subversive to the core. - CREDITS: TM & © IFC Films (2010) Cast: Rainn Wilson, Ellen Page, Liv Tyler, Kevin Bacon, Gregg Henry, Nathan Fillion Director: James Gunn Producers: Miranda Bailey, Iddo Lampton Enochs Jr., Ted Hope, Iris Ichishita, Matthew Leutwyler, Amanda Marshall, Rainn Wilson Screenwriter: James Gunn WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    2:40
    Super Official Trailer #1 - (2010) HD
    Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the...
    published: 16 Jun 2011
    Play in Full Screen
    2:12
    Super: Official Movie Trailer
    Rainn Wilson is a sad-sack superhero wannabe in James Gunn's comic book satire movie, Supe...
    published: 10 Mar 2011
    Play in Full Screen
    1:26
    Super - trailer
    Super is a comedy that takes aim at the superhero genre. An average guy takes on the pseud...
    published: 27 Mar 2012
    Play in Full Screen
    2:18
    Super Trailer - Super Movie Trailer
    http://www.blockbuster.co.uk/ - Frank (RAINN WILSON) is an average guy who starts dressing...
    published: 24 Jun 2011
    Play in Full Screen
    2:14
    Super #1 Movie CLIP - No Cuts, No Buts (2010) HD
    Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the...
    published: 16 Jun 2011
    Play in Full Screen
    2:18
    Super (2010) Powerfull Ending Scene
    Super (2010) The powerfull scene near the end of the film.
    published: 11 Aug 2012
    Play in Full Screen
    8:38
    SUPER Behind The Scenes - Part One (2010) James Gunn
    SUPER Behind The Scenes - Part One (2010) James Gunn PLOT: After his wife (Liv Tyler) lea...
    published: 08 Oct 2020
    Play in Full Screen
    1:52
    Super #4 Movie CLIP - Uber Enlightenment (2010) HD
    Super movie clips: http://j.mp/1yz1PpW BUY THE MOVIE: http://amzn.to/ueqTnK Don't miss the...
    published: 16 Jun 2011
    Play in Full Screen
    2:14:38
    How the Actors of Home Alone 2 Live (Macaulay Culkin, Joe Pesci and others) | Extended Version
    The movie Home Alone has become a true cinematic classic, giving audiences countless unfor...
    published: 17 Jan 2025
    Play in Full Screen
    1:18
    Super 2010 - Ellen Page gets blasted in the face (because you know, she's a woman)
    published: 01 Jan 2023
    Play in Full Screen
    2:12
    Super (2010) - Trailer
    After his wife falls under the influence of a drug dealer, an everyday guy transforms hims...
    published: 28 Mar 2011
    Play in Full Screen
    0:21
    Super 2010 | High-Five
    Super a 2010 movie staring Rainn Wilson and Ellen Page
    published: 15 Jan 2016
    Play in Full Screen
    10:01
    SUPER Behind The Scenes - Part Two (2010) James Gunn
    SUPER Behind The Scenes - Part Two (2010) James Gunn PLOT: After his wife (Liv Tyler) lea...
    published: 12 Oct 2020
    Play in Full Screen
    2:02
    Super #3 Movie CLIP - You Need a Sidekick (2010) HD
    Super Movie Clip - watch all clips http://j.mp/zxigmg click to subscribe http://j.mp/sNDUs...
    published: 16 Jun 2011
    Play in Full Screen

    Lamborghini (disambiguation)

    Lamborghini is an Italian manufacturer of high performance sports cars, now a subsidiary of Audi AG

    Lamborghini may also refer to:

  • Lamborghini Trattori, former Italian manufacturer of tractors, now a brand of Same Deutz-Fahr
  • Ferruccio Lamborghini (1916–1993), founder of the auto and tractor manufacturing companies
  • Osvaldo Lamborghini (1940–1985), Argentine writer
  • Automobili Lamborghini, a video game released in 1997
  • Lamborghini (video game), a cancelled racing video game by Rage Software
  • Modena Team, a short-lived Formula One team from Modena, Italy which was unofficially referred to as "Lamborghini" because of the automaker's engine sponsorship
  • "Lamborghini" (song), a 2015 song by English YouTuber KSI featuring English rapper P Money
  • '); } 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: lamborghini super trofeo

    Edit

    12 Hours of Sebring 2025 schedule, start times, TV channel, live streams to watch every IMSA race

    Sportingnews 13 Mar 2025
    The main event begins Saturday morning at 10 a.m. ET. WATCH. 12 Hours of Sebring 2025 LIVE on Peacock ... Several preliminary races will take place at Sebring, including the Challenge Races, Porsche Carrera Cup Races and Lamborghini Super Trofeo Races ... .
    Edit

    GT and GT4 Winter Series: Champions crowned at Barcelona

    Autosport 11 Mar 2025
    ... against the Italo-Croatian duo in their Lamborghini Huracan Super Trofeo Evo II.
    • 1
    ×