- published: 08 Oct 2018
- views: 70348
'+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; })); }); -->
Bavarians (Bavarian: Boarn, Standard German: Bayern) are an ethnographic group of Germans of the Bavaria region, a state within Germany. The group's dialect or speech is known as the Bavarian language, native to Altbayern ("Old Bavaria"), roughly the territory of the Electorate of Bavaria in the 17th century.
Like the neighboring Swabians and Austrians, Bavarians are traditionally Catholic. In much of Altbayern, membership in the Catholic church remains above 70%, and the center-right Christian Social Union in Bavaria (successor of the Bavarian People's Party of 1919–1933) has traditionally been the strongest party in the Landtag, and also the party of all Ministers-President of Bavaria since 1946, with the single exception of Wilhelm Hoegner, 1954–1957.
There is no ethno-linguistic distinction between Bavarians and Austrians. The territory of Bavaria has changed significantly over German history; in the 19th century the Kingdom of Bavaria acquired substantial territories of Franconia and Swabia, while having to return territories to Austria who had become Bavarian only a few years earlier. Thus, only three of the seven administrative regions of the state of Bavaria are culturally Bavarian: Upper Bavaria (Oberbayern), Lower Bavaria (Niederbayern) and the Upper Palatinate (Oberpfalz), to the exclusion of Bavarian Franconia (historically inhabited by Franks) and Bavarian Swabia (inhabited by Swabians).
Coordinates: 51°N 9°E / 51°N 9°E / 51; 9
Germany (/ˈdʒɜːrməni/; German: Deutschland [ˈdɔʏtʃlant]), officially the Federal Republic of Germany (German: Bundesrepublik Deutschland, listen ), is a federal parliamentary republic in West-Central Europe. It includes 16 constituent states and covers an area of 357,021 square kilometres (137,847 sq mi) with a largely temperate seasonal climate. Its capital and largest city is Berlin. With about 81.5 million inhabitants, Germany is the most populous member state in the European Union. After the United States, it is the second most popular migration destination in the world.
Various Germanic tribes have occupied northern Germany since classical antiquity. A region named Germania was documented before 100 AD. During the Migration Period the Germanic tribes expanded southward. Beginning in the 10th century, German territories formed a central part of the Holy Roman Empire. During the 16th century, northern German regions became the centre of the Protestant Reformation.
West Germany is the common English name for the Federal Republic of Germany or FRG (German: Bundesrepublik Deutschland or BRD) in the period between its creation on 23 May 1949 to German reunification on 3 October 1990. This period is referred to as the Bonn Republic (German: Bonner Republik) by academic historians, an earlier term being the Bonn State (German: Bonner Staat).
During this period NATO-aligned West Germany and Warsaw Pact-aligned East Germany were divided by the Inner German border. After 1961, West Berlin was physically separated from East Berlin as well as from East Germany by the Berlin Wall. This situation ended when East Germany was dissolved and its five states joined the ten states of the Federal Republic of Germany along with the reunified city-state of Berlin. With the reunification of West and East Germany, the Federal Republic of Germany, enlarged now to sixteen states, became known simply as "Germany".
The Federal Republic of Germany was established from eleven states formed in the three Allied Zones of occupation held by the United States, the United Kingdom and France (the "Western Zones"). Its population grew from roughly 51 million in 1950 to more than 63 million in 1990. The city of Bonn was its de facto capital city (Berlin was symbolically named the de jure capital city in the West German Basic Law). The fourth Allied occupation zone (the East Zone, or Ostzone) was held by the Soviet Union. The parts of this zone lying east of the Oder-Neisse were in fact annexed by the Soviet Union and communist Poland; the remaining central part around Berlin became the communist German Democratic Republic (abbreviated GDR; in German Deutsche Demokratische Republik or DDR) with its de facto capital in East Berlin. As a result, West Germany had a territory about half the size of the interbellum democratic Weimar Republic.
Germany (9 May 1991 - December 2013) was a German Thoroughbred racehorse who won 9 of his 17 starts including 2 Group 1's in which he was ridden Frankie Dettori.
Germany was a bay horse with black socks sired by 1987 the Prix de l'Arc de Triomphe winner Trempolino, who was bred in United States and bought as a yearling for $70,000 by the British trainer Ben Hanbury on behalf of Jaber Abdullah at the 1992 Keeneland September sales. He was trained by Bruno Schütz and was raced almost all of his career in Germany with an exception of the 1995 British Champion Stakes in which he failed to give his running on the good to firm ground.
Germany raced only 4 times in his first 2 seasons and acquired his black type as a 2yo when winning the Kronimus-Rennen listed race in 1993 over a distance of 7 furlongs but was forced into a long absence having sustained a fracture in his off-fore.
He made his reappearance at four year old and was campaigned over middle distance races winning his first 2 starts in listed and group 3 events in the 1995 spring before adding couple more top level wins in the summer including the Group 1's Bayerisches Zuchtrennen and Grosser Preis von Baden, in the latter beating by 8 lengths in 3rd spot the Irish group performer Right Win who had shown great form in previous 2 seasons winning the Group 2 Gallinule Stakes when ridden by jockey Lester Piggott and Group 1 Gran Premio d'Italia. Germany's last and 8th start of the season was in the British Champion Stakes where after a long campaign and standard of opposition better than on home soil he could not finish in the placings.
Günther Hochhäuser is a passionate marksman who fights to maintain the traditions of his homeland, Upper Bavaria. The Christian Social Union, who has been in power here for decades, could get a drubbing in upcoming elections -- to Hochhäuser’s dismay. Marksmen's clubs stand for everything Bavaria is famous for: folk costumes, cultural lore and tradition. Their chairmen include illustrious public figures, such as former Pope Benedict and Prince Max, Duke in Bavaria. Marksman Günther Hochhäuser says "We are a pillar of strength." But that pillar looks to be on increasingly shaky ground. Bavaria and even the seemingly timeless Inn-Chiemgau shooting club are being overtaken by the tides of change. Until recently, voting for the conservative CSU party was a given. But recent polls say that th...
In this video I compare the Bavarian dialects of Bavaria, Austria, and South Tyrol with Standard German. *Check out the excellent German course "German Uncovered": ▶ https://bit.ly/Uncovered-German ◀ See Uncovered courses for all languages: ▶ https://bit.ly/3fYI1uo ◀ Special thanks to Robbie for his Standard German samples, and Simon Bun and Robert Kalem for their help with Bavarian samples! And thanks to others for their suggestions, including Benedikt Peter. These amazing people support Langfocus at http://patreon.com/langfocus : Nobbi Lampe-Strang, AmateurTextualCriticism, Anjo Barnes, Auguste Fields, Bennett Seacrist, Brandon Gonzalez, Brian King, Clark Roth, Fiona de Visser, Georgy Eremin, Jacob Madsen, John Moffat, Karl-Erik Wångstedt, Kenny, Leon Jiang, Marcelo Loureiro, Matthe...
Thanks so much for 60 thousand subscribers, everyone! In this video we take a brief look at the history of Bavaria as a region, kingdom and state. Business Contact: [email protected] Help keep these videos going by donating on Patreon: https://www.patreon.com/funwithflags Thanks for watching, remember to subscribe to catch future videos!
Cari speaks standard German, Franzi speaks Bavarian German. They recently met and recorded a few sentences for your to find out about the differences :D Easy Languages is an international project aiming at supporting people worldwide to learn languages through authentic street interviews. We also use this format to expose our street culture abroad and create a more diverse image of our countries. Episodes are produced in local languages and contain subtitles in both the original language as well as in English. More information at http://www.easy-languages.org/ http://www.facebook.com/easylanguagestreetinterviews Easy Languages is produced by the intercultural youth media network The Global Experience: http://www.theglobalexperience.org http://www.facebook.com/theglobalexperience Host...
► GET EXERCISES FOR THIS VIDEO: https://www.easygerman.org/membership ► LISTEN TO OUR PODCAST: http://www.easygerman.fm ► LEARN GERMAN WITH OUR APP: https://www.seedlang.com ► SUBSCRIBE TO OUR CHANNEL: https://goo.gl/sdP9nz ► FACEBOOK: https://www.facebook.com/easygermanvideos ► INSTAGRAM: https://www.instagram.com/easygermanvideos ► WEBSITE: https://www.easygerman.org/ --- If you've ever been to Bavaria, you probably already know what a "Breze" (Pretzel), a "Maß Bier" (a litre of beer) and a "Weißwurscht" (Bavarian Sausage) are. But the Bavarian dialect has many more exciting words and phrases, which we will show you today. Andrea is helping us with this. She comes from Lower Bavaria and grew up with the dialect. --- Wenn ihr schon mal in Bayern wart, wisst ihr bestimmt schon, was eine “B...
It's a rather well-known fact that, in 1923, Adolf Hitler would attempt to stage a coup to overthrow the Weimar government of Germany, but, what's less well known is that, Kaiser Wilhelm, the deposed last ruler of the German Empire, believed that the Bavarian House of Wittelsbach was behind the Putsch, in an attempt to seize the German Imperial Throne for themselves! In reality, the Wittelsbachs despised Hitler and the Nazis, and denounced the Putsch, but, what if this were true? What if, not only, the Wittelsbachs were behind the Putsch, but if it actually succeeded? Enjoy! DISCORD: https://discord.gg/mABpq75uZQ TWITTER: https://twitter.com/joshsulhistory INSTAGRAM: https://www.instagram.com/josh.sullivan.history MUSIC: Westerwald Marsch: https://www.youtube.com/watch?v=_FA5IndMREY K...
Bavaria is easily one of the most magical regions in the world! Enjoy this 4K travel guide across Germany's state of Bavaria. From fairy tale castles, to the wonders of Berchtesgaden, Bavaria is one enchanting place. Where is your favorite place to visit in Bavaria? My relaxation channel - https://www.youtube.com/scenicrelaxationfilms My Travel Videos: Top 10 Places to Visit In 2022 - https://youtu.be/Hmu4bQxfpDA Top 100 Places In The USA - https://youtu.be/C2EtUGphL04 Top 10 Places in Germany - https://youtu.be/9T49_LduzpQ Top 10 Places In The Mediterranean - https://youtu.be/cdVVWueGBio Top 10 Places In The Alps - https://youtu.be/Y97wob0akMg Top 10 Places in Amalfi - https://youtu.be/Mupom-sgjAU Top 10 places In Switzerland - https://youtu.be/3ldqFSVOxIU Top 10 Places In Ita...
Learn German with Easy German: Dana asks people in Munich about what's typical Bavarian! If you wanna find out more about the adventure of living in Germany check out Danas Youtube channel: https://www.youtube.com/WantedAdventure :D ► BECOME A PATRON OF EASY GERMAN: https://www.patreon.com/easygerman ► SUBSCRIBE TO EASY GERMAN: https://goo.gl/sdP9nz ► FOLLOW US ON FACEBOOK: http://www.facebook.com/easygermanvideos ► CHECK OUT OUR WEBSITE: http://www.easygerman.org/ ► EASY GERMAN SHOP: http://www.shop.spreadshirt.com/easygerman ► PRODUCED IN COOPERATION WITH: http://www.theglobalexperience.org Easy German/ Easy Languages is an international video project aiming at supporting people worldwide to learn languages through authentic street interviews and expose the street culture of parti...
Recorded in Edinburg, Scotland. Bavarian is spoken by some 14,000,000 people, principally in the south German state of Bavaria, as well as in parts of Austria and Italy. Though primarily a spoken language of daily colloquial use, Bavarian does enjoy a media presence, especially in music and online, including a native edition of Wikipedia, the Boarische Wikipedia. A member of the Upper Germanic dialect continuum, it is closely related to Alemmanic, Franconian, and German, and more distantly to Frisian, Limburgish, and Dutch. Bavarian was also the native tongue of Ludwig Thoma, a nineteenth century author who composed some works in the language. Read more on Wikipedia: http://bit.ly/1NFzPnQ. The speaker(s) featured herein have not explicitly agreed to distribute this video for reuse. For in...
We start with breaking news from here in Germany, where Chancellor Olaf Scholz has lost a vote of confidence in parliament. Scholz won the support of only 207 lawmakers -- far short of the majority needed to win. He had been expected to lose the vote after his three-party coalition collapsed in early November, when he fired his finance minister in a dispute over how to revitalize Germany's stagnant economy. It paves the wave for snap elections in February. For more news go to: http://www.dw.com/en/ For more news, analysis and background information on the German election 2025 go to our dedicated page: https://www.dw.com/en/german-election-2025/t-70794502 Follow DW on social media: ►Instagram: https://www.instagram.com/dwnews ►TikTok: https://www.tiktok.com/@dwnews ►Facebook: https://w...
Alice Weidel, the candidate from the far-right Alternative for Germany (AfD), sits down for an interview with Bloomberg's Oliver Crook in Berlin during which she discusses her key priorities should she become the next Chancellor. Weidel also talks about the European Union, Germany's energy situation, and her "huge hopes" for US President-elect Donald Trump's second term. 00:00 - Alice Weidel on AfD party, proposed policies 02:36 - AfD candidate Weidel on what she would do if she were to become Chancellor 03:10 - Weidel on issues within EU, European Commission 05:00 - How Weidel would approach Dexit, withdrawal from EU, european treaties, free trade zone 06:32 - AfD's co-chair on Brexit, European Union market, lack of competition 08:18 - Weidel on Donald Trump, what to expect from US presi...
Giving a 👍 really helps me out! Cheers. You can also read my articles here: https://www.heaver.news "German AFD’s Weidel and CDU’s Merz tie for top spot in poll for future chancellor" Brussels Signal: https://brusselssignal.eu/2024/12/german-afds-weidel-and-cdus-merz-tie-for-top-spot-in-poll-for-future-chancellor/ Business Contact: [email protected]
Germany and France, the EU's two most powerful countries, are in crisis. In both cases, governments have collapsed primarily over a failure to agree on how to manage the economy. While both nations are struggling with the decline of core industries, when it comes to public spending, they have completely opposite problems. DW Business speaks to Carsten Brzeski, Chief Eurozone Economist at ING, about the impact political instability is having on the European economy and what needs to be done to turn things around. For more news go to: http://www.dw.com/en/ For more news, analysis and background information on the German election 2025 go to our dedicated page: https://www.dw.com/en/german-election-2025/t-70794502 Follow DW on social media: ►Instagram: https://www.instagram.com/dwnews ►TikT...
Syrians make up the largest group of foreign doctors in Germany. Around 6,000 now live and work here after fleeing the civil war in their homeland. Now after the fall of the Assad regime, the German government wants Syrian doctors to stay, saying their work has become indispensible for the health care system. For more on this, we talk to Kristine Lütke, member of the Bundestag's health commitee. She's from the FDP party. And we talk to Jens Spahn, member of the Bundestag and the CDU party. 00:00 Syrian doctors in Germany 03:04 Interview with Kristine Lütke, member of the Bundestag 07:19 Interview with Jens Spahn, member of the Bundestag For more news go to: http://www.dw.com/en/ For more news, analysis and background information on the German election 2025 go to our dedicated page: ...
Planning to visit Germany for the first time? In this video, I'm sharing all my best Germany travel tips for new visitors, from important must-knows for your Germany trip to common mistakes that tourists make in Germany. Don't miss this video if you're planning your own trip to Germany! ➡️ Follow me on Instagram for real-time Stories and shenanigans: https://www.instagram.com/happytowander ➡️ Follow me on TikTok for more casual content: https://www.tiktok.com/@happytowander 0:00 INTRODUCTION 0:14 TRAVEL PLANNING TIPS FOR GERMANY 2:39 CULTURE & ETIQUETTE TIPS FOR GERMANY 7:38 TRANSPORT TIPS & GETTING AROUND IN GERMANY 12:52 SIGHTSEEING TIPS FOR GERMANY 13:44 FINAL TIPS FOR WHEN YOU ARRIVE IN GERMANY GERMANY CITY PASSES Note - the links below are affiliate links which means I earn a small...
Learn more German vocab, grammar and more with our partner app Seedlang: https://www.seedlang.com --- LEARN GERMAN WITH US: 💡 JOIN OUR COMMUNITY: https://www.easygerman.org/membership 🎧 LISTEN TO OUR PODCAST: http://www.easygerman.fm 📺 SUBSCRIBE ON YOUTUBE: https://goo.gl/sdP9nz WATCH MORE: ➕ INSTAGRAM: https://www.instagram.com/easygermanvideos ➕ FACEBOOK: https://www.facebook.com/easygermanvideos ➕ TIKTOK: https://www.tiktok.com/@easygerman ➕ OUR WEBSITE: https://www.easygerman.org/ --- In this episode, Janusz and I take a walk through Berlin, in slow German. It's December, it's cold and gray in Germany's capital. But there's still plenty to do and see: Late-night kiosks, graffiti and, of course, a visit to the Christmas market. There I try mulled gin, Janusz drinks hot apple juice and ...
Germany is easily one of the most incredible countries in the world! Enjoy this 4K travel guide across Germany. From the towering Bavarian Alps, to magical castles, Germany truly has it all. Where is your favorite place to visit in Germany? My relaxation channel - https://www.youtube.com/scenicrelaxationfilms My Travel Videos: Top 25 Medieval Places - https://youtu.be/Po9na5i_0FE Top 10 Places in Italy - https://youtu.be/zS4AP0Q8L8g Top 10 Places in Russia - https://youtu.be/_V0hvU4d7-o Top 25 Places In The USA - https://youtu.be/JUfybRQc_1o Top 10 Places To Visit in 2021 - https://youtu.be/h_xjfqrFl7o Top 10 Places In Norway - https://youtu.be/TuOIW144_BY Top 100 Places in Europe - https://youtu.be/ixIzimI35SE Top 10 Places in Portugal - https://youtu.be/1cAK01jmTvo Top 10 Pl...
#Germany #GermanHistory #WW2 #SovietUnion #USSR #Poland #Austria #czechoslovakia #USA #UnitedStates #germanlanguage #EuropeanUnion #Europe #WesternEurope #EasternEurope #Geography #Shorts #Maps #Countries ---------------------------------------------------------------------------- This video shows why Did Germany lose ww2 so Germany was almost unstoppable During the start of war, it easily annexed countries like Czechoslovakia Austria and Poland, and Germany also Defeated France which was one of the strongest countries, then why did Germany still lose the war, so Firstly Germany made a huge mistake by Invading the Soviet union, This invasion was a terrible idea because Germany was not ready to face the full military power of Soviet Union, Secondly, on September 1940 Germany made another...
West Germany was a nation of over 50 million people and was home to many of Europe's largest cities. However, its Capital wasn't one of its major hubs like Munich, Frankfurt or Cologne but instead was the small town of Bonn. So why was this town chosen as the capital of one of Europe's most important country? To find out watch this short and simple animated history documentary. A special thanks to my patreon supporters: Jens Koch-Nommensen Øystein Alsaker Arcedia Sergio M. Vela Emil Świderek George Kapoyanis Eclipse Gin Aldeguer Steven B Dennis Vandeban Brendan W robert lalonde Mathias.C Hasmuffin Michael Kram CharÉTS Franco La Bruna Ethan Don Bonnigan Southside Mitch Bradley chaulk Justin Kubusch Adam Barrett John Heath Robertson JakeBak0905 Person Cippalippus Leonard Frank His Empyre...
Chapters: 00:00 Introduction # Music credit: Extenz - Gravity (Vlog No Copyright Music): https://youtu.be/Dqads4X-WuQ Cinematic Background Music - Mu Hanz: https://youtu.be/S6W9bNo4wHk Epic Adventure Cinematic Music - Infraction: https://youtu.be/HvtIGihCGUE Inspiring Cinematic Music - Michael Nik: https://youtu.be/heS-eGCbyVk Disclaimer ▶ All information in this video is based on Internet data. This YouTube Channel does not claim on the truth of the information provided. Some of the pictures and footage in this video are for examples only. All credit goes to their respective owners. Note ▶ For any copyright issues, please reach out to us first before filing a claim with YouTube. Send us a message or email detailing your concerns and we'll make sure the matter is resolved immediat...
On the final leg of the Meet the Germans road trip, Rachel heads to the four westernmost German states: North Rhine-Westphalia, Rhineland-Palatinate, Hesse and Saarland. From coal mining to the Brothers Grimm, Karneval to the French border – there's a lot to get through in this episode, so buckle up! On her journey around Germany, Rachel has been discovering the unique traditions, characteristics and culture that the different regions have to offer. Check out the first three parts of the road trip in the Meet the Germans playlist: https://bit.ly/MtG_YouTubePlaylist What would you say defines the western region of Germany? Do you have any favorite spots there? #meetthegermans #northrhinewestphalia #brothersgrimm #travelgermany #hesse #saarland #karneval #rhinelandpalatinate Follo...
Aloe Island Posse - High Tide
Unlike the previous world war, Germany was allowed to rearm after World War 2 in spite of the amount of damage the country had done during it. Given how badly ruined much of Europe was, why did the victorious allied powers allow Germany to rearm? To find out watch this short and simple animated history documentary. A special thanks to my Patreon supporters below: Rikspuckot Øystein Alsaker Sergio M. Vela Myller MajesticFirebird Harley Raptopoulos George Kapoyanis Steven B robert lalonde CharÉTS Dennis Vandeban Mathias.C Brendan W Gin Aldeguer Ethan Heath Robertson Michael Kram Southside Mitch Justin Kubusch Leonard Frank Cippalippus ChrisRom Sean Uzar Travis Mount Steven Gibson Aaron Conaway Christopher Godfrey Nathan Mendelsohn Ron Johnson Alex Teplyakov Dr. Schtnizel Matthew Toles zoc...
1949 was a special year in German history as two separate states were founded almost in parallel. The division into East and West Germany reflected the division of the world into two during the Cold War. The East-West conflict was to last over 40 years. From today's point of view, what happened back then seems logical. Today we also know that the German-German divide lasted a long time, but it was not irreversible. And it seems almost inevitable that the democratic values of the West German constitution 1949 would prevail as the basis of society - including in the reunified Germany. But the Germans in 1949 couldn't even have guessed at all this. They were experiencing an unprecedented historical experiment in both East and West. It was a radically new situation: What if they made fundamen...
Get Nebula for 40% off an annual subscription using my link: https://go.nebula.tv/neo Watch my exclusive Nebula video about the Balloon Escape: https://nebula.tv/videos/neo-the-balloon-escape ----------------------- Examining the border wall that separated East and West Berlin. Images via Getty, AP Newsroom, Reuters Map source by MapTiler / OpenStreetMap Contributors via Geolayers 3
The Berlin wall would become a symbol of ideological division and suppression of human rights during the Cold War. In August 1961, the Communist government of the German Democratic Republic of East Germany began construction of the wall and placement of barbed wire between west Berlin and the East. Please consider supporting our videos on Patreon or through Youtube sponsorships https://www.patreon.com/simplehistory Copyright: DO NOT translate and re-upload our content on Youtube or other social media SIMPLE HISTORY MERCHANDISE Get the SImple History the Cold War: https://www.amazon.com/Simple-History-Cold-Daniel-Turner/dp/153703619X/ T-Shirts https://www.zazzle.com/simplehistory/gifts?cg=196817456987349853 Simple history gives you the facts, simple! See the book collection here...
Curators Lynette Roth and Peter Murphy provide an overview of the exhibition "Made in Germany? Art and Identity in a Global Nation," on view at the Harvard Art Museums September 13, 2024–January 5, 2025. The exhibition offers a range of reflections on German national identity, which was shaped by labor migration following World War II, the unification of East and West Germany in 1990, and the influx of asylum seekers to the country since 2015. As the pointedly interrogative title suggests, "Made in Germany?" asks, rather than offers ready answers to, the question of who or what represents Germany today. Explore more about our special exhibition and related events and publication via https://harvardartmuseums.org/madeingermany --- "Made in Germany? Art and Identity in a Global Nation" w...
▶ Check out my latest video: https://www.youtube.com/watch?v=6uYyj8Nvgco ▶ Follow me on Twitter: https://twitter.com/GKonYoutube ▶ In this video I talk about how, despite having been reunited since 1990, Germany is still - statistically - divided in two. Showing the lasting consequences of its East-West Cold War division. ▶ Become a member on Patreon & get exclusive content! https://www.patreon.com/generalknowledge ▶ Join the Discord Server: https://discord.com/invite/f4neAVWZfF ▶ Business Contact: [email protected] ▶ Thanks for watching, remember to subscribe to catch future videos!
Sponsored: Use my link to start your 7-day free trial with Blinkist and get 25% off of a Premium Membership! https://www.blinkist.com/felifromgermany Is there still a divide between East and West Germany today? What are the differences? In the fourth episode of my #askagerman mini-series, I try to give you guys an idea of what the situation is like over 30 years after the German reunification. Check out all previous videos here ▸https://youtube.com/playlist?list=PLvcmNAGhcEEMDhzXWzeIsCN0eFfeWNuhi MY SHOP IS BACK! Get your Bavarian beer mug, Servus t-shirt, beanie, or baby onesie ▸https://felifromgermany.com/ Check out my PODCAST (with Josh)▸ https://www.youtube.com/understandingtrainstation or https://linktr.ee/Understandingtrainstation Further resources on this topic: How Germany Is St...
Get an exclusive @Surfshark deal! Enter promo code PRESENTPAST for an extra 3 months free at https://surfshark.deals/presentpast. The other side of East Germany's History. Thanks a bunch to Katja for speaking with me. Her book 'Beyond the Wall' is great and you should read it. Sources and further reading: Ruud van Dijk, ‘De lange weg naar de Duitse deling. Over het internationale schaakspel 1945-1949’, in: Krijn Thijs, (red.), Duitsland 1918-1991. Twintig vensters op een bewogen eeuw (Amsterdam 2021) Herfried Münkler, Die Deutschen und ihre Mythen (Berlin 2009). Herfried Münkler, 'Der Antifaschismus als Gründungsmythos der DDR', in: Reinhard Brandt en Steffen Schmidt (red.), Mythos und Mythologie (Berlin 2004) Wolfgang Bialas, ‘Antifaschismus als Sinnstiftung. Konturen ein...
Kano - Another Life Essentially a remake of one of my first videos to go 'big' all the way back in I think 2016 before it was hit with copyright.
One of the Cold War's biggest moments began at a routine press conference. Become a Video Lab member! http://bit.ly/video-lab The fall of the Berlin Wall has a lot of memorable moments: US President Ronald Reagan’s declaration to “tear down this wall”; David Hasselhoff singing at the Brandenburg Gate; and Berliners wielding pickaxes and hammers, tearing apart the visible symbol of a divided Europe. But a less spectacular moment actually triggered the crumbling of the wall. It happened at a routine press conference on November 9th, 1989, when East German spokesperson Günter Schabowski was handed an announcement about relaxed travel regulations. In his lack of preparation, he mistakenly insinuated that the checkpoints in the Berlin Wall — which up until then were guarded by soldiers with...
Bavarians (Bavarian: Boarn, Standard German: Bayern) are an ethnographic group of Germans of the Bavaria region, a state within Germany. The group's dialect or speech is known as the Bavarian language, native to Altbayern ("Old Bavaria"), roughly the territory of the Electorate of Bavaria in the 17th century.
Like the neighboring Swabians and Austrians, Bavarians are traditionally Catholic. In much of Altbayern, membership in the Catholic church remains above 70%, and the center-right Christian Social Union in Bavaria (successor of the Bavarian People's Party of 1919–1933) has traditionally been the strongest party in the Landtag, and also the party of all Ministers-President of Bavaria since 1946, with the single exception of Wilhelm Hoegner, 1954–1957.
There is no ethno-linguistic distinction between Bavarians and Austrians. The territory of Bavaria has changed significantly over German history; in the 19th century the Kingdom of Bavaria acquired substantial territories of Franconia and Swabia, while having to return territories to Austria who had become Bavarian only a few years earlier. Thus, only three of the seven administrative regions of the state of Bavaria are culturally Bavarian: Upper Bavaria (Oberbayern), Lower Bavaria (Niederbayern) and the Upper Palatinate (Oberpfalz), to the exclusion of Bavarian Franconia (historically inhabited by Franks) and Bavarian Swabia (inhabited by Swabians).
I want to -- teach you how to stand
I want to -- take you by your hand
I want to -- lift up all your shame
I want to -- not dwell upon your grown pain
I want to -- learn to want again
I want to -- lift out all that's stained
Chorus:
When a fall decides
What you are gonna do
And the fallin' tides
Leave you spiraling through
Gonna take your time of lament and shame
When the moon above,
Remain your only friend
I want to -- show you how to feel
I want to -- look upon what's real
I want to -- can't realize what's gone
I want to -- till your life has come undone
I want to -- shake your world away
I want to -- I can't change the things you said
When a fall decides
What you are gonna do
And the fallin' tides
Leave you spiraling through
Gonna take your time of lament and shame
When the moon above,
Remain your only friend
You fall through
You fall through
When a fall decides
What you are gonna do
And the fallin' tides
Leave you spiraling through
Gonna take your time of lament and shame
When the moon above,
Remain your only friend