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

Die Hard 2

Die Hard 2 (sometimes referred to as Die Hard 2: Die Harder) is a 1990 American action film and the second in the Die Hard film series. It was released on July 4, 1990. The film was directed by Renny Harlin, and stars Bruce Willis as John McClane. The film co-stars Bonnie Bedelia (reprising her role as Holly McClane), William Sadler, Art Evans, William Atherton (reprising his role as Richard "Dick" Thornburg), Franco Nero, Dennis Franz, Fred Thompson, John Amos, and Reginald VelJohnson, returning briefly in his role as Sgt. Al Powell from the first film.

The screenplay was written by Steven E. de Souza and Doug Richardson, adapted from Walter Wager's novel 58 Minutes. The novel has the same premise but differs slightly: A cop must stop terrorists who take an airport hostage while his wife's plane circles overhead. He has 58 minutes to do so before the plane crashes. Roderick Thorp, who wrote the novel Nothing Lasts Forever, upon which Die Hard was based, receives credit for creating "certain original characters", although his name is misspelled onscreen as "Roderick Thorpe".

Die hard

Die hard may refer to:

  • Die hard (phrase), one not easily swayed from a belief
  • Film franchise

  • The Die Hard film franchise including:
  • Die Hard
  • Die Hard 2 (Die Harder)
  • Die Hard with a Vengeance
  • Live Free or Die Hard (Die Hard 4.0)
  • A Good Day to Die Hard
  • Die Hard video games, based on the films:
  • Die hard (phrase)

    The phrase die hard was first used during the Battle of Albuera (1811) in the Peninsular war. During the battle, Lieutenant-Colonel William Inglis of the 57th (West Middlesex) Regiment of Foot was wounded by canister shot. Despite his injuries, Inglis refused to retire from the battle but remained with the regimental colours, encouraging his men with the words "Die hard 57th, die hard!" as they came under intense pressure from a French attack. The 'Die Hards' subsequently became the West Middlesex’s regimental nickname.

    The term was later used to deride several senior officers of the Army who sought to maintain the system bequeathed to them by the Duke of Wellington and who strenuously resisted military reforms enacted by Parliament starting in the late 1860s.

    In British politics the adjective "die-hard" (best written with a hyphen) was later used to describe those members of the House of Lords who, during the crisis caused by the Lords' rejection of Lloyd George's "People's Budget" of 1909 refused to accept the diminution of the Upper House's powers by the Parliament Act 1911.

    Die Hard

    Die Hard is a 1988 American action film directed by John McTiernan and written by Steven E. de Souza and Jeb Stuart. It follows off-duty New York City Police Department officer John McClane (Bruce Willis) as he takes on a group of highly organized criminals led by Hans Gruber (Alan Rickman), who perform a heist in a Los Angeles skyscraper under the guise of a terrorist attack using hostages, including McClane's wife Holly (Bonnie Bedelia), to keep the police at bay.

    It is based on Roderick Thorp's 1979 novel Nothing Lasts Forever, the sequel to 1966's The Detective, which was adapted into a 1968 film of the same name that starred Frank Sinatra. Fox was contractually obliged to offer Sinatra the lead role in Die Hard, but he turned it down. The studio then pitched the film to Arnold Schwarzenegger as a sequel to his 1985 action film Commando; he turned it down, as did a host of the era's action stars, and the studio finally and reluctantly gave it to Willis, then known primarily as a comedic television actor.

    Podcasts:

    • Die Hard 2 (1990) - Bon Voyage Scene (5/5) | Movieclips

      Die Hard 2 movie clips: http://j.mp/1L3RrfE BUY THE MOVIE: FandangoNOW - https://www.fandangonow.com/details/movie/die-hard-2-die-harder-1990/1MVca106c9aa38f053d926d6368c00975c3?cmp=Movieclips_YT_Description iTunes - http://apple.co/1FmrIYZ Google Play - http://bit.ly/1FYBN2Y Amazon - http://amzn.to/1GgVJQH Fox Movies - http://fox.co/2jz2pFs Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: McClane (Bruce Willis) succeeds in taking down the terrorists' plane. FILM DESCRIPTION: "Another basement, another elevator...how can the same thing happen to the same guy twice?" asks John McClane (Bruce Willis), in what is doubtless the key question of this film. A year after foiling the terrorist takeover of a high-rise office building in the first movie, McClane is waiti...

      published: 19 Jun 2015
    • Die Hard 2 (1990) Trailer #1 | Movieclips Classic Trailers

      Check out the official Die Hard 2 (1990) trailer starring Bruce Willis! Let us know what you think in the comments below. ► Watch on FandangoNOW: https://www.fandangonow.com/details/movie/die-hard-2-1990/1MVca106c9aa38f053d926d6368c00975c3?&cmp=MCYT_YouTube_Desc Subscribe to the channel and click the bell icon to stay up to date on all your favorite movies. Starring: Bruce Willis, John Amos, William Atherton, Bonnie Bedelia Directed By: Renny Harlin Synopsis: A year after his heroics in L.A, detective John McClane (Bruce Willis) is mixed up in another terrorist plot, this time at Washington Dulles International Airport, where he is waiting for his wife (Bonnie Bedelia). That same night, South American politico and drug profiteer Ramon Esperanza (Franco Nero) is arriving in U.S. custod...

      published: 04 Dec 2020
    • Die Hart 2: Die Harter - Official Trailer | Prime Video

      In this sequel, Kevin Hart, now the world’s biggest action star, finds himself the victim of an evil revenge plot and must enlist the help of his favorite co-star and his over-eager assistant if he wants to survive. » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB X: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/primevideoIG Die Hart 2: Die Harter - Official Trailer | Prime Video https://youtu.be/zCjBWYbP_wQ Prime Video https://www.youtube.com/PrimeVideo #...

      published: 16 May 2024
    • DIE HARD 2 "Gun Fight" (1990) Bruce Willis

      DIE HARD 2 "Gun Fight" (1990) Bruce Willis PLOT: John McClane attempts to avert disaster as rogue military operatives seize control of Dulles International Airport in Washington, D.C. CAST: Bruce Willis, William Atherton, Bonnie Bedelia Buy the film here! https://www.amazon.com/exec/obidos/ASIN/B00AGDX2F6/joblosmovieempor/ SUBSCRIBE for more all the latest Movie Clips here: https://bit.ly/31ByDAf JOBLO YOUTUBE NETWORK: ► MOVIE TRAILERS: https://bit.ly/3rVdsq8 ► MOVIE CLIPS: https://bit.ly/3k355GA ► STREAMING/TV TRAILERS: https://bit.ly/37ifDMz ► HORROR TRAILERS: https://bit.ly/3qsPxyc ► ANIMATED VIDEOS: https://bit.ly/3pqYiaJ ► SUPERHEROES: https://bit.ly/37nXgGd ► JOBLO VIDEOS: https://bit.ly/2Zp4WDG ► JOBLO HORROR VIDEOS: https://bit.ly/3bd7Voj ► CELEBRITY INTERVIEWS: https://bit.l...

      published: 18 Apr 2022
    • Die hard 2: Die harder Blanks scene

      published: 07 Aug 2021
    • DIE HARD 2 Clip - "Ambush" (1990) Bruce Willis

      DIE HARD 2 Clip - "Ambush" (1990) Bruce Willis PLOT: John McClane attempts to avert disaster as rogue military operatives seize control of Dulles International Airport in Washington, D.C. CAST: Bruce Willis, William Atherton, Bonnie Bedelia Buy the film here! https://www.amazon.com/exec/obidos/ASIN/B00AGDX2F6/joblosmovieempor/ SUBSCRIBE for more all the latest Movie Clips here: https://bit.ly/31ByDAf #DieHard #BruceWillis

      published: 03 May 2022
    • Die Hard 2 (1990) - Enough Friends Scene (4/5) | Movieclips

      Die Hard 2 movie clips: http://j.mp/1L3RrfE BUY THE MOVIE: FandangoNOW - https://www.fandangonow.com/details/movie/die-hard-2-die-harder-1990/1MVca106c9aa38f053d926d6368c00975c3?cmp=Movieclips_YT_Description iTunes - http://apple.co/1FmrIYZ Google Play - http://bit.ly/1FYBN2Y Amazon - http://amzn.to/1GgVJQH Fox Movies - http://fox.co/2jz2pFs Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: McClane (Bruce Willis) fights Major Grant (John Amos) on the wing of the escaping plane. FILM DESCRIPTION: "Another basement, another elevator...how can the same thing happen to the same guy twice?" asks John McClane (Bruce Willis), in what is doubtless the key question of this film. A year after foiling the terrorist takeover of a high-rise office building in the first movi...

      published: 19 Jun 2015
    • DIE HARD 2 TRAILER

      DIE HARD 2 TRAILER

      published: 19 Jun 2009
    • Opening to Die Hard 2: Die Harder (US Laserdisc, 1995) (High Quality)

      published: 02 Aug 2024
    • Die Hart 2: Die Harter - Official Trailer | Prime Video India

      In this sequel, Kevin Hart, now the world’s biggest action star, finds himself the victim of an evil revenge plot and must enlist the help of his favorite co-star and his over-eager assistant if he wants to survive. About Prime Video: Prime Video is a premium streaming service that offers Prime members a collection of award-winning Amazon Original series, thousands of movies & TV shows—all with the ease of finding what they love to watch in one place. Prime Video is just one of the many benefits of a Prime membership, available for just ₹1499/ year. Included with Prime Video: Thousands of acclaimed TV shows & movies across languages & geographies, including Indian films such as Shershaah, Soorarai Pottru, Sardar Udham, Gehraiyaan, Jai Bhim, Jalsa, Shakuntala Devi, Sherni, Narappa, Sarpat...

      published: 16 May 2024
    Die Hard 2 (1990) - Bon Voyage Scene (5/5) | Movieclips
    2:42

    Die Hard 2 (1990) - Bon Voyage Scene (5/5) | Movieclips

    • Order:
    • Duration: 2:42
    • Uploaded Date: 19 Jun 2015
    • views: 1572714
    Die Hard 2 movie clips: http://j.mp/1L3RrfE BUY THE MOVIE: FandangoNOW - https://www.fandangonow.com/details/movie/die-hard-2-die-harder-1990/1MVca106c9aa38f053d926d6368c00975c3?cmp=Movieclips_YT_Description iTunes - http://apple.co/1FmrIYZ Google Play - http://bit.ly/1FYBN2Y Amazon - http://amzn.to/1GgVJQH Fox Movies - http://fox.co/2jz2pFs Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: McClane (Bruce Willis) succeeds in taking down the terrorists' plane. FILM DESCRIPTION: "Another basement, another elevator...how can the same thing happen to the same guy twice?" asks John McClane (Bruce Willis), in what is doubtless the key question of this film. A year after foiling the terrorist takeover of a high-rise office building in the first movie, McClane is waiting to pick up his wife, Holly (Bonnie Bedelia), at Dulles International Airport just outside Washington, D.C., on Christmas Eve. Scheduled to arrive the same evening is Ramon Esperanza (Franco Nero), a South American political figure who is being brought to the United States to stand trial for his role in a drug-smuggling ring. However, a group of terrorists, led by renegade American military officer Col. Stuart (William Sadler), take control of the airport, scuttling radio transmissions and placing their own men in the control tower. Stuart and his men ensure that Esperanza's plane lands safely, and then demand that Stuart and his men be given a fully-fueled 747 and free passage wherever they choose to go. Otherwise, they will guide the many circling jets waiting for landing instructions into definite crash landings, killing the many passengers on board. Not willing to stand aside as terrorists once again threaten his wife's life, the wise-cracking McClane once again leaps into action to foil Stuart's plans and bring the passenger jets safely to the ground. William Atherton, John Amos, Dennis Franz, and John Leguizamo highlight the supporting cast. CREDITS: TM & © Fox (1990) Courtesy of Twentieth Century Fox Film Corporation Cast: Franco Nero, Bruce Willis, William Sadler Director: Renny Harlin Producers: Lloyd Levin, James Herbert, Michael Levy, Joel Silver, Lawrence Gordon, Steve Perry, Suzanne Todd, Charles Gordon Screenwriters: Steven E. de Souza, Doug Richardson, Walter Wager 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/Die_Hard_2_(1990)_Bon_Voyage_Scene_(5_5)_|_Movieclips
    Die Hard 2 (1990) Trailer #1 | Movieclips Classic Trailers
    2:49

    Die Hard 2 (1990) Trailer #1 | Movieclips Classic Trailers

    • Order:
    • Duration: 2:49
    • Uploaded Date: 04 Dec 2020
    • views: 353278
    Check out the official Die Hard 2 (1990) trailer starring Bruce Willis! Let us know what you think in the comments below. ► Watch on FandangoNOW: https://www.fandangonow.com/details/movie/die-hard-2-1990/1MVca106c9aa38f053d926d6368c00975c3?&cmp=MCYT_YouTube_Desc Subscribe to the channel and click the bell icon to stay up to date on all your favorite movies. Starring: Bruce Willis, John Amos, William Atherton, Bonnie Bedelia Directed By: Renny Harlin Synopsis: A year after his heroics in L.A, detective John McClane (Bruce Willis) is mixed up in another terrorist plot, this time at Washington Dulles International Airport, where he is waiting for his wife (Bonnie Bedelia). That same night, South American politico and drug profiteer Ramon Esperanza (Franco Nero) is arriving in U.S. custody. McClane takes action when a treasonous ex-colonel (William Sadler) seizes control of the airport, threatening to crash every inbound flight unless Esperanza is freed. Watch More Classic Trailers: ► Dramas: http://bit.ly/2tefVm2 ► War Movies: http://bit.ly/2qX4u18 ► Trailers By Year: http://bit.ly/2qTCxHF Fuel Your Movie Obsession: ► Subscribe to CLASSIC TRAILERS: http://bit.ly/2D01HJi ► Watch Movieclips ORIGINALS: http://bit.ly/2D3sipV ► Like us on FACEBOOK: http://bit.ly/2DikvkY ► Follow us on TWITTER: http://bit.ly/2mgkaHb ► Follow us on INSTAGRAM: http://bit.ly/2mg0VNU Subscribe to the Fandango MOVIECLIPS CLASSIC TRAILERS channel to rediscover all your favorite movie trailers and find a classic you may have missed.
    https://wn.com/Die_Hard_2_(1990)_Trailer_1_|_Movieclips_Classic_Trailers
    Die Hart 2: Die Harter - Official Trailer | Prime Video
    2:24

    Die Hart 2: Die Harter - Official Trailer | Prime Video

    • Order:
    • Duration: 2:24
    • Uploaded Date: 16 May 2024
    • views: 1052032
    In this sequel, Kevin Hart, now the world’s biggest action star, finds himself the victim of an evil revenge plot and must enlist the help of his favorite co-star and his over-eager assistant if he wants to survive. » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB X: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/primevideoIG Die Hart 2: Die Harter - Official Trailer | Prime Video https://youtu.be/zCjBWYbP_wQ Prime Video https://www.youtube.com/PrimeVideo #DieHart2 #DieHarter #OfficialTrailer #PrimeVideo
    https://wn.com/Die_Hart_2_Die_Harter_Official_Trailer_|_Prime_Video
    DIE HARD 2 "Gun Fight" (1990) Bruce Willis
    5:31

    DIE HARD 2 "Gun Fight" (1990) Bruce Willis

    • Order:
    • Duration: 5:31
    • Uploaded Date: 18 Apr 2022
    • views: 362945
    DIE HARD 2 "Gun Fight" (1990) Bruce Willis PLOT: John McClane attempts to avert disaster as rogue military operatives seize control of Dulles International Airport in Washington, D.C. CAST: Bruce Willis, William Atherton, Bonnie Bedelia Buy the film here! https://www.amazon.com/exec/obidos/ASIN/B00AGDX2F6/joblosmovieempor/ SUBSCRIBE for more all the latest Movie Clips here: https://bit.ly/31ByDAf JOBLO YOUTUBE NETWORK: ► MOVIE TRAILERS: https://bit.ly/3rVdsq8 ► MOVIE CLIPS: https://bit.ly/3k355GA ► STREAMING/TV TRAILERS: https://bit.ly/37ifDMz ► HORROR TRAILERS: https://bit.ly/3qsPxyc ► ANIMATED VIDEOS: https://bit.ly/3pqYiaJ ► SUPERHEROES: https://bit.ly/37nXgGd ► JOBLO VIDEOS: https://bit.ly/2Zp4WDG ► JOBLO HORROR VIDEOS: https://bit.ly/3bd7Voj ► CELEBRITY INTERVIEWS: https://bit.ly/3dk7ISN ► PARANORMAL NETWORK: https://bit.ly/2NvY58P SUPPORT OUR CHANNEL - PURCHASE VIA OUR LINKS BELOW: ► AMAZON BEST SELLING MOVIES: https://amzn.to/3jWER8t ► MOST POPULAR POSTERS: https://bit.ly/3s4sTfJ JOBLO MOVIE NEWS AND REVIEWS: ► http://www.joblo.com/ JOBLO ON SOCIAL MEDIA: ► JOBLO MOVIE NEWS (FACEBOOK): https://bit.ly/3bbIFPf ► JOBLO MOVIE TRAILERS (FACEBOOK): https://bit.ly/3dl9NxS ► HORROR MOVIE TRAILERS (FACEBOOK): https://bit.ly/3jTWZzX ► ARROW IN THE HEAD HORROR NEWS (FACEBOOK): https://bit.ly/3aqQ2D8 #DieHard #BruceWillis
    https://wn.com/Die_Hard_2_Gun_Fight_(1990)_Bruce_Willis
    Die hard 2: Die harder  Blanks scene
    1:08

    Die hard 2: Die harder Blanks scene

    • Order:
    • Duration: 1:08
    • Uploaded Date: 07 Aug 2021
    • views: 81141
    https://wn.com/Die_Hard_2_Die_Harder_Blanks_Scene
    DIE HARD 2 Clip  - "Ambush" (1990) Bruce Willis
    6:43

    DIE HARD 2 Clip - "Ambush" (1990) Bruce Willis

    • Order:
    • Duration: 6:43
    • Uploaded Date: 03 May 2022
    • views: 413265
    DIE HARD 2 Clip - "Ambush" (1990) Bruce Willis PLOT: John McClane attempts to avert disaster as rogue military operatives seize control of Dulles International Airport in Washington, D.C. CAST: Bruce Willis, William Atherton, Bonnie Bedelia Buy the film here! https://www.amazon.com/exec/obidos/ASIN/B00AGDX2F6/joblosmovieempor/ SUBSCRIBE for more all the latest Movie Clips here: https://bit.ly/31ByDAf #DieHard #BruceWillis
    https://wn.com/Die_Hard_2_Clip_Ambush_(1990)_Bruce_Willis
    Die Hard 2 (1990) - Enough Friends Scene (4/5) | Movieclips
    2:42

    Die Hard 2 (1990) - Enough Friends Scene (4/5) | Movieclips

    • Order:
    • Duration: 2:42
    • Uploaded Date: 19 Jun 2015
    • views: 180177
    Die Hard 2 movie clips: http://j.mp/1L3RrfE BUY THE MOVIE: FandangoNOW - https://www.fandangonow.com/details/movie/die-hard-2-die-harder-1990/1MVca106c9aa38f053d926d6368c00975c3?cmp=Movieclips_YT_Description iTunes - http://apple.co/1FmrIYZ Google Play - http://bit.ly/1FYBN2Y Amazon - http://amzn.to/1GgVJQH Fox Movies - http://fox.co/2jz2pFs Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: McClane (Bruce Willis) fights Major Grant (John Amos) on the wing of the escaping plane. FILM DESCRIPTION: "Another basement, another elevator...how can the same thing happen to the same guy twice?" asks John McClane (Bruce Willis), in what is doubtless the key question of this film. A year after foiling the terrorist takeover of a high-rise office building in the first movie, McClane is waiting to pick up his wife, Holly (Bonnie Bedelia), at Dulles International Airport just outside Washington, D.C., on Christmas Eve. Scheduled to arrive the same evening is Ramon Esperanza (Franco Nero), a South American political figure who is being brought to the United States to stand trial for his role in a drug-smuggling ring. However, a group of terrorists, led by renegade American military officer Col. Stuart (William Sadler), take control of the airport, scuttling radio transmissions and placing their own men in the control tower. Stuart and his men ensure that Esperanza's plane lands safely, and then demand that Stuart and his men be given a fully-fueled 747 and free passage wherever they choose to go. Otherwise, they will guide the many circling jets waiting for landing instructions into definite crash landings, killing the many passengers on board. Not willing to stand aside as terrorists once again threaten his wife's life, the wise-cracking McClane once again leaps into action to foil Stuart's plans and bring the passenger jets safely to the ground. William Atherton, John Amos, Dennis Franz, and John Leguizamo highlight the supporting cast. CREDITS: TM & © Fox (1990) Courtesy of Twentieth Century Fox Film Corporation Cast: Franco Nero, John Amos, Bruce Willis, William Sadler Director: Renny Harlin Producers: Lloyd Levin, James Herbert, Michael Levy, Joel Silver, Lawrence Gordon, Steve Perry, Suzanne Todd, Charles Gordon Screenwriters: Steven E. de Souza, Doug Richardson, Walter Wager 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/Die_Hard_2_(1990)_Enough_Friends_Scene_(4_5)_|_Movieclips
    DIE HARD 2 TRAILER
    2:43

    DIE HARD 2 TRAILER

    • Order:
    • Duration: 2:43
    • Uploaded Date: 19 Jun 2009
    • views: 944816
    DIE HARD 2 TRAILER
    https://wn.com/Die_Hard_2_Trailer
    Opening to Die Hard 2: Die Harder (US Laserdisc, 1995) (High Quality)
    1:52

    Opening to Die Hard 2: Die Harder (US Laserdisc, 1995) (High Quality)

    • Order:
    • Duration: 1:52
    • Uploaded Date: 02 Aug 2024
    • views: 24
    https://wn.com/Opening_To_Die_Hard_2_Die_Harder_(Us_Laserdisc,_1995)_(High_Quality)
    Die Hart 2: Die Harter - Official Trailer | Prime Video India
    2:22

    Die Hart 2: Die Harter - Official Trailer | Prime Video India

    • Order:
    • Duration: 2:22
    • Uploaded Date: 16 May 2024
    • views: 331019
    In this sequel, Kevin Hart, now the world’s biggest action star, finds himself the victim of an evil revenge plot and must enlist the help of his favorite co-star and his over-eager assistant if he wants to survive. About Prime Video: Prime Video is a premium streaming service that offers Prime members a collection of award-winning Amazon Original series, thousands of movies & TV shows—all with the ease of finding what they love to watch in one place. Prime Video is just one of the many benefits of a Prime membership, available for just ₹1499/ year. Included with Prime Video: Thousands of acclaimed TV shows & movies across languages & geographies, including Indian films such as Shershaah, Soorarai Pottru, Sardar Udham, Gehraiyaan, Jai Bhim, Jalsa, Shakuntala Devi, Sherni, Narappa, Sarpatta Parambarai, Kuruthi, Joji, Malik, and HOME, along with Indian-produced Amazon Original series like Farzi, Jubilee, Dahaad, The Family Man, Mirzapur, Made in Heaven, Four More Shots Please!, Mumbai Diaries 26/11, Suzhal – The Vortex, Modern Love, Paatal Lok, Bandish Bandits, Guilty Minds, Cinema Marte Dum Tak, and Amazon Original movies like Maja Ma & Ammu. Also included are popular global Amazon Originals like Citadel, The Lord of The Rings: The Rings of Power, Reacher, Tom Clancy's Jack Ryan, The Boys, Hunters, Fleabag, The Marvelous Mrs. Maisel, & many more, available for unlimited streaming as part of a Prime membership. Prime Video includes content across Hindi, Marathi, Gujarati, Tamil, Telugu, Kannada, Malayalam, Punjabi, & Bengali. Prime Video Mobile Edition: Consumers can also enjoy Prime Video’s exclusive content library with Prime Video Mobile Edition at ₹599 per year. This single-user, mobile-only annual video plan offers everyone access to high-quality entertainment exclusively on their mobile devices. Users can sign-up for this plan via the Prime Video app (on Android) or website. Instant Access: Prime Members can watch anywhere, anytime on the Prime Video app for smart TVs, mobile devices, Fire TV, Fire TV stick, Fire tablets, Apple TV, & multiple gaming devices. Prime Video is also available to consumers through Airtel and Vodafone pre-paid & post-paid subscription plans. In the Prime Video app, Prime members can download episodes on their mobile devices & tablets & watch anywhere offline at no additional cost. Enhanced experiences: Make the most of every viewing with 4K Ultra HD- & High Dynamic Range (HDR)-compatible content. Go behind the scenes of your favourite movies & TV shows with exclusive X-Ray access, powered by IMDb. Save it for later with select mobile downloads for offline viewing. Video Entertainment Marketplace: In addition to a Prime Video subscription, customers can also purchase add-on subscriptions to other streaming services, as well as, get rental access to movies on Prime Video. Prime Video Channels: Prime Video Channels offers friction-free & convenient access to a wide range of premium content from multiple video streaming services all available at a single destination – Prime Video website & apps. Prime Members can buy add-on subscriptions & enjoy a hassle-free entertainment experience, simplified discovery, frictionless payments, & more. Rent: Consumers can enjoy even more movies from new releases to classic favourites, available to rent – no Prime membership required. View titles available by visiting primevideo.com/store. The rental destination can be accessed via the STORE tab on primevideo.com & the Prime Video app on Android smart phones, smart-TVs, connected STBs, & Fire TV stick. #DieHart2 #DieHarter #primevideoindia
    https://wn.com/Die_Hart_2_Die_Harter_Official_Trailer_|_Prime_Video_India
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Die Hard 2 (1990) - Bon Voyage Scene (5/5) | Movieclips
      2:42
      Die Hard 2 (1990) - Bon Voyage Scene (5/5) | Movieclipsremove from playlist
    • Die Hard 2 (1990) Trailer #1 | Movieclips Classic Trailers
      2:49
      Die Hard 2 (1990) Trailer #1 | Movieclips Classic Trailersremove from playlist
    • Die Hart 2: Die Harter - Official Trailer | Prime Video
      2:24
      Die Hart 2: Die Harter - Official Trailer | Prime Videoremove from playlist
    • DIE HARD 2
      5:31
      DIE HARD 2 "Gun Fight" (1990) Bruce Willisremove from playlist
    • DIE HARD 2 Clip  -
      6:43
      DIE HARD 2 Clip - "Ambush" (1990) Bruce Willisremove from playlist
    • Die Hard 2 (1990) - Enough Friends Scene (4/5) | Movieclips
      2:42
      Die Hard 2 (1990) - Enough Friends Scene (4/5) | Movieclipsremove from playlist
    • Die Hart 2: Die Harter - Official Trailer | Prime Video India
      2:22
      Die Hart 2: Die Harter - Official Trailer | Prime Video Indiaremove from playlist
    PLAYLIST TIME: 0:00 / 30:56

    Die Hard 2 (1990) - Bon Voyage Scene (5/5) | Movieclips

    Die Hard 2 movie clips: http://j.mp/1L3RrfE BUY THE MOVIE: FandangoNOW - https://www.fandangonow.com/details/movie/die-hard-2-die-harder-1990/1MVca106c9aa38f053d926d6368c00975c3?cmp=Movieclips_YT_Description iTunes - http://apple.co/1FmrIYZ Google Play - http://bit.ly/1FYBN2Y Amazon - http://amzn.to/1GgVJQH Fox Movies - http://fox.co/2jz2pFs Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: McClane (Bruce Willis) succeeds in taking down the terrorists' plane. FILM DESCRIPTION: "Another basement, another elevator...how can the same thing happen to the same guy twice?" asks John McClane (Bruce Willis), in what is doubtless the key question of this film. A year after foiling the terrorist takeover of a high-rise office building in the first movie, McClane is waiting to pick up his wife, Holly (Bonnie Bedelia), at Dulles International Airport just outside Washington, D.C., on Christmas Eve. Scheduled to arrive the same evening is Ramon Esperanza (Franco Nero), a South American political figure who is being brought to the United States to stand trial for his role in a drug-smuggling ring. However, a group of terrorists, led by renegade American military officer Col. Stuart (William Sadler), take control of the airport, scuttling radio transmissions and placing their own men in the control tower. Stuart and his men ensure that Esperanza's plane lands safely, and then demand that Stuart and his men be given a fully-fueled 747 and free passage wherever they choose to go. Otherwise, they will guide the many circling jets waiting for landing instructions into definite crash landings, killing the many passengers on board. Not willing to stand aside as terrorists once again threaten his wife's life, the wise-cracking McClane once again leaps into action to foil Stuart's plans and bring the passenger jets safely to the ground. William Atherton, John Amos, Dennis Franz, and John Leguizamo highlight the supporting cast. CREDITS: TM & © Fox (1990) Courtesy of Twentieth Century Fox Film Corporation Cast: Franco Nero, Bruce Willis, William Sadler Director: Renny Harlin Producers: Lloyd Levin, James Herbert, Michael Levy, Joel Silver, Lawrence Gordon, Steve Perry, Suzanne Todd, Charles Gordon Screenwriters: Steven E. de Souza, Doug Richardson, Walter Wager 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:42
    Die Hard 2 (1990) - Bon Voyage Scene (5/5) | Movieclips
    Die Hard 2 movie clips: http://j.mp/1L3RrfE BUY THE MOVIE: FandangoNOW - https://www.fanda...
    published: 19 Jun 2015
    Play in Full Screen
    2:49
    Die Hard 2 (1990) Trailer #1 | Movieclips Classic Trailers
    Check out the official Die Hard 2 (1990) trailer starring Bruce Willis! Let us know what y...
    published: 04 Dec 2020
    Play in Full Screen
    2:24
    Die Hart 2: Die Harter - Official Trailer | Prime Video
    In this sequel, Kevin Hart, now the world’s biggest action star, finds himself the victim ...
    published: 16 May 2024
    Play in Full Screen
    5:31
    DIE HARD 2 "Gun Fight" (1990) Bruce Willis
    DIE HARD 2 "Gun Fight" (1990) Bruce Willis PLOT: John McClane attempts to avert disaster ...
    published: 18 Apr 2022
    Play in Full Screen
    1:08
    Die hard 2: Die harder Blanks scene
    published: 07 Aug 2021
    Play in Full Screen
    6:43
    DIE HARD 2 Clip - "Ambush" (1990) Bruce Willis
    DIE HARD 2 Clip - "Ambush" (1990) Bruce Willis PLOT: John McClane attempts to avert dis...
    published: 03 May 2022
    Play in Full Screen
    2:42
    Die Hard 2 (1990) - Enough Friends Scene (4/5) | Movieclips
    Die Hard 2 movie clips: http://j.mp/1L3RrfE BUY THE MOVIE: FandangoNOW - https://www.fanda...
    published: 19 Jun 2015
    Play in Full Screen
    2:43
    DIE HARD 2 TRAILER
    DIE HARD 2 TRAILER
    published: 19 Jun 2009
    Play in Full Screen
    1:52
    Opening to Die Hard 2: Die Harder (US Laserdisc, 1995) (High Quality)
    published: 02 Aug 2024
    Play in Full Screen
    2:22
    Die Hart 2: Die Harter - Official Trailer | Prime Video India
    In this sequel, Kevin Hart, now the world’s biggest action star, finds himself the victim ...
    published: 16 May 2024
    Play in Full Screen

    Die Hard 2

    Die Hard 2 (sometimes referred to as Die Hard 2: Die Harder) is a 1990 American action film and the second in the Die Hard film series. It was released on July 4, 1990. The film was directed by Renny Harlin, and stars Bruce Willis as John McClane. The film co-stars Bonnie Bedelia (reprising her role as Holly McClane), William Sadler, Art Evans, William Atherton (reprising his role as Richard "Dick" Thornburg), Franco Nero, Dennis Franz, Fred Thompson, John Amos, and Reginald VelJohnson, returning briefly in his role as Sgt. Al Powell from the first film.

    The screenplay was written by Steven E. de Souza and Doug Richardson, adapted from Walter Wager's novel 58 Minutes. The novel has the same premise but differs slightly: A cop must stop terrorists who take an airport hostage while his wife's plane circles overhead. He has 58 minutes to do so before the plane crashes. Roderick Thorp, who wrote the novel Nothing Lasts Forever, upon which Die Hard was based, receives credit for creating "certain original characters", although his name is misspelled onscreen as "Roderick Thorpe".

    '); } 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: die hard 2

    Edit

    Smokies players said it felt like 'the big leagues' walking into new downtown stadium

    Knox News 03 Apr 2025
    Knoxville Smokies baseball introduces new mascots ... This is the nicest venue they have ever played in ... Shattered ... Knoxville is a die-hard sports town and, more recently, a die-hard baseball town after Tennessee won the College World Series last season ... .
    Edit

    Grealish dedicates Man City goal to late brother

    Yahoo Daily News 03 Apr 2025
    It came on the 25th anniversary of the death of his younger brother Keelan, who died at the age of just nine months. "This day is always hard in the family, but I was happy to score," Grealish said. "My mum and dad were here ... smg/rcw. .
    Edit

    Alex Ovechkin family tree: Everything to know about wife, sons, parents of Capitals star

    Sportingnews 02 Apr 2025
    Before Mikhail Ovechkin died in February 2023, he would often support his son's hockey career by traveling from Russia ... Sergei Ovechkin died of a blood clot following a car accident when Alex was 10 ... "It was hard, I was crying ... It was a hard time.".
    Edit

    Bill Murray details ‘insane’ chore young Bruce Willis had on ‘SNL’ before big break — ...

    New York Post 02 Apr 2025
    During an appearance on “Watch What Happens Live” Monday, Murray recalled a time when the “Die Hard” actor worked behind the scenes of the NBC sketch comedy series.
    Edit

    NHS staff are still traumatised by the pandemic

    New Statesman 02 Apr 2025
    Between March 2020 and May 2023, when the World Health Organisation declared an end to the state of global health emergency, nearly 227,000 people had died in the UK with Covid-19 certified as a cause of death.
    Edit

    Yankees’ opening series bucked MLB lineup tradition — here’s why it worked

    New York Post 02 Apr 2025
    Access the Yankees beat like never before ... Sign Up Now ... Tradition dies hard in this game. Which brings us to a catcher hitting leadoff. Or a 37-year-old first baseman ....
    Edit

    Longtime area coach Bill Dunkle dies at age 66

    Cascade Business News 02 Apr 2025
    Bill Dunkle, one of the most decorated coaches in West Geauga history, has died at the age of 66 ... One of the parents collapsed with a heart attack after a morning run and died. Dunkle’s compassion during that hard time, Siegler said, stood out.
    Edit

    Join Brockton High's blood drive April 4: Support sickle cell awareness, senior scholarships

    The Enterprise - Brockton 02 Apr 2025
    "Rest assured, that these students have such big hearts, that they are working just as hard for sickle cell as they are for the scholarships." ... The sickle cells die early, which causes a constant shortage of red blood cells.
    Edit

    Daywatch: Who won and who lost in last night’s elections

    Chicago Tribune 02 Apr 2025
    “We fought hard ... (AP Photo/Mark Humphrey) Val Kilmer, film star who played Batman and Jim Morrison, dies at 65 ... Kim/Chicago Tribune) George Freeman, a trailblazing jazz guitarist who enjoyed a late-career renaissance, dies at 97.
    Edit

    Mother who shook her four-month-old daughter to death faces years in prison after being convicted ...

    The Daily Mail 02 Apr 2025
    Bristol Crown Court heard tests revealed how Lexi died following bleeding on her brain, likely caused by being violently shaken, both recently and on at least one earlier occasion ... You have worked very hard throughout this case.'.
    Edit

    Bill Murray Gets Nostalgic Over ‘Good Friend’ Bruce Willis Amid Actor’s Dementia Diagnosis

    Knoxville Daily Sun 02 Apr 2025
    The actors worked together on 2012’s Moonrise Kingdom but also know each other from Murray’s time on Saturday Night Live in the late 1970s ... “He just had a birthday ... She also revealed in a February interview that she visits the Die Hard star every week.
    Edit

    How Does Anthony Hopkins Play A Villainous Role Like Hannibal Lecter? The Actor's Simple Advice Makes So Much Sense

    Cinema Blend 02 Apr 2025
    The hero of a movie is the one who gets all the glory, but many actors claim to prefer playing the villain ... He said…. If you're playing a villain, play the opposite ... Official Trailer ... Alan Rickman’s Hans Gruber in Die Hard is very pleasant.
    Edit

    South Korea mobilising 'all resources' for violence-free Yoon verdict

    Urdu Point 02 Apr 2025
    <p>Seoul, (APP - UrduPoint / Pakistan Point News - 2nd Apr, 2025) South Korean police will mobilise "all available resources" to prevent violence when a court rules Friday on the fate ...
    Edit

    A Minecraft Movie Review: Jack Black Stars in Terrible Movie

    Coming Soon 02 Apr 2025
    But while the film might be a colorful, action-packed spectacle for young kids and die-hard Minecraft fans, anyone hoping for a well-crafted adventure will be left digging for something—anything—of substance.
    ×