- published: 09 Apr 2021
- views: 3520009
'+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; })); }); -->
The Winter War (Finnish: Talvisota, Swedish: Vinterkriget, Norwegian: Vinterkrigen, Russian: Зи́мняя война́, tr. Zimnyaya voyna) was a military conflict between the Soviet Union and Finland in 1939–1940. It began with the Soviet invasion of Finland on 30 November 1939 (three months after the outbreak of World War II), and ended with the Moscow Peace Treaty on 13 March 1940. The League of Nations deemed the attack illegal and expelled the Soviet Union from the League on 14 December 1939.
The Soviet Union ostensibly sought to claim parts of Finnish territory, demanding—amongst other concessions—that Finland cede substantial border territories in exchange for land elsewhere, claiming security reasons, primarily the protection of Leningrad, which was only 32 km (20 mi) from the Finnish border. Finland refused and the USSR invaded the country. Many sources conclude that the Soviet Union had intended to conquer all of Finland, and use the establishment of the puppet Finnish Communist government and the Molotov–Ribbentrop Pact's secret protocols as proof of this, while other sources argue against this idea of a full Soviet conquest.
Winter War refers to the war between Finland and the Soviet Union.
Winter War may also refer to:
Bound for Glory IV was a professional wrestling pay-per-view (PPV) event produced by the Total Nonstop Action Wrestling (TNA) promotion that took place on October 12, 2008 at the Sears Centre in Hoffman Estates, Illinois. It was the fourth event under the Bound for Glory name and the tenth event in the 2008 TNA PPV schedule. The show was promoted as TNA's premier PPV event and their equivalent to the rival World Wrestling Entertainment's (WWE) WrestleMania. Eight professional wrestling matches and one untelevised match were featured on the event's card, four of which were for championships.
The main event of Bound for Glory IV was a standard wrestling match for the TNA World Heavyweight Championship, pitting the champion Samoa Joe against the challenger Sting. Sting won the match to become the new champion. Another highly promoted contest on the card was between Kurt Angle and Jeff Jarrett, with Mick Foley serving as the Special Ringside Enforcer. Jarrett was the victor of the encounter. TNA held a Three Way War between A.J. Styles, Booker T, and Christian Cage at the event, which Booker T won. The TNA World Tag Team Championship was defended in a Four Way Tag Team Monster's Ball match with Steve McMichael as the Special Guest Referee, in which the champions Beer Money, Inc. (James Storm and Robert Roode) fought the team of Abyss and Matt Morgan, The Latin American Xchange (Hernandez and Homicide), and Team 3D (Brother Devon and Brother Ray). Beer Money, Inc. pinned Hernandez to retain the championship in the contest.
Bound for Glory was the eighth annual Bound for Glory professional wrestling pay-per-view (PPV) event produced by Total Nonstop Action Wrestling (TNA). It took place on October 14, 2012 at the Grand Canyon University Arena in Phoenix, Arizona. The event was the first TNA event in the state of Arizona, the first Bound for Glory PPV to be held in Southwestern United States, and was the premiere event of the 2012 for TNA.
Eight professional wrestling matches took place at the event broadcast on pay per view around the world. The predominant matches on the card included the main event which saw Jeff Hardy defeating the champion Austin Aries to capture the TNA World Heavyweight Championship, the Aces & Eights defeating Sting and Bully Ray to earn "full access" to TNA, Chavo Guerrero, Jr. and Hernandez defeating both the champions The World Tag Team Champions of the World (Christopher Daniels and Kazarian), and A.J. Styles and Kurt Angle to win the TNA World Tag Team Championship, and James Storm defeating Bobby Roode in a Street Fight with King Mo as special guest enforcer.
Bound for Glory (2014) was a professional wrestling pay-per-view (PPV) event produced by Total Nonstop Action Wrestling (TNA), in collaboration with Japanese promotion Wrestle-1 (W-1). It took place on October 12, 2014 at the Korakuen Hall in Tokyo, Japan. It was the tenth pay-per-view under the Bound for Glory chronology, the second TNA/W-1 joint event held in Japan in 2014 (following Kaisen: Outbreak), and the fourth and last event in the 2014 TNA PPV schedule.
It was the first Bound for Glory to not feature either the NWA World Heavyweight Championship or the TNA World Heavyweight Championship in the main event. Due to the time difference between the United States and Japan, the PPV aired on tape delay. Also Taz and Mike Tenay were not there live, and instead did commentary from TNA headquarters in Nashville, Tennessee. A traditional four-sided ring was used for the event, as opposed to the six-sided ring TNA predominantly uses.
Eight matches took place at the event. The main event featured The Great Muta and Tajiri defeating James Storm and The Great Sanada.
Play Call of War for free on PC or Mobile: 💥 https://callofwar.onelink.me/q5L6/ab88a43b and receive an amazing New Player Pack, only available for the next 30 days! Kings and Generals animated historical documentary series on Modern Warfare continues with a video on the Winter War - Soviet-Finnish conflict fought in 1939 and 1940 as part of the European theatre of World War II. Kings and Generals Full Length Documentaries: https://www.youtube.com/playlist?list=PLaBYW76inbX5i81Dml0VEQqxWoJVueilr Cold War channel: youtube.com/@TheColdWarTV Modern Warfare series: youtube.com/playlist?list=PLaBYW76inbX4NYr_WkbaW5KfYwqTAxn08 Support us on Patreon: http://www.patreon.com/KingsandGenerals or Paypal: http://paypal.me/kingsandgenerals or by joining the youtube membership: https://www.youtube.co...
Get Winter War by Wargame Design Studio for 25% off: https://wargameds.com/pages/realtimehistory November 1939. Germany and the Soviet Union have conquered Poland, and Germany is at war with France and Britain. Moscow is free to do as it pleases in Eastern Europe and sets its sights on Finland – but the Winter War will be a nasty surprise for Stalin. Corrections: 02:19 The dot marking Leningrad is about 80km too far east, it's of course directly at the far eastern end of the Gulf of Finland. » SUPPORT US https://patreon.com/realtimehistory https://nebula.tv/realtimehistory » THANK YOU TO OUR CO-PRODUCERS Reed Spilmann, Jim Frame, Erik Ritter, Cardboard, Ken Brownfield, David Garfinkle, Raymond Martin, Konstantin Bredyuk, Lisa Anderson, Brad Durbin, Jeremy K Jones, Murray Godfrey, ...
In 1939, three months after the outset of the Second World War, the USSR turned their attention to the icy landscapes of Finland. Stalin anticipated Finland would simply sign their land over, given the USSR's vastly superior military strength, but to his shock they fought tooth and nail for their freedom. The determined Finnish defenses at the Mannerheim line saw some of the most brutal fighting in the early part of the war. War Stories is your one stop shop for all things military history. From Waterloo to Verdun, we'll be bringing you only the best documentaries and stories from history's most engaging and dramatic conflicts. Discover the past on History Hit with ad-free exclusive podcasts and documentaries released weekly presented by world renowned historians Dan Snow, Suzannah Lips...
The ‘Winter War’ of 1939-1940 or the Russo-Finnish War was fought between the Soviet Union and Finland. The Soviet Union claimed parts of Finnish territory mainly to create a buffer against a German attack as the Finnish border was close to Leningrad. Stalin demanded that Finland cede parts of its Karelian Isthmus territory in exchange for other Soviet land in the center of the border. Support the cartoons on patreon: https://www.patreon.com/simplehistory Get your copy of Simple History: World War II. https://www.amazon.com/Simple-History-simple-guide-World/dp/1505922410/ Simple history gives you the facts, simple! See the book collection here: Amazon USA http://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ Amazon UK http://www.amazon.co.uk/Daniel-Turner-%60/e/B00H5TYLAE...
On the final day of November 1939 the Red Army of the USSR invades Finland and the Winter War begins. Join us on Patreon: https://www.patreon.com/TimeGhostHistory Or join The TimeGhost Army directly at: https://timeghost.tv Check out our TimeGhost History YouTube Channel: https://www.youtube.com/c/timeghost?sub_confirmation=1 Follow WW2 day by day on Instagram @World_war_two_realtime https://www.instagram.com/world_war_two_realtime/ Like us on Facebook: https://www.facebook.com/TimeGhostHistory/ Between 2 Wars: https://www.youtube.com/playlist?list=PLrG5J-K5AYAU1R-HeWSfY2D1jy_sEssNG Source list: https://bit.ly/SourcesWW2 Written and Hosted by: Indy Neidell Director: Astrid Deinhard Producers: Astrid Deinhard and Spartacus Olsson Executive Producers: Astrid Deinhard, Indy Neidell, Spart...
The Soviet Union launched an invasion of Finland that turned out to be a catastrophic mistake despite having a major military advantage. On paper, the Soviets should have steamrolled this small country. Their military strength dwarfed that of their Nordic neighbors, and yet they suffered massive losses at the hands of the White Death and the Finnish military. Find out what happened during the epic Winter War! 🔔 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.theinfographics...
songs used: https://www.youtube.com/watch?v=maYCStVzjDs&t=34s https://www.youtube.com/watch?v=uMszu_VgMfY https://www.youtube.com/watch?v=U06jlgpMtQs https://www.youtube.com/watch?v=PJR3xTdbXH8 SFX/other audio shit used: the audio used in the part where Finland said PERKELE https://www.youtube.com/watch?v=z7_pVrIshxA the part of machinegun fire: https://www.youtube.com/watch?v=tgXWJEZzFHE All of the audio of KV-2 are from WoT, and some online TTS ============================================================= turn on captions please ok finally done... not gonna lie but for me, this MSPSFS seems so... ehhh.. meh... this is also my now current longest MSPSFS as well.. for now anyways... ima play WoT ------------------------------------------------------------------------...
The Winter War 1989 Stalin orders an attack on Finland in November 1939, marking the beginning of the struggle for the small country. Two brothers join a regiment and travel to Karelia where they try to survive the Winter War. *** Rent or own full movie: https://amzn.to/3InsrmI *** Rent WW2 Movies: https://amzn.to/3yvg04w *** Rent War Movies: https://amzn.to/3Aijzwi Johnny's War Movie Review Channel: https://www.youtube.com/c/johnnyjohnsonesq Link to main channel for all HD Battle and Military Movie Clips: https://www.youtube.com/c/johnnyswarstories DISCLAIMER: Links included in this description might be affiliate links. If you purchase a product or service with the links that I provide I may receive a small commission. There is no additional charge to you! Thank you for supporting!...
#history #map #europe #video #germany #ussr #scenario #alternatetimeline
I fixed it. Sorry. Why didn't the USSR, the largest country, not simply eat the other one? If you want to know why then watch this short and simple animated documentary. https://twitter.com/HistMattersYT Patreon: https://www.patreon.com/user?u=4973164 Merch: https://teespring.com/stores/history-matters-store-2 A special thanks to all of these Patrons below, without whom the show wouldn't be possible: Kevin Sanders Ian Jensen Mickey Landen Kevin Phoenix Richard Wolfe אורי פרקש Robert Brockway Can’t Think Of A Name Mr Sandman SirAlpaka Connor Glaze D. Mahlik Björnosaurus Porkmeister David archaeologist jdk anon sharpie660 Dragan Mcfeld Andreas Mosand Qi Xiao Ainar Garipov John Bisges Southside Mitch Wolf Rod D. Martin Dexter_McAaron Jeremy Ryan Haber Chris Fatta Adam Stalter Mantodea A...
President Kyösti Kallio's prayer is very fitting for today. It was our independence Day on Monday 6th of December and I wanted to honour God for the miraculous victory He gave us Finns during this war, which is now part of our history. Unfortunately many Finns now days think "we won the war, cause we were so much better fighters than Soviets"... Pride has taken over our people and God has been forgotten by many... BUT IT WAS GOD. All glory to our Lord Jesus Christ in who our grandparents trusted and prayed to during this war! Prayful nation was saved & GOD GAVE US THE VICTORY! 🙌💝✝️🙏🇫🇮 ------------ Winter War documentary ( in English): https://youtu.be/tzEgbaaNCQY ------------ Finnish song made from this prayer: https://youtu.be/3r1Gfv7SRs4 ------------ Finnish president Kyösti Kal...
Subscribe to this channel for more! Top 10 Movies on Hulu: Palm Springs The Dark Knight Border The Guilty Hell or High Water Parasite Apollo 11 Shoplifters Honeyland Nomadland #Hulu #Movie #Film #Video #Best_Movie #Best_Film #What_To_Watch #Binge_Watching #Series #Shows #Drama #Sitcom #Comedy #Dramedy #Action #Thriller #Movie_Night #Fiction #Mystery #Satire #TVSeries #TV_Series #Ray_Donovan #Shameless #Patrick_Melrose #Episodes #The_Affair #Billions #Your_Honor #Homeland #The_Chi #Escape_At_Dannemora #Dexter #Showtime_Original_Series #Showtime_TV #Original_Shows #Top_10 #Top_Series #Best_Shows #Best_Hulu_Shows #Showtime_Original #TV_Shows #TVShows #Tom_Films #Best_Series #Streaming #HD #Movies #Best_On_Hulu #Showtime_Top_Ten #Hulu_Top_Ten #Nomadland #Oscar #Oscar_Nominee #Oscar_Winner #H...
If you want to to know the greatest Disney TV Shows that came out 2021 you should definitely watch our picks for the best Disney TV Series of 2021. All Disney series in this ranking started in 2021. Discover the best… 📹 YouTube tool: https://www.tubebuddy.com/communitv We missed your favorite Disney TV Series of 2021? Let us know in the comments! Follow us on... Instagram: http://bit.ly/2rnljTB Facebook: http://bit.ly/2PbYxGn TV Series in this Ranking: 10. Big Shot (2021– ): (00:23) 9. The Mighty Ducks: Game Changers (2021– ): (01:12) 8. The Falcon and the Winter Soldier (2021): (02:01) 7. Star Wars: Visions (2021– ): (02:48) 6. What If...? (2021– ): (03:37) 5. Star Wars: The Bad Batch (2021– ): (04:16) 4. Hawkeye (2021): (05:07) 3. The Book of Boba Fett (2021– ): (05:57) 2. WandaVisi...
We waited multiple seasons for this?! For this list, we’ll be looking at TV shows that left us on the sourest of notes. Oh, and spoilers. Our countdown includes disappointing final scenes from "The Good Wife", "Killing Eve", "Roseanne" and more! Which final scene do you think needed a rewrite? Let us know in the comments. Check out these other tv show videos: Top 20 TV Shows Everyone Should Watch at Least Once: https://youtu.be/dz-H9H5m7No Top 10 Reality Shows Canceled After Only One Episode: https://youtu.be/LfKnNR1BIdo Top 10 TV Shows So Disgusting They Made People Physically Sick: https://youtu.be/qvZurjWyAeU Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Challenge friends and family on our multiplayer Trivia! ht...
If you want to know how civilization would look once it is crumbled you should definitely watch our picks for the best Post Apocalyptic tv shows. Discover the best… 📹 YouTube tool: https://www.tubebuddy.com/communitv We missed your favorite Post-Apocalyptic TV Series? Let us know in the comments! Follow us on... Instagram: http://bit.ly/2rnljTB Facebook: http://bit.ly/2PbYxGn Movies in this Ranking: 10. Falling Skies (2011–2015): (00:26) 9. Colony (2016–2018): (01:16) 8. The Last Ship (2014–2018): (02:07) 7. Station Eleven (2021-2022): (02:56) 6. See (2019- ): (03:42) 5. The 100 (2014–2020): (04:29) 4. Sweet Tooth (2021- ): (05:17) 3. Jericho (2006–2008): (06:06) 2. Into the Badlands (2015–2019): (06:58) 1. The Walking Dead (2010–2022): (08:45) You want to work with us? For ...
Check out Preston's Channel here - https://youtube.com/@PrestonJacobstheSweetrobin?si=sGLkFT06yX3Wv2ie Preston Jacob's Winds of Winter Fan Fiction Explained A song of ice and fire/Game of Thrones/ House of the dragon Lore #gameofthrones #houseofthedragon #shorts #fantasy #lore #asoiaf #got #hotd #stark #show #showtv #shortfeed #short #shortsyoutube #shortsfeed #shortsvideo #shortfeeds Backing Track BONNIE GRACE Last Breath of Freedom Artwork in this video is used for commentary and educational purposes. Artwork belongs to HBO/A Song of Ice and Fire book series and other respective owners. If you see artwork you have created in this video and would like to be credited, message me via my email Lore.Ramble.YT@outlo...
Worst. Movies. Ever! For this list, we’ll be looking at the most panned films to make it to the big screen, as well as streaming dumpster fires. Our list includes "Mac and Me", “Cutthroat Island” , “Soul Man” and more! Did we miss any movies you think were worse? Let us know in the comments. Check out these other "Top 100" videos: Top 100 Greatest TV Characters of All Time: https://youtu.be/0R81GIr2Woc Top 100 Best Video Games of All Time: https://youtu.be/Nw5tDUZ_5To Top 100 Songs of All Time: https://youtu.be/JZPggWeQnbs Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Don't forget to play our Live Trivia games at 3pm and 8pm EST for a chance to win cash! The faster you answer, the more points you get!: https://www....
If you want to know the best Hulu Original tv shows you should definitely watch our picks for the best Hulu TV Series of 2023. All Hulu series in this ranking started in 2023. Discover the best… 📹 YouTube tool: https://www.tubebuddy.com/communitv We missed your favorite Hulu TV Series of 2023? Let us know in the comments! Follow us on... Instagram: http://bit.ly/2rnljTB Facebook: http://bit.ly/2PbYxGn TV Series in this Ranking: 5. A Murder at the End of the World (2023): (00:15) 4. Black Cake (2023): (00:51) 3. Tiny Beautiful Things (2023): (01:37) 2. Justified: City Primeval (2023): (02:22) 1. Extraordinary (2023-): (04:00) You want to work with us? For collaboration requests please contact us via… Mail: [email protected] Music: www.bensound.com
All month long, Comicbook.com has been covering the best TV shows and movies to binge on every streaming service! Up next: 10 BEST movies to binge on Disney Plus!
The Wild Hunt is an ancient myth of a spectral or otherworldly hunting party that sometimes appears at night. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
The Winter War (Finnish: Talvisota, Swedish: Vinterkriget, Norwegian: Vinterkrigen, Russian: Зи́мняя война́, tr. Zimnyaya voyna) was a military conflict between the Soviet Union and Finland in 1939–1940. It began with the Soviet invasion of Finland on 30 November 1939 (three months after the outbreak of World War II), and ended with the Moscow Peace Treaty on 13 March 1940. The League of Nations deemed the attack illegal and expelled the Soviet Union from the League on 14 December 1939.
The Soviet Union ostensibly sought to claim parts of Finnish territory, demanding—amongst other concessions—that Finland cede substantial border territories in exchange for land elsewhere, claiming security reasons, primarily the protection of Leningrad, which was only 32 km (20 mi) from the Finnish border. Finland refused and the USSR invaded the country. Many sources conclude that the Soviet Union had intended to conquer all of Finland, and use the establishment of the puppet Finnish Communist government and the Molotov–Ribbentrop Pact's secret protocols as proof of this, while other sources argue against this idea of a full Soviet conquest.
The Kremlin disrupts, the war erupts
In the land of one thousand lakes
Twenty below, deep in the snow
The Mannerheim line will not break
All men to the front, with precision they hunt
Slaughtering reds like wild boar
Fire at will, till the battlefield's still
Littered with corpses, T-26's ripped and tore
Chorus:
Freedom for the land, winter war
Molotov in hand, winter war
Red army on it's knees, winter war
Karelia will be freed, winter war
Men on skis, in the arctic breeze
Breaking the red armies back
Standing in defiance to an unwanted alliance
Telling the Kremlin to shove their pact
They would not bend, they'd fight till the end
Against Stalin and his army of zion
So vastly outnumbered, still they thundered
Showing the world the might of the lion