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

Podcasts:

  • How A Nuclear War Will Start - Minute by Minute

    This video was made possible through a grant by Open Philanthropy. Sources & further reading: https://sites.google.com/view/sources-mr-president/ Join us over on Discord to discuss and share your thoughts: https://kgs.link/Discord Mr. President! Nuclear missiles will strike our country in 14 minutes. I know it’s your first day in office so I’m going to walk you through it, but you’re the only one who can authorize our nuclear retaliation in response and you’ve only got a few minutes to make a decision! OUR CHANNELS ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ German: https://kgs.link/youtubeDE Spanish: https://kgs.link/youtubeES French: https://kgs.link/youtubeFR Portuguese: https://kgs.link/youtubePT Arabic: https://kgs.link/youtubeAR Hindi: https://kgs.lin...

    published: 22 Aug 2023
  • How would a nuclear war between Russia and the US affect you personally?

    What would happen if a nuclear war were to be sparked between Russia and the United States today? Who would survive? In our most scientifically realistic simulation to date, we show what a nuclear war between Russia and the United States might look like today. It is based on detailed modeling of nuclear targets, missile trajectories, and the effects of blasts, EMPs, and smoke on the climate and food resources. We have just announced the results of our latest grant program focused on the humanitarian impacts of nuclear war – see the list of projects here: https://futureoflife.org/grant-program/nuclear-war-research/ Learn more about the risks posed by nuclear weapons and find out how you can take action to reduce the risks here: https://nuclearweapons.info/ Discover the full story of Nuc...

    published: 29 Jun 2023
  • Nuclear War AI Simulation - Russia vs NATO

    "World War 3 (Hour by Hour) According to a survey prepared by the FAS and NRDC, there are approximately 23,300 nuclear weapons in the world stored at some 111 sites in 14 countries. stage exchange of strikes lead - 3 hours, casualties - 2.6 million After it started, and As the nuclear threshold is crossed, the fighting escalates into a tactical nuclear war in Europe. Russia sends 300 nuclear warheads using aircraft and short-range missiles to hit NATO bases and advancing troops. NATO responds with about 180 nuclear warheads from aircraft. nuclear war part one - 45 minutes - 3.4 million casualties When Europe is destroyed, NATO launches a strategic nuclear strike of 600 warheads of U.S. land and submarine missiles aimed at Russian nuclear forces. Before it loses its weapons syst...

    published: 03 May 2023
  • Nuclear Warfare - Hoi4 MP In A Nutshell

    Hearts of Iron 4 MP in a nutshell (Hearts of iron 4 multiplayer) Episode 281 Mods: TFB Music: Hearts of Iron 4 Theme Twitch: https://www.twitch.tv/bokoen Patreon: https://www.patreon.com/bokoen1 My Discord: https://discord.gg/w4JmJNR Twitter: https://twitter.com/bokoen1 #Heartsofiron4 #Memes #History

    published: 27 Mar 2023
  • How Would the United States Fight a Nuclear War?

    Go to https://get.atlasvpn.com/ModernMuscle to get a 3-year plan for just $1.83 a month. It’s risk free with Atlas’s 30 day money back guarantee! Today we’re going explore the unthinkable: How would the United States respond during a Nuclear conflict? When we first came up with this concept, we aimed to cover the America's Nuclear Triad and it's Russian Nuclear War Plan in one concise video, but one video turned into three. So here's full version of "How Would the United States Fight a Nuclear War?" as it was originally intended. Enjoy! Sources: Probable Nuclear Targets in United Kingdom, 1972: https://robedwards.typepad.com/files/probable-nuclear-targets-1972-national-archives.pdf Probable Nuclear Targets in France: https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/NATO_AB_i...

    published: 16 Jul 2023
  • What If USA Launched a Nuclear Bomb (Minute by Minute)

    The President of the United States of America makes the call and within a few moments a nuclear warhead has been launched into the sky, roaring towards its target about to deliver a payload of 1.2 megatonnes -- there is no going back! Check out today's epic new video exploring what would happen if the US launched a nuclear strike minute by minute! 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https://pastebin.com/3LTfkvLY All videos ...

    published: 13 May 2023
  • Threat of Nuclear Armageddon Has Never Been Bigger | WHILE THE REST OF US DIE

    The number one threat facing humanity right now is not climate change... it's nuclear weapons. When disaster strikes, the elites are saved while normal people die – because that's how they prefer it. WHILE THE REST OF US DIE unveils the secret history of the U.S. government's Doomsday plans from the Cold War to COVID-19, suggesting that it may be time to reconsider everything. Watch more on VICE TV: America Tested Nuclear Weapons on Itself https://www.youtube.com/watch?v=mz7Kw6BH15A Mega Rich People Pay Less Tax Than You https://www.youtube.com/watch?v=-2hl7ELs1CA The True Story of 9/11 https://www.youtube.com/watch?v=vEa4MpZnyGA Subscribe Now: https://vice.video/SUBSCRIBE-TO-VICETV #Nuclearwar #WhileTheRestOfUsDie Chapters 0:00 Number One Threat 1:14 Money and Politics 1:50 13...

    published: 12 Oct 2023
  • What Would a Nuclear Strike Inside the U.S. Look Like?

    The U.S. is quietly beginning an ambitious, controversial reinvention of its nuclear arsenal. The project comes with incalculable costs and unfathomable risks.

    published: 14 Nov 2023
  • US rebuilding airfields used to launch nuclear attacks on Japan

    The United States Air Force is rebuilding the airfield used to launch the nuclear attacks on Japan during World War II, reclaiming Tinian Island’s north field from the jungle — just in case it’s needed in a war with China. Diplomatic efforts to prevent a conflict notwithstanding, the U.S. and China are on a path to potential military conflict, either because of China’s stance on reunification with Taiwan or because it has a habit of claiming international waters as its own. If, or when, a conflict happens, the U.S. wants as many places to launch and land planes in the Pacific as possible. The effort is known as Agile Combat Employment (ACE). Under ACE, the U.S. strengthened alliances, forged new ones and is revitalizing infrastructure that hadn’t seen heavy use since 1947. Full story: h...

    published: 28 Dec 2023
  • Are We on The Verge of Nuclear War?

    Instagram: .https://www.instagram.com/rudyardwlynch Twitter:https://twitter.com/whatifalthist?ref... Patreon, First 200 pages of cultural history of America and 400 of history of the new world alongside exclusive maps:https://www.patreon.com › whatifalthist Check out Pearl:https://pearl.link/whatifalthist

    published: 02 Jun 2023
How A Nuclear War Will Start - Minute by Minute
8:54

How A Nuclear War Will Start - Minute by Minute

  • Order:
  • Duration: 8:54
  • Uploaded Date: 22 Aug 2023
  • views: 9006363
This video was made possible through a grant by Open Philanthropy. Sources & further reading: https://sites.google.com/view/sources-mr-president/ Join us over on Discord to discuss and share your thoughts: https://kgs.link/Discord Mr. President! Nuclear missiles will strike our country in 14 minutes. I know it’s your first day in office so I’m going to walk you through it, but you’re the only one who can authorize our nuclear retaliation in response and you’ve only got a few minutes to make a decision! OUR CHANNELS ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ German: https://kgs.link/youtubeDE Spanish: https://kgs.link/youtubeES French: https://kgs.link/youtubeFR Portuguese: https://kgs.link/youtubePT Arabic: https://kgs.link/youtubeAR Hindi: https://kgs.link/youtubeHI Japanese: https://kgs.link/youtubeJA Korean: https://kgs.link/youtubeKO HOW CAN YOU SUPPORT US? ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ This is how we make our living and it would be a pleasure if you support us! Get Products designed with ❤ https://shop-us.kurzgesagt.org Join the Patreon Bird Army 🐧 https://kgs.link/patreon DISCUSSIONS & SOCIAL MEDIA ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ TikTok: https://kgs.link/tiktok Reddit: https://kgs.link/reddit Instagram: https://kgs.link/instagram Twitter: https://kgs.link/twitter Facebook: https://kgs.link/facebook Discord: https://kgs.link/discord Newsletter: https://kgs.link/newsletter OUR VOICE ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ The Kurzgesagt voice is from Steve Taylor: https://kgs.link/youtube-voice OUR MUSIC ♬♪ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ 700+ minutes of Kurzgesagt Soundtracks by Epic Mountain: Spotify: https://kgs.link/music-spotify Soundcloud: https://kgs.link/music-soundcloud Bandcamp: https://kgs.link/music-bandcamp Youtube: https://kgs.link/music-youtube Facebook: https://kgs.link/music-facebook The Soundtrack of this video: Soundcloud: https://bit.ly/3qwPJBT Bandcamp: https://bit.ly/45EdTsL If you want to help us caption this video, please send subtitles to subtitle@kurzgesagt.org You can find info on what subtitle files work on YouTube here: https://support.google.com/youtube/answer/2734698?hl=en-GB&ref_topic=7296214 Thank you! 🐦🐧🐤 PATREON BIRD ARMY 🐤🐧🐦 ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ Many Thanks to our wonderful Patreons (from http://kgs.link/patreon) who support us every month and made this video possible: Mason & Sophia Green, KEZACO, Mitchell Grenier, Merlin, Sage, Morry Kolman, Riomura_Dev, Nidhoegger, Julian Nowak, Rayyrawr, Arthur Robillard, Christian, Raphael Seffers, Sim Slim, David Manzanarez, cicero4, Domenic Rigling, AlZe, Jonas Brodesser, Peter Roth, Tobias, Nuno Serén, Adam W, David Bank, Charles Brown, Winston White, Dustin Davis, Hassan Taher, Eduardo Omerović C., Juan Arturo Drew P., Glacier, marin, Jae Darl, Scott & Sora, Andoriol, Piero Acevedo, Isimo, West Stringfellow, Driaon, Simon Goller, Tom Bonarewitz, Amelie Büttner, Ma. Jimena, Kury Sama, Marco Grotemeyer, Bao Truong, Chrispy, Nigggo, Sivarama Pokala, jonas meinberg, Cheese, David Walsh, Jan, Philipp Laube, Sinje Brandt, Lit, Paul, Junipal Witt, Rhodii Rodiles, Jamarr Mays, Andre Vianna, Flemming H., Nick Elvis, Snake4you, Midokin, Mario Tutzer, MetroTM, CheezeNuggies, Mäddin, Nils Scholz, Samsa, Kaine Shadory, TNT TV Gaming, Kevin Kaufmann, Florian Arndt
https://wn.com/How_A_Nuclear_War_Will_Start_Minute_By_Minute
How would a nuclear war between Russia and the US affect you personally?
4:09

How would a nuclear war between Russia and the US affect you personally?

  • Order:
  • Duration: 4:09
  • Uploaded Date: 29 Jun 2023
  • views: 4422217
What would happen if a nuclear war were to be sparked between Russia and the United States today? Who would survive? In our most scientifically realistic simulation to date, we show what a nuclear war between Russia and the United States might look like today. It is based on detailed modeling of nuclear targets, missile trajectories, and the effects of blasts, EMPs, and smoke on the climate and food resources. We have just announced the results of our latest grant program focused on the humanitarian impacts of nuclear war – see the list of projects here: https://futureoflife.org/grant-program/nuclear-war-research/ Learn more about the risks posed by nuclear weapons and find out how you can take action to reduce the risks here: https://nuclearweapons.info/ Discover the full story of Nuclear Winter: https://www.youtube.com/watch?v=EuzH43J0mrY The 2022 Future of Life Award was given to 8 individuals for their contributions to the discovery of and raising awareness for Nuclear Winter. Learn about their stories: https://www.youtube.com/watch?v=gEwNWBnlhlw See also: Union of Concerned Scientists: https://www.ucsusa.org/nuclear-weapons The International Campaign to Abolish Nuclear Weapons (ICAN): https://www.icanw.org/ Copyright 2023 Future of Life Institute, Creative Commons Attribution-ShareAlike (CC BY-SA) 4.0 international license. - BIBLIOGRAPHY - Here are the resources used in the video. These papers and data sources present the most cutting-edge science we have on nuclear war and its effects: Nuclear arsenal data: Hans Kristensen (Federation of American Scientists); The video shows 3,641 of 11,133 US and Russian warheads used, and none from the UK, France, China, India, Pakistan, China, Israel or North Korea. Nuclear target model: Prof. Sharon Weiner (American University) & Dr. Moritz Kütt (IFSH Hamburg) Ballistic missile trajectories calculations: Prof. Anthony Aguirre (UCSC) & Prof. Tegmark (MIT); In reality, MIRVs of course separate only long after launch. Electromagnetic pulse modeling: U.S. Army unclassified report AD-A178230 (1994) Blast modeling: Prof. Alex Wellerstein, Stevens Inst. of Technology, https:/www.nukemap.org Samuel Glasstone and Philip J. Dolan: "The Effects of Nuclear Weapons", published by U.S. Dept. of Defense & Dept. of Energy; Although the video mainly shows ground bursts to simplify visualization, most urban strikes are likely to instead be airbursts to destroy a greater area. Atmospheric modeling of global smoke spread and lofting: Dr. Charles G. Bardeen (National Center for Atmospheric Research) assuming 150 megatons of black carbon smoke Smoke modeling methodology: Joshua Coupe, Charles G. Bardeen, Alan Robock & Owen B. Toon 2019, J. of Geophysical Research: Atmospheres, 124, 8522-8543 Owen B. Toon, Charles G. Bardeen, Alan Robock, Lili Zia, Hans Kristensen, Matthew McKinzie, R. Peterson, Cheryl S. Harrison, Nicole.Lovenduski & Richard P. Turco 2019, Science Advances 5: eaay5478 Nuclear winter temperature modeling:. Alan Robock, Luke Oman & Georgiy L. Stenchikov 2007, J. Of Geophysical Research 112, D13107 Famine modeling: Lili Xia, Alan Robock, Kim Scherrer, Cheryl Harrison, Benjamin Bodirsky, Isabelle Reindl, Jonas Jägermeyr, Charles Bardeen, Owen B. Toon & Ryan Heneghan 2022, Nature Food, 3, 586-596. https://www.nature.com/articles/s43016-022-00573-0
https://wn.com/How_Would_A_Nuclear_War_Between_Russia_And_The_US_Affect_You_Personally
Nuclear War AI Simulation - Russia vs  NATO
3:35

Nuclear War AI Simulation - Russia vs NATO

  • Order:
  • Duration: 3:35
  • Uploaded Date: 03 May 2023
  • views: 1312987
"World War 3 (Hour by Hour) According to a survey prepared by the FAS and NRDC, there are approximately 23,300 nuclear weapons in the world stored at some 111 sites in 14 countries. stage exchange of strikes lead - 3 hours, casualties - 2.6 million After it started, and As the nuclear threshold is crossed, the fighting escalates into a tactical nuclear war in Europe. Russia sends 300 nuclear warheads using aircraft and short-range missiles to hit NATO bases and advancing troops. NATO responds with about 180 nuclear warheads from aircraft. nuclear war part one - 45 minutes - 3.4 million casualties When Europe is destroyed, NATO launches a strategic nuclear strike of 600 warheads of U.S. land and submarine missiles aimed at Russian nuclear forces. Before it loses its weapons systems, Russia fires warning shots, responding with missiles launched from launchers, vehicles, and submarines. nuclear war part two - attack on strategic centers - 45 minute casualties 85.3 million The main purpose of the first nuclear strike is not to kill as many people as possible, but to destroy the very possibility of a retaliatory or second strike. All means of application have priority targets. These are primarily missile launch silos, military installations, large cities, large industrial plants, dams. If the power industry, the military, the government, if the power generation and transmission facilities are destroyed - the state will be destroyed irreversibly. In order to prevent reconstruction of the other side, Russia and NATO are striking at 30 of the most populated cities and economic centers of each other, using 5-10 warheads in each city, depending on the size of the population. As a result of the nuclear exchange, the number of direct casualties, including deaths (34.1 million) and injuries (57.4 million), from the series of nuclear exchanges. Stage 2 nuclear fallout The horror of radioactive fallout lies in its ability to spread radiation over a wide area, affecting people, animals, and the environment. Exposure to high levels of radiation can cause acute radiation sickness, which can lead to symptoms such as nausea, vomiting, diarrhea, and fatigue. In severe cases, radiation sickness can be fatal. 27 million more people will die. Stage 3 nuclear winter and famine The biosphere received such a blow that it is unlikely to recover and return to its original state. The ecosystem of the equatorial zone, which is tuned to almost constant temperatures, will be particularly affected. There, even if forests are not burned, higher forms of life will disappear, apparently, completely or almost completely. According to scientists, about 5 billion people in 2 years may die as a result of a nuclear war between the U.S. and Russia, which confirms the need for global cooperation to prevent it. Let's say no to any war! And it is better to create something new than to destroy ourselves."
https://wn.com/Nuclear_War_Ai_Simulation_Russia_Vs_Nato
Nuclear Warfare - Hoi4 MP In A Nutshell
16:36

Nuclear Warfare - Hoi4 MP In A Nutshell

  • Order:
  • Duration: 16:36
  • Uploaded Date: 27 Mar 2023
  • views: 664431
Hearts of Iron 4 MP in a nutshell (Hearts of iron 4 multiplayer) Episode 281 Mods: TFB Music: Hearts of Iron 4 Theme Twitch: https://www.twitch.tv/bokoen Patreon: https://www.patreon.com/bokoen1 My Discord: https://discord.gg/w4JmJNR Twitter: https://twitter.com/bokoen1 #Heartsofiron4 #Memes #History
https://wn.com/Nuclear_Warfare_Hoi4_Mp_In_A_Nutshell
How Would the United States Fight a Nuclear War?
51:42

How Would the United States Fight a Nuclear War?

  • Order:
  • Duration: 51:42
  • Uploaded Date: 16 Jul 2023
  • views: 3176950
Go to https://get.atlasvpn.com/ModernMuscle to get a 3-year plan for just $1.83 a month. It’s risk free with Atlas’s 30 day money back guarantee! Today we’re going explore the unthinkable: How would the United States respond during a Nuclear conflict? When we first came up with this concept, we aimed to cover the America's Nuclear Triad and it's Russian Nuclear War Plan in one concise video, but one video turned into three. So here's full version of "How Would the United States Fight a Nuclear War?" as it was originally intended. Enjoy! Sources: Probable Nuclear Targets in United Kingdom, 1972: https://robedwards.typepad.com/files/probable-nuclear-targets-1972-national-archives.pdf Probable Nuclear Targets in France: https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/NATO_AB_in_France_map-en.svg/1920px-NATO_AB_in_France_map-en.svg.png Soviet Union Central European Target List, 1979: https://brilliantmaps.com/ww3-europe/ United States Target List, 1956: https://nsarchive2.gwu.edu/nukevault/ebb538-Cold-War-Nuclear-Target-List-Declassified-First-Ever/documents/1st%20city%20list%20complete.pdf Probable United States Counterforce Targets: https://dspace.mit.edu/bitstream/handle/1721.1/139236/Montoya-ngm-sb-nse-2021-thesis.pdf?sequence=1&isAllowed=y US Russian Counterforce Target List: https://www.nrdc.org/sites/default/files/us-nuclear-war-plan-report.pdf
https://wn.com/How_Would_The_United_States_Fight_A_Nuclear_War
What If USA Launched a Nuclear Bomb (Minute by Minute)
18:17

What If USA Launched a Nuclear Bomb (Minute by Minute)

  • Order:
  • Duration: 18:17
  • Uploaded Date: 13 May 2023
  • views: 2661280
The President of the United States of America makes the call and within a few moments a nuclear warhead has been launched into the sky, roaring towards its target about to deliver a payload of 1.2 megatonnes -- there is no going back! Check out today's epic new video exploring what would happen if the US launched a nuclear strike minute by minute! 🔔 SUBSCRIBE TO THE INFOGRAPHICS SHOW ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES TikTok ► https://www.tiktok.com/@theinfographicsshow Discord ► https://discord.gg/theinfoshow Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 Find more interesting stuff on: https://www.theinfographicsshow.com 📝 SOURCES:https://pastebin.com/3LTfkvLY All videos are based on publicly available information unless otherwise noted. Our Secret Weapon for growing on YouTube ➼ https://vidiq.com/theinfoshow/
https://wn.com/What_If_USA_Launched_A_Nuclear_Bomb_(Minute_By_Minute)
Threat of Nuclear Armageddon Has Never Been Bigger | WHILE THE REST OF US DIE
6:52

Threat of Nuclear Armageddon Has Never Been Bigger | WHILE THE REST OF US DIE

  • Order:
  • Duration: 6:52
  • Uploaded Date: 12 Oct 2023
  • views: 99246
The number one threat facing humanity right now is not climate change... it's nuclear weapons. When disaster strikes, the elites are saved while normal people die – because that's how they prefer it. WHILE THE REST OF US DIE unveils the secret history of the U.S. government's Doomsday plans from the Cold War to COVID-19, suggesting that it may be time to reconsider everything. Watch more on VICE TV: America Tested Nuclear Weapons on Itself https://www.youtube.com/watch?v=mz7Kw6BH15A Mega Rich People Pay Less Tax Than You https://www.youtube.com/watch?v=-2hl7ELs1CA The True Story of 9/11 https://www.youtube.com/watch?v=vEa4MpZnyGA Subscribe Now: https://vice.video/SUBSCRIBE-TO-VICETV #Nuclearwar #WhileTheRestOfUsDie Chapters 0:00 Number One Threat 1:14 Money and Politics 1:50 13,000 Weapons 3:00 Atoms for Peace 4:00 A Nuke for a Nuke 4:44 A Civilisation Ending Event 5:20 Hacking Nukes Follow VICE TV: VICETV.com | https://www.vicetv.com VICE Video | https://video.vice.com Facebook | https://www.facebook.com/vicetv Twitter | https://twitter.com/vicetv Instagram | http://instagram.com/vicetv Newsletter | http://bit.ly/1kpnyN6
https://wn.com/Threat_Of_Nuclear_Armageddon_Has_Never_Been_Bigger_|_While_The_Rest_Of_US_Die
What Would a Nuclear Strike Inside the U.S. Look Like?
24:13

What Would a Nuclear Strike Inside the U.S. Look Like?

  • Order:
  • Duration: 24:13
  • Uploaded Date: 14 Nov 2023
  • views: 57220
The U.S. is quietly beginning an ambitious, controversial reinvention of its nuclear arsenal. The project comes with incalculable costs and unfathomable risks.
https://wn.com/What_Would_A_Nuclear_Strike_Inside_The_U.S._Look_Like
US rebuilding airfields used to launch nuclear attacks on Japan
2:41

US rebuilding airfields used to launch nuclear attacks on Japan

  • Order:
  • Duration: 2:41
  • Uploaded Date: 28 Dec 2023
  • views: 617
The United States Air Force is rebuilding the airfield used to launch the nuclear attacks on Japan during World War II, reclaiming Tinian Island’s north field from the jungle — just in case it’s needed in a war with China. Diplomatic efforts to prevent a conflict notwithstanding, the U.S. and China are on a path to potential military conflict, either because of China’s stance on reunification with Taiwan or because it has a habit of claiming international waters as its own. If, or when, a conflict happens, the U.S. wants as many places to launch and land planes in the Pacific as possible. The effort is known as Agile Combat Employment (ACE). Under ACE, the U.S. strengthened alliances, forged new ones and is revitalizing infrastructure that hadn’t seen heavy use since 1947. Full story: https://san.com/cc/us-rebuilding-airfields-used-to-launch-nuclear-attacks-on-japan/ Follow Straight Arrow News on social media: Facebook: https://www.facebook.com/straightarrownews Twitter: https://twitter.com/StraightArrow__ Instagram: https://www.instagram.com/straightarrownews/ TikTok: https://www.tiktok.com/@straightarrownews Threads: https://www.threads.net/@straightarrownews For more SAN content: https://san.com/ Sign up for our weekly newsletters: https://san.com/newsletters/ Download the SAN App! Apple: https://apps.apple.com/us/app/straight-arrow-news/id6449258793 Google Play: https://play.google.com/store/apps/details?id=com.straightarrownews
https://wn.com/US_Rebuilding_Airfields_Used_To_Launch_Nuclear_Attacks_On_Japan
Are We on The Verge of Nuclear War?
23:01

Are We on The Verge of Nuclear War?

  • Order:
  • Duration: 23:01
  • Uploaded Date: 02 Jun 2023
  • views: 270071
Instagram: .https://www.instagram.com/rudyardwlynch Twitter:https://twitter.com/whatifalthist?ref... Patreon, First 200 pages of cultural history of America and 400 of history of the new world alongside exclusive maps:https://www.patreon.com › whatifalthist Check out Pearl:https://pearl.link/whatifalthist
https://wn.com/Are_We_On_The_Verge_Of_Nuclear_War
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How A Nuclear War Will Start - Minute by Minute
    8:54
    How A Nuclear War Will Start - Minute by Minuteremove from playlist
  • How would a nuclear war between Russia and the US affect you personally?
    4:09
    How would a nuclear war between Russia and the US affect you personally?remove from playlist
  • Nuclear War AI Simulation - Russia vs  NATO
    3:35
    Nuclear War AI Simulation - Russia vs NATOremove from playlist
  • Nuclear Warfare - Hoi4 MP In A Nutshell
    16:36
    Nuclear Warfare - Hoi4 MP In A Nutshellremove from playlist
  • How Would the United States Fight a Nuclear War?
    51:42
    How Would the United States Fight a Nuclear War?remove from playlist
  • What If USA Launched a Nuclear Bomb (Minute by Minute)
    18:17
    What If USA Launched a Nuclear Bomb (Minute by Minute)remove from playlist
  • Threat of Nuclear Armageddon Has Never Been Bigger | WHILE THE REST OF US DIE
    6:52
    Threat of Nuclear Armageddon Has Never Been Bigger | WHILE THE REST OF US DIEremove from playlist
  • What Would a Nuclear Strike Inside the U.S. Look Like?
    24:13
    What Would a Nuclear Strike Inside the U.S. Look Like?remove from playlist
  • US rebuilding airfields used to launch nuclear attacks on Japan
    2:41
    US rebuilding airfields used to launch nuclear attacks on Japanremove from playlist
  • Are We on The Verge of Nuclear War?
    23:01
    Are We on The Verge of Nuclear War?remove from playlist
PLAYLIST TIME: 0:00 / 2:40:00

How A Nuclear War Will Start - Minute by Minute

This video was made possible through a grant by Open Philanthropy. Sources & further reading: https://sites.google.com/view/sources-mr-president/ Join us over on Discord to discuss and share your thoughts: https://kgs.link/Discord Mr. President! Nuclear missiles will strike our country in 14 minutes. I know it’s your first day in office so I’m going to walk you through it, but you’re the only one who can authorize our nuclear retaliation in response and you’ve only got a few minutes to make a decision! OUR CHANNELS ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ German: https://kgs.link/youtubeDE Spanish: https://kgs.link/youtubeES French: https://kgs.link/youtubeFR Portuguese: https://kgs.link/youtubePT Arabic: https://kgs.link/youtubeAR Hindi: https://kgs.link/youtubeHI Japanese: https://kgs.link/youtubeJA Korean: https://kgs.link/youtubeKO HOW CAN YOU SUPPORT US? ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ This is how we make our living and it would be a pleasure if you support us! Get Products designed with ❤ https://shop-us.kurzgesagt.org Join the Patreon Bird Army 🐧 https://kgs.link/patreon DISCUSSIONS & SOCIAL MEDIA ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ TikTok: https://kgs.link/tiktok Reddit: https://kgs.link/reddit Instagram: https://kgs.link/instagram Twitter: https://kgs.link/twitter Facebook: https://kgs.link/facebook Discord: https://kgs.link/discord Newsletter: https://kgs.link/newsletter OUR VOICE ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ The Kurzgesagt voice is from Steve Taylor: https://kgs.link/youtube-voice OUR MUSIC ♬♪ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ 700+ minutes of Kurzgesagt Soundtracks by Epic Mountain: Spotify: https://kgs.link/music-spotify Soundcloud: https://kgs.link/music-soundcloud Bandcamp: https://kgs.link/music-bandcamp Youtube: https://kgs.link/music-youtube Facebook: https://kgs.link/music-facebook The Soundtrack of this video: Soundcloud: https://bit.ly/3qwPJBT Bandcamp: https://bit.ly/45EdTsL If you want to help us caption this video, please send subtitles to subtitle@kurzgesagt.org You can find info on what subtitle files work on YouTube here: https://support.google.com/youtube/answer/2734698?hl=en-GB&ref_topic=7296214 Thank you! 🐦🐧🐤 PATREON BIRD ARMY 🐤🐧🐦 ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ Many Thanks to our wonderful Patreons (from http://kgs.link/patreon) who support us every month and made this video possible: Mason & Sophia Green, KEZACO, Mitchell Grenier, Merlin, Sage, Morry Kolman, Riomura_Dev, Nidhoegger, Julian Nowak, Rayyrawr, Arthur Robillard, Christian, Raphael Seffers, Sim Slim, David Manzanarez, cicero4, Domenic Rigling, AlZe, Jonas Brodesser, Peter Roth, Tobias, Nuno Serén, Adam W, David Bank, Charles Brown, Winston White, Dustin Davis, Hassan Taher, Eduardo Omerović C., Juan Arturo Drew P., Glacier, marin, Jae Darl, Scott & Sora, Andoriol, Piero Acevedo, Isimo, West Stringfellow, Driaon, Simon Goller, Tom Bonarewitz, Amelie Büttner, Ma. Jimena, Kury Sama, Marco Grotemeyer, Bao Truong, Chrispy, Nigggo, Sivarama Pokala, jonas meinberg, Cheese, David Walsh, Jan, Philipp Laube, Sinje Brandt, Lit, Paul, Junipal Witt, Rhodii Rodiles, Jamarr Mays, Andre Vianna, Flemming H., Nick Elvis, Snake4you, Midokin, Mario Tutzer, MetroTM, CheezeNuggies, Mäddin, Nils Scholz, Samsa, Kaine Shadory, TNT TV Gaming, Kevin Kaufmann, Florian Arndt
8:54
How A Nuclear War Will Start - Minute by Minute
This video was made possible through a grant by Open Philanthropy. Sources & further readi...
published: 22 Aug 2023
Play in Full Screen
4:09
How would a nuclear war between Russia and the US affect you personally?
What would happen if a nuclear war were to be sparked between Russia and the United States...
published: 29 Jun 2023
Play in Full Screen
3:35
Nuclear War AI Simulation - Russia vs NATO
"World War 3 (Hour by Hour) According to a survey prepared by the FAS and NRDC, there ar...
published: 03 May 2023
Play in Full Screen
16:36
Nuclear Warfare - Hoi4 MP In A Nutshell
Hearts of Iron 4 MP in a nutshell (Hearts of iron 4 multiplayer) Episode 281 Mods: TFB M...
published: 27 Mar 2023
Play in Full Screen
51:42
How Would the United States Fight a Nuclear War?
Go to https://get.atlasvpn.com/ModernMuscle to get a 3-year plan for just $1.83 a month. I...
published: 16 Jul 2023
Play in Full Screen
18:17
What If USA Launched a Nuclear Bomb (Minute by Minute)
The President of the United States of America makes the call and within a few moments a nu...
published: 13 May 2023
Play in Full Screen
6:52
Threat of Nuclear Armageddon Has Never Been Bigger | WHILE THE REST OF US DIE
The number one threat facing humanity right now is not climate change... it's nuclear weap...
published: 12 Oct 2023
Play in Full Screen
24:13
What Would a Nuclear Strike Inside the U.S. Look Like?
The U.S. is quietly beginning an ambitious, controversial reinvention of its nuclear arsen...
published: 14 Nov 2023
Play in Full Screen
2:41
US rebuilding airfields used to launch nuclear attacks on Japan
The United States Air Force is rebuilding the airfield used to launch the nuclear attacks ...
published: 28 Dec 2023
Play in Full Screen
23:01
Are We on The Verge of Nuclear War?
Instagram: .https://www.instagram.com/rudyardwlynch Twitter:https://twitter.com/whatifalth...
published: 02 Jun 2023
Play in Full Screen
'); } 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: nuclear warfare

Edit

From Kyiv to Delhi: How underground metro stations double up as bomb shelters in times of conflict

The Times of India 10 May 2025
... and as nuclear bunkers during the Cold War ... These fortified underground facilities were engineered to safeguard citizens from nuclear, chemical and biological warfare for a duration of up to 72 hours.
Edit

A new kind of battle for two old enemies

The Spokesman-Review 10 May 2025
The use of drone warfare may have been inevitable, but it could reshape the way the world views hostilities between India and Pakistan, much as it did after the two countries became nuclear powers in the 1990s.
Edit

DPRK conducts drill to improve nuclear forces' readiness: KCNA

Xinhua 09 May 2025
... importance of improving the combat readiness of the country's nuclear forces, the official Korean Central News Agency (KCNA) said on Friday ... DPRK conducts drill to improve nuclear forces' readiness.
Edit

Will We See More Nuclear Proliferation?

MENA FN 09 May 2025
(MENAFN - Jordan Times) CAMBRIDGE - Eight decades have passed since the energy contained within an atom was used in warfare. Yet rather than suffering nuclear Armageddon, the world has achieved a ... .
Edit

A New Kind of Battle for India and Pakistan, Two Old Foes

New York Times 09 May 2025
Drone warfare has expanded the conflict in Kashmir between India and Pakistan, two nuclear-armed neighbors ... .
Edit

US declares India-Pakistan conflict ‘none of our business,’ urges de-escalation

Blitz 09 May 2025
Speaking to Fox News on May 8, US Vice President JD Vance bluntly stated that the escalating conflict is “fundamentally none of our business,” even as he acknowledged the risks inherent in clashes between two nuclear-armed states.
Edit

Explained: Rafale fighter jets, India’s new defence powerhouse

Gulf News 08 May 2025
Laser-guided, precision, and nuclear-capable munitions ... AESA radar, SPECTRA electronic warfare suite, helmet-mounted display ... • Upgraded radar and electronic warfare systems ... • Nuclear weapons delivery capability.
Edit

Only thieves and cowards attack at night, says Bilawal

Dawn 08 May 2025
... neighbour has left Islamabad far behind in conventional warfare. He emphasised that Pakistan is fully capable of defending its geographical boundaries, whether in conventional or nuclear warfare.
Edit

India’s reckless provocation risks nuclear catastrophe —the world must act now

The News International 08 May 2025
It is a strategic escalation by a nuclear state in one of the world’s most volatile regions ... When two nuclear-armed states exchange fire across international borders, the time for half-measures and vague statements is over.
Edit

Analysis: Nuclear neighbours in high wire act

Dawn 08 May 2025
In barely a day, New Delhi’s pre-dawn strikes on six sites in Pakistan and Islamabad’s thunderous shoot down of five Indian fighters have drawn both nuclear-armed neighbors into a high wire act of provocation and reprisal.
Edit

Why India attacked Pakistan, its neighbor and nuclear rival

Usatoday 07 May 2025
Two sworn enemies, both nuclear-armed ... Yusuf noted that the South Asia region has been labeled the most likely nuclear flashpoint for a reason ... Unlike the nuclear warfare threat that existed between the U.S.
Edit

India’s reckless provocation risks nuclear catastrophe—the world must act now

Kashmir Media Service 07 May 2025
It is a strategic escalation by a nuclear state in one of the world’s most volatile regions ... When two nuclear-armed states exchange fire across international borders, the time for half-measures and vague statements is over.
Edit

After Operation Sindoor, past assumptions in Pakistan of an Indian response no longer hold true

Indian Express 07 May 2025
... under the shadow of nuclear blackmail and sub-conventional warfare .
Edit

Nuclear-resistant ‘Donkey’ ground robot with fiber control takes on combat logistics

Interesting Engineering 06 May 2025
The drone’s core strength lies in its resistance to nuclear warfare effects, particularly in the electromagnetic pulse (EMP) and radiation spectrum, enabling continued operability in degraded or contaminated environments.&nbsp;.
Edit

New novel “Conflict” by Greg Kennedy is released, a politically charged military thriller about aggression ...

GetNews 06 May 2025
When a nuclear device is detonated in Ukraine, the stakes become even higher ... Intelligence gathering is central to the story, preventing a total nuclear disaster and illustrating the impact of political decisions on warfare.
×