- published: 11 Nov 2020
- views: 161308
'+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; })); }); -->
William II (Willem Frederik George Lodewijk, anglicized as William Frederick George Louis; 6 December 1792 – 17 March 1849) was King of the Netherlands, Grand Duke of Luxembourg, and Duke of Limburg.
William II was the son of William I and Wilhelmine of Prussia. When his father, who up to that time ruled as sovereign prince, proclaimed himself king in 1815, he became Prince of Orange as heir apparent of the Kingdom of the Netherlands. With the abdication of his father on 7 October 1840, William II became king. During his reign, the Netherlands became a parliamentary democracy with the new constitution of 1848.
William II was married to Anna Pavlovna of Russia. They had four sons and one daughter. William II died on 17 March 1849 and was succeeded by his son William III.
Willem Frederik George Lodewijk was born on 6 December 1792 in The Hague. He was the eldest son of King William I of the Netherlands and Wilhelmine of Prussia. His maternal grandparents were King Frederick William II of Prussia and his second wife Frederika Louisa of Hesse-Darmstadt.
Wilhelm II or William II (German: Friedrich Wilhelm Viktor Albrecht von Preußen; English: Frederick William Victor Albert of Prussia; 27 January 1859 – 4 June 1941) was the last German Emperor (Kaiser) and King of Prussia, ruling the German Empire and the Kingdom of Prussia from 15 June 1888 to 9 November 1918. He was the eldest grandchild of the British Queen Victoria and related to many monarchs and princes of Europe.
Crowned in 1888, he dismissed the Chancellor, Otto von Bismarck, in 1890 and launched Germany on a bellicose "New Course" in foreign affairs that culminated in his support for Austria-Hungary in the crisis of July 1914 that led in a matter of days to the First World War. Bombastic and impetuous, he sometimes made tactless pronouncements on sensitive topics without consulting his ministers, culminating in a disastrous Daily Telegraph interview in 1908 that cost him most of his influence. His top generals, Paul von Hindenburg and Erich Ludendorff, dictated policy during the First World War with little regard for the civilian government. An ineffective war-time leader, he lost the support of the army, abdicated in November 1918, and fled to exile in the Netherlands.
William II Jordan (died 1109) was the Count of Berga beginning in 1094, the Count of Cerdanya beginning in 1095, and Regent of the County of Tripoli beginning in 1105.
He was the son of William I of Cerdanya and Sança, daughter of Ramon Berenguer I of Barcelona. William accompanied Raymond IV of Toulouse, one of the leaders of the First Crusade, to the Holy Land. Raymond died in the east in 1105, leaving his young son Alfonso-Jordan as lord of Mons Peregrinus and Tortosa and nominal Count of Tripoli (which had not yet been captured by the crusaders). Since Alfonso-Jordan was still a child, Raymond's soldiers chose William-Jordan as regent.
Meanwhile in Toulouse, Raymond's elder son Bertrand was ruling in his absence. After Raymond's death the Barons of Toulouse chose Alfonso to replace Bertrand, who, now overthrown, travelled to the east, arriving at Mons Peregrinus in 1108 to claim it for himself. There, he quarrelled with William over the inheritance of the Raymond's lordship, and over the regency of still-unconquered Tripoli. William allied himself with Tancred, Prince of Galilee, at the time Regent of the Principality of Antioch, while and Bertrand asked Baldwin I of Jerusalem to intervene. Baldwin I, Baldwin of Bourcq, and Joscelin of Courtenay allied with Bertrand and William and Tancred were forced to compromise. Tancred was forced to give up his claim to the County of Edessa (but was allowed to keep Antioch); William and Bertrand divided Tripoli between them, recognizing Tancred and Baldwin I as their respective overlords.
Jordan is a village in the town of Waterford, Connecticut, and the historic center of the town. It was named from the Jordan River. The village was listed on the National Register of Historic Places as Jordan Village Historic District in 1990. The district includes 58 contributing buildings and one other contributing site over an area of 57 acres (23 ha). It includes examples of Greek Revival and Queen Anne architectural styles.
Jordan Village is located on land known historically as Jordan Plain, a flat land area at the head of Jordan Cove, an estuary off Long Island Sound. The historic district surrounds the intersection of Rope Ferry Road and North Road.
Jordan (died in 982 or 984) was the first Bishop of Poland from 968 with his seat, most probably, in Poznań. He was an Italian or German.
Most evidence shows that he was missionary bishop subordinate directly to the Pope. He arrived in Poland, probably from Italy or the Rhineland, in 966 with Doubravka of Bohemia to baptise Mieszko I of Poland. After the death of Jordan until 992 the throne of the Bishop of Poland was vacant, or there was a bishop of unknown name (the first theory is more probable). His successor, from 992, was Unger.
Katie Price (born; Katrina Amy Alexandra Alexis Infield 22 May 1978), previously known by the pseudonym Jordan, is an English television personality and glamour model.
Her time as topless female glamour model in a pictorial Page 3 in British tabloid newspaper The Sun shot Price into the limelight. Her placement in the public spotlight allowed Price to expand into a variety of different industries including television, books, fashion and music.
Price has had many highly publicised relationships and has been married three times, to singer Peter Andre (2005–2009), to professional fighter Alex Reid (2010–2011) and to builder and part-time stripper Kieran Hayler (2013–). In April 2012, Price's net worth was estimated at £45 million.
Born in 1978 in Brighton, East Sussex, southeast England, Katie Price was the only child of Amy (née Charlier) and Ray Infield. Her father left the family when she was four, and in 1988 her mother married builder Paul Price, after which she acquired the surname Price. From two of her mother's other's marriages, she has an older half-brother named Daniel and a younger half-sister named Sophie. Her maternal grandmother was Jewish, but she is not religious.
RADIO STATION | GENRE | LOCATION |
---|---|---|
Mazaj 95.3 FM | World Middle East | Jordan |
Beat FM (JO) | Pop | Jordan |
Sawt el Ghad Amman | World Middle East | Jordan |
Halimiat | World Middle East | Jordan |
GAUMONT BRITISH NEWSREEL (REUTERS) To license this film, visit https://www.britishpathe.com/video/VLVA8DAWBGDVTYXXD8UFGVEVQUF8D-NETHERLANDS-KAISER-WILHELM-II-OF-GERMANY-CHOPPING-WOOD Footage of Kaiser Wilhelm II of Germany chopping wood following announcement he has influenza. Full Description: NETHERLANDS: Kaiser Wilhelm II (Emperor of Germany) in grounds of house / Kaiser Wilhelm II chopping wood Kaiser Wilhelm II; Germany Background: Footage of Kaiser Wilhelm II of Germany chopping wood following announcement he has influenza. FILM ID: VLVA8DAWBGDVTYXXD8UFGVEVQUF8D To license this film, visit https://www.britishpathe.com/video/VLVA8DAWBGDVTYXXD8UFGVEVQUF8D-NETHERLANDS-KAISER-WILHELM-II-OF-GERMANY-CHOPPING-WOOD Archive: Reuters Archive managed by: British Pathé
Check out Squarespace: http://squarespace.com/biographics for 10% off on your first purchase of a website/domain using the code BIOGRAPHICS. Thanks to Squarespace for the sponsorship. → Subscribe for new videos at least twice a week! https://www.youtube.com/c/biographics?sub_confirmation=1 Love content? Check out our other YouTube Channels: Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw TopTenz: https://www.youtube.com/user/toptenznet Eric's Stuff: Storyrant: https://www.youtube.com/@UC6Sk2h2WsYMxnGERAH_FbGg OEI: Analog Horror Experiment: https://www.youtube.com/@UCsz5l0hY67TGoJR0CZiWVnA Free Scifi Horror Ebook: https://dl.bookfunnel.com/1cw07o2uyb Links to Books and Socials: https://linktr.ee/EricMalikyte Karl's Socials: Fact Fiend: https://www.youtube.co...
Buy the European Royal Family Tree chart: https://usefulcharts.com/products/european-royal-family-tree Buy the Matrilineal Dynasties of Europe chart: https://usefulcharts.com/collections/royal-family-trees/products/matrilineal-dynasties-of-europe CREDITS: Charts & Narration by Matt Baker Animation by Syawish Rehman Audio editing by Ali Shahwaiz Theme music: "Lord of the Land" by Kevin MacLeod and licensed under Creative Commons Attribution license 4.0. Available from http://incompetech.com
William III was King of the Netherlands and Grand Duke of Luxembourg from 1849 until his death in 1890. He was also the Duke of Limburg from 1849 until the abolition of the duchy in 1866. William was the son of King William II and Anna Pavlovna of Russia. On the abdication of his grandfather William I in 1840, he became the Prince of Orange. On the death of his father in 1849, he succeeded as King of the Netherlands. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
In the Netherlands, King William II supports a new constitution and reforms, successfully avoiding revolution. Meanwhile, Frederick VII of Denmark, who abolished royal absolutism in January, also sidesteps unrest but faces a German nationalist revolt in Schleswig-Holstein, leading to war with the German Confederation. 🇳🇱⚔️🇩🇰 #DutchReforms #KingWilliamII #FrederickVII #SchleswigHolstein #GermanConfederation #19thCentury #EuropeanHistory #german #europe #german #germany #revolution #confederation #witness #youtubeshorts #youtube #youtuber #shortvideo #shorts #battle #army #armylover #life #edit #video #viral #videos #info #information #informative #didyouknow #instagram #fypyoutube #fypシ゚viral #fyp #entertainment #past #history #historyfacts #historia #fact #facts #real #education #ar...
BRITISH PARAMOUNT NEWSREEL (REUTERS) To license this film, visit https://www.britishpathe.com/video/VLVA5BY23RFOBAFPADRIY4W3QIC7D-NETHERLANDS-KAIZER-WILHELMS-ANNIVERSARY Kaizer Wilhelm II (German Emperor in exile) celebrates Anniversary. Full Description: NETHERLANDS: Huis Doorn: EXT General views Castle lived in by Kaiser Wilhelm II (German Emperor in exile) / Guests along to Castle / Travelling shot up drive to Castle / Guests leaving Band playing outside Castle / Cars arriving / 'W' symbol over entrance / Ducks in moat and more of guests outside Background: Kaizer Wilhelm II (German Emperor in exile) celebrates Anniversary. FILM ID: VLVA5BY23RFOBAFPADRIY4W3QIC7D To license this film, visit https://www.britishpathe.com/video/VLVA5BY23RFOBAFPADRIY4W3QIC7D-NETHERLANDS-KAIZER-WILHE...
William III of the Netherlands #shorts
Twitter: https://twitter.com/Tenminhistory Patreon: https://www.patreon.com/user?u=4973164 Merch: https://teespring.com/stores/history-matters-store-2 Special Thanks to the following Patrons for their support on Patreon: Alen Kevin Sanders Richard Wolfe Daniel Lambert Chris Fatta anon sharpie660 D. Mahlik Cykler770(Ger) Warren Rudkin John Garcia Andrew Niedbala Mitchell Wildoer Blaine Tillack Bernardo Santos Will Davis-Coleman Perry Gagne Jordan Mccann Sam August Block Henry Rabung Shaun Pullin Joooooshhhhh Danny Anstess Vesko Dinev Adam Barrett Armani_banani Haydn Noble Jeffrey Schneider FuzzytheFair Byzans_Scotorius Spencer Smith Gideon Rashkes Cornel Borină Josh Cornelius Colin Steele Chance Cansler Richard Manklow Pierre Le Mouel Donald Weaver Gabriel Lunde Konstantin Bredyuk João Sa...
Thank you for watching! Please subscribe for more and don’t forget to hit the bell icon so you don’t miss our new videos. https://www.youtube.com/@PeopleProfiles?sub_confirmation=1 Watch our videos advert free and listen to audio only episodes on our website. https://www.peopleprofiles.com/join/ You can also watch marathon People Profiles videos on our second channel The People Profiles Extra https://www.youtube.com/@PeopleProfilesExtra Or follow us on Twitter! https://twitter.com/tpprofiles All People Profiles scripts are researched and written by qualified Historians. The script for this video has been checked with Plagiarism and AI Detector software and scored 1% on Grammarly. In academia, a score of below 15% is considered good or acceptable. Please email us for script references and...
Try MyHeritage for 14 days and discover your past here: https://bit.ly/SirManatee 🐟 If you like my videos and want to make sure that I make more of them, you can support me here: https://ko-fi.com/sirmanatee Kaiser Wilhelm II is not the type of person who gets too little attention in historiography. One aspect that often gets overlooked however is the last stage of his life, which he spent in his Dutch exile. This video will talk about why Kaiser was forced to abdicate, what his new life in the Netherlands looked like and how he attempted to regain power. Literature: - Ashton, Nigel J. & Hellema, Duco: Hanging the Kaiser. Anglo‐Dutch relations and the fate of Wilhelm II 1918–20, in: Diplomacy & Statecraft 11 (2000), Nr. 2, pp. 53-78. - Clark, Christopher: Kaiser Wilhelm II. A Life in Po...
Please visit our new site for the serious history enthusiast: www.historyroom.org This is an excellent documentary on Wilhelm II which will be very useful for students of the Great War, German nationalism and German history in general. Uploaded for educational purposes only.
Check out the BrainFood podcast: https://itunes.apple.com/us/podcast/the-brainfood-show/id1350586459?mt=2 (Or search your favorite podcast app for “BrainFood”) →Subscribe for new videos every Monday and Thursday! https://www.youtube.com/c/biographics?sub_confirmation=1 Visit our companion website for more: http://biographics.org Credits: Host - Simon Whistler Author - Steve Theunissen Video Producer - Jennifer Da Silva Executive Producer - Shell Harris Business inquiries to [email protected] Other Biographics Videos: Grigori Rasputin: The Devil Incarnate https://youtu.be/NZOHQwzA0bM Mark Zuckerberg: Tech Visionary or Supervillain? https://youtu.be/3WCLFrb5Umo Source/Further reading: Kaiser Wilhelm II: Germany’s Last Emperor by John Van Der Kiste Wilhelm II: Prince and ...
What did Wilhelm II think of Hitler? Before the devastating era of the second world war, before the atrocities of the German state during such time, and before the man at the center of it all, there was an emperor and king who never could have predicted what was to befall his precious homeland… ♦Consider to Support the Channel of Patreon and gain cool stuff: https://www.patreon.com/Knowledgia ♦Please consider to SUBSCRIBE : https://goo.gl/YJNqek ♦Music by Epidemic Sound ♦Sources : Michael Balfour - The Kaiser and his Times, Houghton Mifflin. Giles Macdonogh - The Last Kaiser: William the Impetuous Antony Beevor - The Second World War https://encyclopedia.ushmm.org/content/en/article/the-weimar-republic https://www.facinghistory.org/weimar-republic-fragility-democracy/readings/1...
GAUMONT BRITISH NEWSREEL (REUTERS) To license this film, visit https://www.britishpathe.com/video/VLVA8DAWBGDVTYXXD8UFGVEVQUF8D-NETHERLANDS-KAISER-WILHELM-II-OF-GERMANY-CHOPPING-WOOD Footage of Kaiser Wilhelm II of Germany chopping wood following announcement he has influenza. Full Description: NETHERLANDS: Kaiser Wilhelm II (Emperor of Germany) in grounds of house / Kaiser Wilhelm II chopping wood Kaiser Wilhelm II; Germany Background: Footage of Kaiser Wilhelm II of Germany chopping wood following announcement he has influenza. FILM ID: VLVA8DAWBGDVTYXXD8UFGVEVQUF8D To license this film, visit https://www.britishpathe.com/video/VLVA8DAWBGDVTYXXD8UFGVEVQUF8D-NETHERLANDS-KAISER-WILHELM-II-OF-GERMANY-CHOPPING-WOOD Archive: Reuters Archive managed by: British Pathé
When Queen Victoria's grandson, the future Kaiser Wilhelm II, was born with a paralyzed arm, it led to a story of child cruelty, secret shame and incestuous desire. It's like Netflix for history... Sign up to History Hit, the world's best history documentary service and get 50% off using the code 'AbsoluteHistory' https://bit.ly/3vn5cSH This channel is part of the History Hit Network. Any queries please contact: [email protected]
Kaiser Wilhelm II (1859-1941), Germany's last emperor, was born in Potsdam in 1859, the son of Frederick III. and Victoria, daughter of Queen Victoria. Wilhelm became emperor of Germany in 1888 following the death of Frederick II. During his rule, Germany's relations with Britain, France and Russia became strained. His behaviour and the "blanc cheque" for Austria-Hungary are seen as important factors for the outbreak of World War 1 after the July Crisis. Who was Wilhelm II and what was his political and military influence on Germany decisions during World War I? If you want to know more about the prelude to war, click here and watch our three part special: http://bit.ly/1rObJgX » HOW CAN I SUPPORT YOUR CHANNEL? You can support us by sharing our videos with your friends and spreading th...
#royalhistory #royal #queenvictoria #victorianera #history #subscribe #shortstiktok #historylove #subscribetomychannel
Queen Victoria’s eldest child, Vicky, married the German Crown Prince in 1858. One year after her wedding Vicky endured a difficult birth that almost ended her life and left her baby, the future Kaiser Wilhelm II, with a permanently paralysed arm. Soon Vicky presided over a series of bizarre and often cruel attempts to cure Wilhelm of his disability. These included regular animal baths in which the body of a freshly slaughtered hare was wrapped around Wilhelm’s arm in the belief that its blood would bring life to his limb. These procedures created a highly dysfunctional relationship between Vicky and Wilhelm, he developed a growing hatred for his mother’s country while at the same time expressing his desire for ‘forbidden love’ with her. From Elizabeth II to Cleopatra, Real Royalty peels ...
In June 1941, after spending decades of his life in isolation Kaiser Wilhelm II, a man who is considered the main warmonger who brought the First World War to Europe died in The Netherlands. He was a man who had animosity for many countries across Europe, and he also would live to see the Second World War break out across the continent, however the Nazis who were now in control of Germany would consider what to do with the body of the former emperor. But Kaiser Wilhelm II was the last emperor of Germany, and he was a man who built Germany up to become a great power which resulted in the First World War, but he was a man who was the eldest grandchild of Queen Victoria the British Queen. He would call the shots following the death of Victoria, and dictated for a death mask to be cast of his ...
William II (Willem Frederik George Lodewijk, anglicized as William Frederick George Louis; 6 December 1792 – 17 March 1849) was King of the Netherlands, Grand Duke of Luxembourg, and Duke of Limburg.
William II was the son of William I and Wilhelmine of Prussia. When his father, who up to that time ruled as sovereign prince, proclaimed himself king in 1815, he became Prince of Orange as heir apparent of the Kingdom of the Netherlands. With the abdication of his father on 7 October 1840, William II became king. During his reign, the Netherlands became a parliamentary democracy with the new constitution of 1848.
William II was married to Anna Pavlovna of Russia. They had four sons and one daughter. William II died on 17 March 1849 and was succeeded by his son William III.
Willem Frederik George Lodewijk was born on 6 December 1792 in The Hague. He was the eldest son of King William I of the Netherlands and Wilhelmine of Prussia. His maternal grandparents were King Frederick William II of Prussia and his second wife Frederika Louisa of Hesse-Darmstadt.