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

Joseph Stalin

Joseph Stalin (/ˈstɑːlɪn/; birth surname: Jughashvili; 18 December 1878 – 5 March 1953) was the leader of the Soviet Union from the mid-1920s until his death in 1953. Holding the post of the General Secretary of the Central Committee of the Communist Party of the Soviet Union, he was effectively the dictator of the state.

Stalin was one of the seven members of the first Politburo, founded in 1917 in order to manage the Bolshevik Revolution, alongside Lenin, Zinoviev, Kamenev, Trotsky, Sokolnikov and Bubnov. Among the Bolshevik revolutionaries who took part in the Russian Revolution of 1917, Stalin was appointed General Secretary of the party's Central Committee in 1922. He subsequently managed to consolidate power following the 1924 death of Vladimir Lenin by suppressing Lenin's criticisms (in the postscript of his testament) and expanding the functions of his role, all the while eliminating any opposition. He remained general secretary until the post was abolished in 1952, concurrently serving as the Premier of the Soviet Union from 1941 onward.

Sibir (steamship icebreaker)

The Sibir (built 1938 as I. Stalin) was the first Soviet icebreaker built at a domestic shipyard.

Owing to many delays, it took over two years to finish. It was built at the Ordzhonikidze Yard in Leningrad (now St. Petersburg) between 1937 and 1938.

The I. Stalin was the biggest icebreaker of the Soviet fleet at that time. In 1938 it reached the Arctic in its first expedition.

The I. Stalin, freed the icebreaker Sedov on January 18, 1940 between Greenland and Svalbard after it had been drifting as a scientific Soviet polar station for a long time.

See also

  • Konstantin Badygin
  • References

  • History of Russian Arctic Exploration

  • Podcasts:

    • Joseph Stalin - A Day in The Life of a Dictator

      "Once he decided to attain absolute power, he would never relinquish it," observes Alexandre Allilouiev, nephew of Joseph Stalin. "He was a monster." In order to achieve his goals, Stalin set about re-imaging the vast empire in his own image, which included the extermination of all those who dared oppose or refused to adhere to his ideology. The film follows the activities of Stalin on November 24, 1938 - a crucial day that set in motion the end of his Great Purge.

      published: 19 Jul 2024
    • Day in the Life of Stalin

      Claim your SPECIAL OFFER for MagellanTV here: https://try.magellantv.com/simplehistory. Start your free trial TODAY so you can watch Stalin: Russia's Steel Tyrant and the rest of MagellanTV’s history collection: https://www.magellantv.com/video/stalin-russias-steel-tyrant Today were going to visit the "Man of Steel" himself and see what he gets up to in his day. Become a Simple History member: https://www.youtube.com/simplehistory/join Support us on Patreon: 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 books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://teespring.com/stores/simple-history-official-merch Simple his...

      published: 25 Nov 2021
    • The Real Story of Joseph Stalin | Best Stalin Documentary

      Joseph Stalin would rise from humble beginnings to become the leader of the Soviet Union, one of the world’s largest superpowers, being unafraid to sacrifice anything or anyone to achieve power. His political opponents would be shot, his own citizens would be hunted down by the secret police, and millions would be sentenced to backbreaking work in Gulag labour camps. Between 1930 and 1952, over 26 million people had been shot, imprisoned, or subjected to internal exile, an average of over 1 million per year. Tens of millions more would be arrested without charge, evicted from their homes, or forced to work on dangerous projects, with it being estimated that at least 60 million people had been subjected to some form of repression during Stalin’s rule. But despite this, many Soviet citizen...

      published: 01 Nov 2021
    • A Day in The Life of a Dictator: Idi Amin Dada

      "People were scared of him, and also he was scared of the people," says Babby Salamshyda of her father, Ugandan dictator Idi Amin Dada. One of the people who provoked Amin's fear was a member of his own family who planned to overthrow him. The film dramatizes the events of March 26, 1974, when Amin set in motion a plan to quell this familial threat. A day in life of a dictator full documentary https://youtu.be/nLtaStiAJyc

      published: 21 Dec 2022
    • Stalin, The Red Terror | Full Documentary

      A Comprehensive Documentary on Joseph Stalin's Brutal Regime, Mass Killings, and Ambition to Create a Communist Utopia in the Soviet Union 00:00 🇷🇺 Joseph Stalin, the leader of the Soviet Union, is celebrated as a hero but is actually one of the greatest criminals in history. 8:41 🌍 Stalin's ambition to create a communist utopia in the Soviet Union is met with challenges and a deteriorating quality of life for the population. 16:49 🔴 Stalin's brutal reign and his implementation of political trials and mass repressions. 25:02 😢 Stalin's famine in Ukraine leads to the death of millions of people, while the French delegation is deceived by propaganda. 33:08 😱 The construction of the Stalin Canal was a tragic and cruel event, resulting in the deaths of thousands of prisoners and ultimately be...

      published: 21 Jul 2023
    • STALIN - The Private Life (Documentary 2003, english audio)

      published: 23 Jun 2019
    • Kuntsevo dacha, the Joseph Stalin's personal residence

      Follow us on social media : Facebook : https://www.facebook.com/BestDocumentaryTV

      published: 24 Dec 2022
    • A Day in the Life of a Dictator: Joseph Stalin - Power, Paranoia, and Control #shorts #dayinthelife

      Step into a day in the life of Soviet dictator Joseph Stalin. From late mornings filled with secret police reports to nights spent watching films and plotting his next move, this fast-paced short reveals the paranoia, fear, and iron will that shaped Stalin’s regime. Discover how he ruled the USSR with total control and brutality. #history #josephstalin #dictatorlife joseph stalin , stalin’s day , dictator life, soviet union history, totalitarianism, russian history , stalin’s routine, stalin power , fear and control , USSR dictator, historical shorts #josephstalin #stalin #ussr #history #dictatorlife #paranoia #sovietunion #totalitarianism #historyfacts #historyshorts #russia #usa

      published: 29 Sep 2024
    • Lenin's Final Message | Josef Stalin: The Iron Fist #documentary #watchnow

      Benito Amilcare Andrea Mussolini was an Italian dictator and journalist who founded and led the National Fascist Party. Learn of how he went from a shy boy in a small town in the province of Forlì in Romagna to arguably Italy’s greatest evil. Filmmakers: Hannah Summer, Jordan Hill, Brian Aabech Cast: Daniel Beer, Lisa Pine, Guy Walters, Andy Willimott, Joseph Stalin, Leon Trotsky, Winston Churchill #documentary #bestmovies #entertainment #mustwatch #stalin

      published: 28 Nov 2023
    • Joseph Stalin - The Most Fearsome Dictator in History Documentary

      Please subscribe here. https://www.youtube.com/@PeopleProfiles?sub_confirmation=1 Watch our videos advert free on our website. https://www.peopleprofiles.com/join/ Our second channel. https://www.youtube.com/@PeopleProfilesExtra Or follow us on Twitter. https://twitter.com/tpprofiles Thank you for watching! If you liked this video, check out our related documentaries below: https://www.youtube.com/playlist?list=PLNwBhP0rWSz2lpsSRj-h5Sd7KHnlftPYj https://www.youtube.com/playlist?list=PLNwBhP0rWSz1xh-QavUZaBmC85ycXaJJr https://www.youtube.com/playlist?list=PLNwBhP0rWSz2BiZCPiK1HITQ6Tt-7-YpQ 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 academi...

      published: 01 Dec 2024
    Joseph Stalin - A Day in The Life of a Dictator
    31:38

    Joseph Stalin - A Day in The Life of a Dictator

    • Order:
    • Duration: 31:38
    • Uploaded Date: 19 Jul 2024
    • views: 760521
    "Once he decided to attain absolute power, he would never relinquish it," observes Alexandre Allilouiev, nephew of Joseph Stalin. "He was a monster." In order to achieve his goals, Stalin set about re-imaging the vast empire in his own image, which included the extermination of all those who dared oppose or refused to adhere to his ideology. The film follows the activities of Stalin on November 24, 1938 - a crucial day that set in motion the end of his Great Purge.
    https://wn.com/Joseph_Stalin_A_Day_In_The_Life_Of_A_Dictator
    Day in the Life of Stalin
    9:42

    Day in the Life of Stalin

    • Order:
    • Duration: 9:42
    • Uploaded Date: 25 Nov 2021
    • views: 1075450
    Claim your SPECIAL OFFER for MagellanTV here: https://try.magellantv.com/simplehistory. Start your free trial TODAY so you can watch Stalin: Russia's Steel Tyrant and the rest of MagellanTV’s history collection: https://www.magellantv.com/video/stalin-russias-steel-tyrant Today were going to visit the "Man of Steel" himself and see what he gets up to in his day. Become a Simple History member: https://www.youtube.com/simplehistory/join Support us on Patreon: 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 books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://teespring.com/stores/simple-history-official-merch Simple history gives you the facts, simple! See the book collection here: Amazon USA http://www.amazon.com/Daniel-Turner/e/B00H5TYLAE/ Amazon UK http://www.amazon.co.uk/Daniel-Turner/e/B00H5TYLAE/ https://www.facebook.com/Simple-History-549437675141192/ https://twitter.com/SimpleHistoryYT Credit: Created by Daniel Turner (B.A. (Hons) in History, University College London) Narrator: Chris Kane https://vocalforge.com/
    https://wn.com/Day_In_The_Life_Of_Stalin
    The Real Story of Joseph Stalin | Best Stalin Documentary
    28:01

    The Real Story of Joseph Stalin | Best Stalin Documentary

    • Order:
    • Duration: 28:01
    • Uploaded Date: 01 Nov 2021
    • views: 1362532
    Joseph Stalin would rise from humble beginnings to become the leader of the Soviet Union, one of the world’s largest superpowers, being unafraid to sacrifice anything or anyone to achieve power. His political opponents would be shot, his own citizens would be hunted down by the secret police, and millions would be sentenced to backbreaking work in Gulag labour camps. Between 1930 and 1952, over 26 million people had been shot, imprisoned, or subjected to internal exile, an average of over 1 million per year. Tens of millions more would be arrested without charge, evicted from their homes, or forced to work on dangerous projects, with it being estimated that at least 60 million people had been subjected to some form of repression during Stalin’s rule. But despite this, many Soviet citizens would remain devoted to their leader. The state produced an endless stream of propaganda, portraying Stalin as a hero and a father figure. Paintings, songs and statues were all commissioned by the dictator, with several towns and cities being named after him. Official history books would distort events beyond recognition, and he would go as far as to doctor historical photographs, removing his political rivals from important events in Soviet history. Hero or tyrant, a great moderniser or a ruthless killer, there can be no doubt that Stalin was one of the most influential figures of the 20th century, whose legacy has shaped the world as we know it today. Timestamps 📽 Intro: 0:00 Stalin's Youth 0:53 A Young Revolutionary 2:49 The Russian Revolution 5:44 Stalin's Rise to Power 9:09 Famine 11:38 The Great Terror 15:00 The Wartime Leader 18:05 Stalin’s Final Years 22:04 Stalin's Legacy 25:42 Primary Source: Stalin: New Biography of a Dictator by Oleg Khlevniuk Other Videos: Apollo 11 - The Moon Landing Explained | Best Space Race Documentary: https://www.youtube.com/watch?v=AUh3P3ivNbE Fall of The Soviet Union Explained In 5 Minutes: https://www.youtube.com/watch?v=M16RMXZDG_g The Vietnam War Explained In 25 Minutes | Vietnam War Documentary: https://www.youtube.com/watch?v=7tNTh6KlXXU World War 2 Explained | Best WW2 Documentary | Part 1: https://www.youtube.com/watch?v=yLHPLWDyHio Greek Gods Explained In 12 Minutes: https://www.youtube.com/watch?v=Ri-AoKE42rw Egyptian Gods Explained In 13 Minutes: https://www.youtube.com/watch?v=bURNgGA2lzM Norse Mythology Explained In 15 Minutes https://www.youtube.com/watch?v=2oxzmJPoRu8 The Fall of Rome Explained In 13 Minutes https://www.youtube.com/watch?v=KJz15Y6hKMM Sun Tzu - The Art of War Explained In 5 Minutes https://www.youtube.com/watch?v=Hz4FNBj1APA Nikola Tesla Explained In 16 Minutes: https://www.youtube.com/watch?v=Ok8JDXSYw1U Left vs Right: Political Spectrum - Explained In 4 Minutes https://www.youtube.com/watch?v=JlQ5fGECmsA Genghis Khan and The Mongol Empire Explained In 8 Minutes: https://www.youtube.com/watch?v=pDyece8CQF8 MUSIC AND VIDEO: Intro and Outro Music by: https://soundcloud.com/ryantothec Video music by: https://artlist.io/ The Life Guide is a channel dedicated to providing interesting and educational content about a range of political, philosophical, economic and historical topics. Whether you are interested in a simplified explanation of complicated modern ideas or detailed information on ancient civilizations and philosophical schools of thought, The Life Guide is the channel for you.
    https://wn.com/The_Real_Story_Of_Joseph_Stalin_|_Best_Stalin_Documentary
    A Day in The Life of a Dictator: Idi Amin Dada
    28:07

    A Day in The Life of a Dictator: Idi Amin Dada

    • Order:
    • Duration: 28:07
    • Uploaded Date: 21 Dec 2022
    • views: 5971487
    "People were scared of him, and also he was scared of the people," says Babby Salamshyda of her father, Ugandan dictator Idi Amin Dada. One of the people who provoked Amin's fear was a member of his own family who planned to overthrow him. The film dramatizes the events of March 26, 1974, when Amin set in motion a plan to quell this familial threat. A day in life of a dictator full documentary https://youtu.be/nLtaStiAJyc
    https://wn.com/A_Day_In_The_Life_Of_A_Dictator_Idi_Amin_Dada
    Stalin, The Red Terror | Full Documentary
    1:23:53

    Stalin, The Red Terror | Full Documentary

    • Order:
    • Duration: 1:23:53
    • Uploaded Date: 21 Jul 2023
    • views: 27891616
    A Comprehensive Documentary on Joseph Stalin's Brutal Regime, Mass Killings, and Ambition to Create a Communist Utopia in the Soviet Union 00:00 🇷🇺 Joseph Stalin, the leader of the Soviet Union, is celebrated as a hero but is actually one of the greatest criminals in history. 8:41 🌍 Stalin's ambition to create a communist utopia in the Soviet Union is met with challenges and a deteriorating quality of life for the population. 16:49 🔴 Stalin's brutal reign and his implementation of political trials and mass repressions. 25:02 😢 Stalin's famine in Ukraine leads to the death of millions of people, while the French delegation is deceived by propaganda. 33:08 😱 The construction of the Stalin Canal was a tragic and cruel event, resulting in the deaths of thousands of prisoners and ultimately being a failure. 41:38 ⚡ The Great Terror: Stalin's purges and executions 50:02 😔 Stalin fails to recognize the threat of Hitler and the Soviet Union is unprepared for war. 59:46 🇷🇺 Stalin's leadership during World War II, including the Battle of Stalingrad, solidified the Soviet Union as a superpower. 1:10:23 🇷🇺 Stalin celebrates victory in Berlin and demands half of Europe at the Potsdam Conference. 1:18:55 🌍 The people of Grigny wish a happy birthday to Stalin and praise his leadership. Through the most significant events of his time, we discover the legacy of terror and destruction that Stalin bequeathed to his people. On March 9, 1953, Joseph Stalin died in Moscow. His funeral was that of a demigod. Last irony of one of the worst criminals in the history of the 20th century, who brought misery to his people while creating a collective admiration. During more than 30 years of absolute rule, millions of people died. With Stalin's policy the standard of living fell. The poverty of the early 1930s was evident on the streets of Moscow. In his labor re-education camps, better known as the Gulag, he imprisoned 18 million Russians, turning them into slaves. Machiavellian and paranoid, Stalin invented the impeachment trial, where sentences were set before the start of the hearing. He starved 7,000,000 peasants to death as punishment for refusing his revolution. He had fooled the entire world through false propaganda campaigns. During World War II, Adolf Hitler set out to destroy Stalin. On June 16, 1941, three million soldiers attacked the USSR. The Nazis took over the city of Stalingrad, which was finally liberated by Russian troops in November 1942. In February 1943 the German troops surrendered. With this victory, Stalin became the first leader to defeat Hitler, which gave him the recognition of the international community.
    https://wn.com/Stalin,_The_Red_Terror_|_Full_Documentary
    STALIN - The Private Life (Documentary 2003, english audio)
    2:11:04

    STALIN - The Private Life (Documentary 2003, english audio)

    • Order:
    • Duration: 2:11:04
    • Uploaded Date: 23 Jun 2019
    • views: 13900
    https://wn.com/Stalin_The_Private_Life_(Documentary_2003,_English_Audio)
    Kuntsevo dacha, the Joseph Stalin's personal residence
    5:14

    Kuntsevo dacha, the Joseph Stalin's personal residence

    • Order:
    • Duration: 5:14
    • Uploaded Date: 24 Dec 2022
    • views: 15717
    Follow us on social media : Facebook : https://www.facebook.com/BestDocumentaryTV
    https://wn.com/Kuntsevo_Dacha,_The_Joseph_Stalin's_Personal_Residence
    A Day in the Life of a Dictator: Joseph Stalin - Power, Paranoia, and Control #shorts #dayinthelife
    0:32

    A Day in the Life of a Dictator: Joseph Stalin - Power, Paranoia, and Control #shorts #dayinthelife

    • Order:
    • Duration: 0:32
    • Uploaded Date: 29 Sep 2024
    • views: 1415
    Step into a day in the life of Soviet dictator Joseph Stalin. From late mornings filled with secret police reports to nights spent watching films and plotting his next move, this fast-paced short reveals the paranoia, fear, and iron will that shaped Stalin’s regime. Discover how he ruled the USSR with total control and brutality. #history #josephstalin #dictatorlife joseph stalin , stalin’s day , dictator life, soviet union history, totalitarianism, russian history , stalin’s routine, stalin power , fear and control , USSR dictator, historical shorts #josephstalin #stalin #ussr #history #dictatorlife #paranoia #sovietunion #totalitarianism #historyfacts #historyshorts #russia #usa
    https://wn.com/A_Day_In_The_Life_Of_A_Dictator_Joseph_Stalin_Power,_Paranoia,_And_Control_Shorts_Dayinthelife
    Lenin's Final Message | Josef Stalin: The Iron Fist #documentary #watchnow
    0:33

    Lenin's Final Message | Josef Stalin: The Iron Fist #documentary #watchnow

    • Order:
    • Duration: 0:33
    • Uploaded Date: 28 Nov 2023
    • views: 27351
    Benito Amilcare Andrea Mussolini was an Italian dictator and journalist who founded and led the National Fascist Party. Learn of how he went from a shy boy in a small town in the province of Forlì in Romagna to arguably Italy’s greatest evil. Filmmakers: Hannah Summer, Jordan Hill, Brian Aabech Cast: Daniel Beer, Lisa Pine, Guy Walters, Andy Willimott, Joseph Stalin, Leon Trotsky, Winston Churchill #documentary #bestmovies #entertainment #mustwatch #stalin
    https://wn.com/Lenin's_Final_Message_|_Josef_Stalin_The_Iron_Fist_Documentary_Watchnow
    Joseph Stalin - The Most Fearsome Dictator in History Documentary
    1:31:00

    Joseph Stalin - The Most Fearsome Dictator in History Documentary

    • Order:
    • Duration: 1:31:00
    • Uploaded Date: 01 Dec 2024
    • views: 159475
    Please subscribe here. https://www.youtube.com/@PeopleProfiles?sub_confirmation=1 Watch our videos advert free on our website. https://www.peopleprofiles.com/join/ Our second channel. https://www.youtube.com/@PeopleProfilesExtra Or follow us on Twitter. https://twitter.com/tpprofiles Thank you for watching! If you liked this video, check out our related documentaries below: https://www.youtube.com/playlist?list=PLNwBhP0rWSz2lpsSRj-h5Sd7KHnlftPYj https://www.youtube.com/playlist?list=PLNwBhP0rWSz1xh-QavUZaBmC85ycXaJJr https://www.youtube.com/playlist?list=PLNwBhP0rWSz2BiZCPiK1HITQ6Tt-7-YpQ 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 citations. All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purchased with commercial rights from online media archives. #Biography #History #Documentary
    https://wn.com/Joseph_Stalin_The_Most_Fearsome_Dictator_In_History_Documentary
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Joseph Stalin - A Day in The Life of a Dictator
      31:38
      Joseph Stalin - A Day in The Life of a Dictatorremove from playlist
    • Day in the Life of Stalin
      9:42
      Day in the Life of Stalinremove from playlist
    • The Real Story of Joseph Stalin | Best Stalin Documentary
      28:01
      The Real Story of Joseph Stalin | Best Stalin Documentaryremove from playlist
    • A Day in The Life of a Dictator: Idi Amin Dada
      28:07
      A Day in The Life of a Dictator: Idi Amin Dadaremove from playlist
    • Stalin, The Red Terror | Full Documentary
      1:23:53
      Stalin, The Red Terror | Full Documentaryremove from playlist
    • A Day in the Life of a Dictator: Joseph Stalin - Power, Paranoia, and Control #shorts #dayinthelife
      0:32
      A Day in the Life of a Dictator: Joseph Stalin - Power, Paranoia, and Control #shorts #dayintheliferemove from playlist
    • Lenin's Final Message | Josef Stalin: The Iron Fist #documentary #watchnow
      0:33
      Lenin's Final Message | Josef Stalin: The Iron Fist #documentary #watchnowremove from playlist
    • Joseph Stalin - The Most Fearsome Dictator in History Documentary
      1:31:00
      Joseph Stalin - The Most Fearsome Dictator in History Documentaryremove from playlist
    PLAYLIST TIME:

    Joseph Stalin - A Day in The Life of a Dictator

    "Once he decided to attain absolute power, he would never relinquish it," observes Alexandre Allilouiev, nephew of Joseph Stalin. "He was a monster." In order to achieve his goals, Stalin set about re-imaging the vast empire in his own image, which included the extermination of all those who dared oppose or refused to adhere to his ideology. The film follows the activities of Stalin on November 24, 1938 - a crucial day that set in motion the end of his Great Purge.
    31:38
    Joseph Stalin - A Day in The Life of a Dictator
    "Once he decided to attain absolute power, he would never relinquish it," observes Alexand...
    published: 19 Jul 2024
    Play in Full Screen
    9:42
    Day in the Life of Stalin
    Claim your SPECIAL OFFER for MagellanTV here: https://try.magellantv.com/simplehistory. St...
    published: 25 Nov 2021
    Play in Full Screen
    28:01
    The Real Story of Joseph Stalin | Best Stalin Documentary
    Joseph Stalin would rise from humble beginnings to become the leader of the Soviet Union, ...
    published: 01 Nov 2021
    Play in Full Screen
    28:07
    A Day in The Life of a Dictator: Idi Amin Dada
    "People were scared of him, and also he was scared of the people," says Babby Salamshyda o...
    published: 21 Dec 2022
    Play in Full Screen
    1:23:53
    Stalin, The Red Terror | Full Documentary
    A Comprehensive Documentary on Joseph Stalin's Brutal Regime, Mass Killings, and Ambition ...
    published: 21 Jul 2023
    Play in Full Screen
    2:11:04
    STALIN - The Private Life (Documentary 2003, english audio)
    published: 23 Jun 2019
    Play in Full Screen
    5:14
    Kuntsevo dacha, the Joseph Stalin's personal residence
    Follow us on social media : Facebook : https://www.facebook.com/BestDocumentaryTV
    published: 24 Dec 2022
    Play in Full Screen
    0:32
    A Day in the Life of a Dictator: Joseph Stalin - Power, Paranoia, and Control #shorts #dayinthelife
    Step into a day in the life of Soviet dictator Joseph Stalin. From late mornings filled wi...
    published: 29 Sep 2024
    Play in Full Screen
    0:33
    Lenin's Final Message | Josef Stalin: The Iron Fist #documentary #watchnow
    Benito Amilcare Andrea Mussolini was an Italian dictator and journalist who founded and le...
    published: 28 Nov 2023
    Play in Full Screen
    1:31:00
    Joseph Stalin - The Most Fearsome Dictator in History Documentary
    Please subscribe here. https://www.youtube.com/@PeopleProfiles?sub_confirmation=1 Watch ou...
    published: 01 Dec 2024
    Play in Full Screen

    Joseph Stalin

    Joseph Stalin (/ˈstɑːlɪn/; birth surname: Jughashvili; 18 December 1878 – 5 March 1953) was the leader of the Soviet Union from the mid-1920s until his death in 1953. Holding the post of the General Secretary of the Central Committee of the Communist Party of the Soviet Union, he was effectively the dictator of the state.

    Stalin was one of the seven members of the first Politburo, founded in 1917 in order to manage the Bolshevik Revolution, alongside Lenin, Zinoviev, Kamenev, Trotsky, Sokolnikov and Bubnov. Among the Bolshevik revolutionaries who took part in the Russian Revolution of 1917, Stalin was appointed General Secretary of the party's Central Committee in 1922. He subsequently managed to consolidate power following the 1924 death of Vladimir Lenin by suppressing Lenin's criticisms (in the postscript of his testament) and expanding the functions of his role, all the while eliminating any opposition. He remained general secretary until the post was abolished in 1952, concurrently serving as the Premier of the Soviet Union from 1941 onward.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×