- published: 20 Oct 2022
- views: 12641228
'+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; })); }); -->
Western Front may refer to:
The Western Front was the main theatre of war during World War I. Following the outbreak of war in August 1914, the German Army opened the Western Front first by invading Luxembourg and Belgium, then gaining military control of important industrial regions in France. The tide of the advance was dramatically turned with the Battle of the Marne. Following the race to the sea, both sides dug in along a meandering line of fortified trenches, stretching from the North Sea to the Swiss frontier with France. This line remained essentially unchanged for most of the war.
Between 1915 and 1917 there were several major offensives along this front. The attacks employed massive artillery bombardments and massed infantry advances. However, a combination of entrenchments, machine gun nests, barbed wire, and artillery repeatedly inflicted severe casualties on the attackers and counter-attacking defenders. As a result, no significant advances were made. Among the most costly of these offensives were the Battle of Verdun, in 1916, with a combined 700,000 casualties (estimated), the Battle of the Somme, also in 1916, with more than a million casualties (estimated), and the Battle of Passchendaele, in 1917, with roughly 600,000 casualties (estimated).
The Western Front of the European theatre of World War II encompassed Denmark, Norway, Luxembourg, Belgium, the Netherlands, the United Kingdom, France, Italy, and Western Germany. World War II military engagements in Southern Europe and elsewhere are generally considered under separate headings. The Western Front was marked by two phases of large-scale combat operations. The first phase saw the capitulation of the Netherlands, Belgium and France during May and June 1940 after their defeat in the Low Countries and the northern half of France, and continued into an air war between Germany and Britain that climaxed with the Battle of Britain. The second phase consisted of large-scale ground combat, which began in June 1944 with the Allied landings in Normandy and continued until the defeat of Germany in May 1945.
The Phoney War was an early phase of World War II marked by a few military operations in Continental Europe in the months following the German invasion of Poland and preceding the Battle of France. Although the great powers of Europe had declared war on one another, neither side had yet committed to launching a significant attack, and there was relatively little fighting on the ground. This was also the period in which The United Kingdom and France did not supply significant aid to Poland, despite their pledged alliance.
On the Western Front is D.I.'s seventh full-length. Like their previous album Caseyology (2002), frontman Casey Royer is the only original member performing on this album. Work on the album began in 2004, but it was not released until 2007. The album was delayed numerous times before finally being completed in 2007. The reason for the delay was because of a touring schedule and record company problems before they signed Suburban Noize Records, who released this album.
An older version of Gutters Of Paradise appears on the Finger Records compilation "Redefining Scenes 2"
The Western Front is a 2000 book by Richard Holmes about the western front of the First World War. Kirkus Reviews called it a "concise, balanced study".
The Western Front is an Australian rules football television series that has been broadcast on Network Ten in Western Australia in 2002 and ended on 8 October 2011.
The show focuses on the two Western Australian teams in the Australian Football League, Fremantle and West Coast, as well as the West Australian Football League. The show has been hosted by Tim Gossage and Lachy Reid from its debut until 2010, but for the 2011 season, Reid will host it with a guest host each week.
The show is notable for encouraging people to form a "big 'W'" hand sign in the background of television broadcasts on any show on any network. The sign is created by holding your hands up in front of you with the thumbs touching and only the index fingers extended, to form a "W" shape. Each week the show highlights signs seen at football matches, behind outside broadcasts or posed photos of people forming the W at notable locations around the world. They also encourage celebrities to form the "W" sign, and have filmed Kevin Rudd, John Howard, Jenifer Hawkins and Kobe Bryant.
All Quiet on the Western Front tells the gripping story of a young German soldier on the Western Front of World War I. Paul and his comrades experience first-hand how the initial euphoria of war turns into desperation and fear as they fight for their lives, and each other, in the trenches. The film from director Edward Berger is based on the world renowned bestseller of the same name by Erich Maria Remarque. SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading streaming entertainment service with 221 million paid memberships in over 190 countries enjoying TV series, documentaries, feature films and mobile games across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any Internet-connected screen. Members can p...
Film - All Quiet on the Western Front (2022) (A young German soldier's terrifying experiences and distress on the western front during World War I) The Germans launch an assault to capture the French front lines. Discord ► https://discord.gg/x3e7WTDrpg #worldwar1 #ww1 #history DISCLAIMER: All videos uploaded are the copyright material of their original owners and are to be copyright claimed automatically or at the discretion of the owner.
All Quiet on the Western Front tells the gripping story of a young German soldier on the Western Front of World War I. Paul and his comrades experience first-hand how the initial euphoria of war turns into desperation and fear as they fight for their lives, and each other, in the trenches. The film from director Edward Berger is based on the world renowned bestseller of the same name by Erich Maria Remarque. SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading streaming entertainment service with 221 million paid memberships in over 190 countries enjoying TV series, documentaries, feature films and mobile games across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any Internet-connected screen. Members can p...
The Great War: Western Front reviewed by Leana Hafer on PC. World War One rarely gets to shine so authentically in a strategy game, but portraying it with accuracy doesn't always translate into a good time. It's easy to feel bogged down when you might go several turns without any significant changes in the overall situation, with a successful offensive in one area completely offset by enemy momentum somewhere else. Still, it wouldn't really be World War I without these elements, and Western Front can still be a good time. #IGN #Gamign
Check out the official Trailer for All Quiet on the Western Front starring Felix Kammerer! ► Buy Tickets on Fandango: https://www.fandango.com/all-quiet-on-the-western-front-2022-229061/movie-overview?cmp=Trailers_YouTube_Desc Subscribe to the channel and click the bell icon to be notified of all the hottest trailers: http://bit.ly/2CNniBy US Release Date: October 28, 2022 Starring: Daniel Brühl, Felix Kammerer, Albrecht Schuch Director: Edward Berger Synopsis: All Quiet on the Western Front tells the gripping story of a young German soldier on the Western Front of World War I. Paul and his comrades experience first-hand how the initial euphoria of war turns into desperation and fear as they fight for their lives, and each other, in the trenches. The film from director Edward Berger is...
Non-Profit Channel. Fair Use. My Copyright Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended.
#allquietonthewesternfront #worldwar #edit #filmedits #shorts
Thanks for taking a look at The Great War: Western Front! If you'd like to check out the game and play it yourself, here is the link: https://bit.ly/3nXIxgx If my videos help you find new games & buy ones you like the most, please consider below! 🦖 JOIN & BECOME A MEMBER : https://bit.ly/2YSLgqH 👕 MERCH: https://teespring.com/stores/raptor 💰 SUPPORT: https://streamlabs.com/raptor ❤️Super Thanks & Super Chats Use code 'RAPTORIA' at Checkout on the Epic Games Store & Support-A-Creator! ►LINKS 📷 Instagram: http://www.instagram.com/raptorgamerig 🐦Twitter: https://twitter.com/raptorgamer 💨 Steam: http://steamcommunity.com/groups/Rappack ►DISCORD 🎤Discord: https://discord.gg/WtmCbzb 🎤TeamSpeak: https://bit.ly/2L2TFQx ►TWITCH 📺 http://www.twitch.tv/rappack ►VIDEO SCHEDULE 📅https://bit.ly/2...
PART 2 HERE: https://www.youtube.com/watch?v=Mun1dKkc_As MERCH: https://oversimplified.tv/merch If you would like to see more OverSimplified on a more regular basis, please consider supporting me on Patreon: https://www.patreon.com/OverSimple Want to know how I make these videos? I use Adobe After Effects and Photoshop. Get them here - https://goo.gl/zPHcm2 https://www.facebook.com/OverSimplified/ https://twitter.com/over_simplified https://instragram.com/over_simplified Content inspired by Dan Carlin's Hardcore History podcast, check it out if you want to learn about WW1 in more detail! Bill Wurtz made me want to make this, kudos to him! (Link to his channel: https://www.youtube.com/user/billwurtz) (I've not been endorsed by either of them!) Copyright disclaimer - We do not give any...
All Quiet on Western Front (Im Westen Nichts Neues, 2022) is just published on Netflix and it is already on our Top 10 WW1 movies of all time! Start with this opening scene from All Quiet on the Western Front and then go on and watch the entire movie. It is well worth your time. IMDB LINK: https://www.imdb.com/title/tt1016150/ LEGAL DISCLAIMER All music, art, and footage belong to their respective owners, this is just fair use. We are a channel dedicated to bringing fans of battle movies together and we are trying to do it by removing all scenes unrelated to a battle, fight, or something about a battle or fight that is about to take place. We are obviously not monetizing this content, monetization belongs to rightful owners. All rights belong to Netflix. Go watch the full movie on Netfli...
Western Front in a nutshel #countryballs #history #france #uk #belgium #switzerland #netherlands #ww1 countryballs
All Quiet on the Western Front tells the gripping story of a young German soldier on the Western Front of World War I. Paul and his comrades experience first-hand how the initial euphoria of war turns into desperation and fear as they fight for their lives, and each other, in the trenches. The film from director Edward Berger is based on the world renowned bestseller of the same name by Erich Maria Remarque. SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading streaming entertainment service with 221 million paid memberships in over 190 countries enjoying TV series, documentaries, feature films and mobile games across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any Internet-connected screen. Members can p...
#allquietonthewesternfront #netflix #war #soldiers #shorts #shortsfeed #youtubeshorts
Want to see REAL WARFARE recreated in a movie? All Quiet on the Western Front used ACTUAL WWI German veterans for authenticity! #AllQuietontheWesternFront
JRE Podcast Host, UFC Commentator & Stand Up Comic Joe Rogan Talks To Comedian Bert Kreischer About The Time In 1914 WW1 Where German And American Soldiers Sung Christmas Carols Together And Played Football🤯 https://www.instagram.com/_mind.lab/ #joerogan #shorts #ww1
Explore the Battle of Verdun during World War I, where French forces withstood a massive German assault, marking a pivotal moment on the Western Front. #BattleOfVerdun #WorldWarI #FrenchArmy #MilitaryHistory #HistoricalEvents #Resilience #AlliedForces #GermanOffensive #Pétain #WarMemorial #Shorts
In June of 1944 the Allies had gathered an overwhelming force in Britain and were preparing to begin the decisive campaign against Germany in Western Europe. They planned to land their forces in France and reach the German border by May of 1945. For Germany the only path to victory was pushing the Allied landings into the sea and destroying their forces. 00:00 - Introduction 00:29 - Operation Overlord 01:41 - Breakout form Normandy 02:14 - Falaise encirclement 02:46 - Retreat to the Seine 03:23 - New Allied objectives 04:22 - Pursuit to the Siegfried line 05:12 - Operation Market Garden 06:21 - Opening the Channel ports 07:13 - Battles of Aachen 07:33 - Battle of Nancy 08:03 - Operation Dragoon 09:18 - Outro and Patreon credits Background music used during the map animation custom made ...
Play War Thunder for FREE on PC, PS®4 and Xbox One: https://gjn.link/EastoryWT Follow the link to download the game and get your exclusive bonus now. See you in battle! It is early 1940. The Allies are counting on a long war and are slowly building up their forces to go on offensive the next year. It is in Germanys interests to attack the Allies as soon as possible to have the best chance for victory. On May 10th 1940 it launches an all out attack on France and the Low countries, beginning the Battle of France. This video uses the assets originally created for the World War Two channel: www.youtube.com/c/worldwartwo This video couldn't have been possible without my Patrons: 1st Guards Cavalry Corps, 5kyEye, Adam Coni, Adam H, alans4488, Aleksei Knorre, Aleksei Safronov, ALEX ARCHARO, A...
Группа ВК: https://vk.com/cherepashka_shusha This is my final video from the World War II series. Despite the title of the video is Western Front, I decided to include the whole European theater besides the part of the Eastern front (I have already had video about it) Timeline begins from the German invasion Poland in 1939 and ends in 1945 with surrender of Germany and the fall of the Third Reich. The war took the lives of more than 40 million people only for 6 years (not including Pacific War) and became the bloodiest conflict in the human history. Especially thanks to these authors! I used your videos as a source :D 1. https://www.youtube.com/watch?v=uyaHkceDN-8 2.https://www.youtube.com/watch?v=6SyW9F186tA 3. https://www.youtube.com/watch?v=VoCqsfYDotQ Music: 1. De Hominis Dignita...
#allquietonthewesternfront #netflix #war #soldiers #shorts #shortsfeed #youtubeshorts
Play Call of War for FREE on PC or Mobile: 💥 https://callofwar.onelink.me/q5L6/TheArmchairHistorian Receive an 13K GOLD & an Amazing New Player Pack, only available for the next 30 days! Sign up for Armchair History TV today! https://armchairhistory.tv/ Promo code: ARMCHAIRHISTORY for 50% OFF Merchandise available at https://store.armchairhistory.tv/ Check out the new Armchair History TV Mobile App too! https://apps.apple.com/us/app/armchair-history-tv/id1514643375 https://play.google.com/store/apps/details?id=tv.uscreen.armchairhistorytv Discord: https://discord.gg/zY5jzKp Twitter: https://twitter.com/ArmchairHist Sources: "A Closer Look at Churchill’s Battle of the Bulge Quote." Historian on the Warpath. Last modified April 16, 2018. https://scottmanning.com/content/churchills-battl...
Indy takes a look at the armoured beasts battling it out on the Western Front. On the German side we have vehicles like the long-serving Panzer IV, the sleek and modern Panther, and the obnoxiously heavy King Tiger. These are arrayed against the American stalwart, the M4 Sherman, and British tanks like the up-gunned Firefly, Cromwell, and Churchill. Check out The Chieftain's channel here: https://www.youtube.com/@TheChieftainsHatch Join us on Patreon: https://www.patreon.com/TimeGhostHistory Or join the TimeGhost Army directly at: https://timeghost.tv/signup/ Check out our TimeGhost History YouTube channel: https://www.youtube.com/c/timeghost Between 2 Wars: https://www.youtube.com/playlist?list=PLrG5J-K5AYAU1R-HeWSfY2D1jy_sEssNG Follow WW2 Day by Day on Instagram: @ww2_day_by_day Foll...
The First Attack of the Western Allies in WW1 The Battle of Mulhouse (August 7–10, 1914) marked the first major clash on the Western Front during World War I. As part of France’s ambitious Plan XVII, French forces advanced into the Alsace region to reclaim territory lost in the Franco-Prussian War. Initially, they captured the city of Mulhouse on August 7, raising hopes of a swift victory. However, German forces counterattacked with reinforcements, driving the French out by August 10. This back-and-forth battle revealed the challenges of modern warfare and the flaws in France’s strategy. Though it was a tactical setback for France, the fighting in Mulhouse was just the beginning of the bloody and grueling campaigns that would define the Western Front. . . . . . #History #war #battle #edu...
Discover the final phase of WW2 as Allied troops race towards Germany and Stalin begins to redraw the political map of Europe. General Montgomery unveils Operation Market Garden, his bold idea to win the war, and Hitler launches one last desperate offensive resulting in the Battle of the Bulge. Also witness the shocking discovery of the Nazi concentration camps. 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 and presented by world-renowned historians Dan Snow, Suzannah Lipscomb, Matt Lewis and more. Get 50% off your first 3 months w...
Western Front may refer to:
(Hey Madlib, what's the word for the day?)
I got to get all this stress off my chest
One of my closest niggas told me he had to get a vest
Some niggas might be rolling up to his wifes[?]
Talking about they going to rob him, put his manhood to the test
(Why brothers got to act so scandalous?)
(Mad at us) 'cos we ain't no janitors
Always looking at me smiling, popping off the lip
Asking how much I clock, talking about my grip
Talking about how they saw me in a magazine, "you're looking clean"
(What's up with hooking up my team?) - Man, I ain't got no label
When I ain't around, my name-o is up in your mouth
Your whole story is fishy like you went down South
Acting like you've been around me before I was paying dues
You'll never know what I've been through until you've been in these shoes (true)
Everybody want to act like they know
Everybody want to act, think[?], front
Triple egos
Snakes all around my back, trying to see where I at
Suckers acting like they know me,
Met them last night and now they're talking about that they my homies
Yo it, always get frustrating when a nigga starts hating
And then be out like Walter Payton
Only see them when they need something
But never ever see them when you need something
That's how it's been so I don't play the fool nigga
You should too[?], go back to school
Prepare to get used, like honeys on booze, fools
You choose whether you want to lose
But when I ain't around, my name-o is up in your mouth
Your whole story is fishy like you went down South
Acting like you've been around me before I was paying dues
You'll never know what I've been through until you've been in these shoes (true)