'+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

  • Rise of Joseph Stalin

    Joseph Stalin was the General Secretary of the Communist Party of the Soviet Union's Central Committee from 1922 until his death in 1953. In the years following Lenin's death in 1924, he rose to become the leader of the Soviet Union.

    After growing up in Georgia, Stalin conducted activities for the Bolshevik party for twelve years before the Russian Revolution of 1917. After participating, Stalin took military leadership positions in the Russian Civil War and Soviet-Polish War. Stalin was one of the Bolsheviks' chief operatives in the Caucasus and grew very close to Lenin, who saw him as a capable and loyal follower. Stalin played a decisive role in engineering the 1921 Red Army invasion of Georgia, adopting a particularly hardline approach to opposition. His connections helped him attain high positions in the new Soviet government, eventually becoming General Secretary in 1922. Lenin grew critical of Stalin, and many other Bolsheviks at this time, but in 1922 a stroke forced Lenin into semi-retirement. Lenin recommended Stalin's dismissal. However, after Lenin's death in 1924, Stalin suppressed documentation of Lenin's recommendation. Thereafter, Stalin politically isolated his major enemies, such as arch-rival Leon Trotsky, and had them dismissed from government altogether. This eventually led him to be the sole uncontested leader of the Party and the Soviet Union.

    Podcasts:

    • Terrifying Story Of Joseph Stalin's Rise to Power

      Play World of Warships for free: http://bit.ly/2Nw97Xv. New players will receive 1 Million Credits, the USS Langley Premium Aircraft Carrier, 3 days premium time, and more by using my code PLAYLANGLEY2019. Big thanks to Wargaming for sponsoring. How did Joseph Stalin rise to power? What can we learn from the history so that it does not repeat itself? In today's educational animated cartoon, we are taking a look at the rise of Joseph Stalin. 🎬 MAKE VIDEOS LIKE OURS We use Envato Elements for vectors, templates, music and other things ► http://bit.ly/Elements-InfographicsShow For software I use Adobe Creative Cloud (After Effects & Illustrator), You can get it from here http://bit.ly/Adobe-TheInfographicsShow 🔔 SUBSCRIBE TO US ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?s...

      published: 28 Feb 2019
    • Rise of Josef Stalin

      Adapted from Biography video on Josef Stalin focusing on his rise to power. For educational use.

      published: 16 Nov 2014
    • 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
    • The man who defeated Adolf Hitler | Joseph Stalin | ww2

      #nazi #ussr #germany #hitler #stalin #ww2 #history

      published: 13 Jun 2022
    • The Rise Of Stalin In The Soviet Union

      Download your Rise of Stalin teacher resource pack ➕ try this video with built-in interactive questions FREE ✅ https://clickv.ie/w/pbAw #josephstalin #sovietunion #russianhistory #worldwar1 #Hitler #ClickView Mussolini in Italy, Stalin in Russia, Franco in Spain, Tōjō in Japan and Hitler in Germany – all presided over harsh, brutal regimes. Ideologies differed, but their methods of enforcing and maintaining power were similar. This program studies the rise, decline, and legacy of Hitler after World War I. It is an ideal resource for students of modern European history and politics. ClickView is home to high-quality, standards-aligned, ad-free videos for every subject, topic and grade. 😎 Sign up for free access: https://clickv.ie/w/VEDw 👀Explore our website: https://clickv.ie/w/WEDw ...

      published: 14 Dec 2017
    • Joseph Stalin, Leader of the Soviet Union (1878-1953)

      Please consider supporting our videos on Patreon https://www.patreon.com/simplehistory Copyright: DO NOT reupload our content on Youtube or other social media without expressed permission. SIMPLE HISTORY MERCHANDISE Get the SImple History books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://www.zazzle.com/simplehistory/gifts?cg=196817456987349853 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/ http://www.simplehistory.co.uk/ https://www.facebook.com/Simple-History-549437675141192/ https://twitter.com/simple_guides Credit: Created by Daniel Turner Narrator: Chris Kane www.vocalforge.com ...

      published: 27 Feb 2018
    • The World Wars: Joseph Stalin | History

      Mini-biography on the life of Joseph Stalin. Subscribe for more History: http://histv.co/SubscribeHistoryYT Check out exclusive HISTORY videos and full episodes: http://www.history.com/videos Get daily updates on history: http://www.history.com/news/ Check out our Facebook games, and other exclusive content: https://www.facebook.com/History Keep up to date with everything HISTORY by following us on Twitter: https://twitter.com/history Get the latest on show premieres, special events, sweepstakes and more. Sign up for HISTORY email updates: http://www.history.com/emails/sign-up Follow HISTORY on StumbleUpon: http://www.stumbleupon.com/channel/HISTORY The World Wars Episode 4 HISTORY®, now reaching more than 98 million homes, is the leading destination for award-winning original s...

      published: 23 May 2014
    • Simon Sebag Montefiore On Stalin's Bloody Rise to Power

      'Simon Sebag Montefiore On Stalin's Bloody Rise to Power' How did a young trainee priest from Georgia become a merciless dictator who shaped the Soviet Empire in his own brutal image? Historian and bestselling author, Simon Sebag Montifiore, talks to Dan Snow about the rise of Joseph Stalin, a man whose regime of terror witnessed the death and suffering of tens of millions of people. Find out how Stalin climbed to the top of Soviet politics to emerge as Lenin’s heir, and hear how his extreme insecurity and paranoia shaped the way he ruled. #SimonSebagMontefiore #Stalin #HistoryHit Sign up to History Hit TV now and get 7 days free: http://access.historyhit.com/checkout

      published: 09 Feb 2022
    • Joseph Stalin The Rise, Reign, and Legacy of a Soviet Dictator

      Hey there! Today, I’m whispering about one of the most powerful and controversial figures in modern history—Joseph Stalin. From his early days as a revolutionary to his rule over the Soviet Union, Stalin shaped the 20th century in ways that still echo today. We’ll dive into his rise to power, the terror of the Great Purge, the struggles of World War II, and his complex legacy that continues to spark debate. So, grab a comfy spot and let’s explore the life and legacy of Stalin together.

      published: 15 Oct 2024
    • The Rise Of Joseph Stalin | The History Of Russia | Our History

      Class Warriors' tells of the rise of party General Secretary Stalin, ahead of army chief Trotsky and the disastrous policies he put into practice in an attempt to modernise the Soviet Union ahead of the rest of the world. Subscribe to Our History: https://bit.ly/3v5mKBG This film was first broadcast: 29 Jul 1990 Watch More Documentaries Our Life - https://bit.ly/3A8xRMJ Our History - https://bit.ly/3rUpdhL Our World - https://bit.ly/3ftuckM Our Stories - https://bit.ly/3ynfFyk Start your journey of discovery with Our History, as we bring you eye-opening documentaries and educational programmes about our world history. We will guide you through awe-inspiring events from our past and help you get a deeper understanding of current affairs and global events that have shaped the world ...

      published: 21 Jun 2022
    Terrifying Story Of Joseph Stalin's Rise to Power
    12:12

    Terrifying Story Of Joseph Stalin's Rise to Power

    • Order:
    • Duration: 12:12
    • Uploaded Date: 28 Feb 2019
    • views: 2600231
    Play World of Warships for free: http://bit.ly/2Nw97Xv. New players will receive 1 Million Credits, the USS Langley Premium Aircraft Carrier, 3 days premium time, and more by using my code PLAYLANGLEY2019. Big thanks to Wargaming for sponsoring. How did Joseph Stalin rise to power? What can we learn from the history so that it does not repeat itself? In today's educational animated cartoon, we are taking a look at the rise of Joseph Stalin. 🎬 MAKE VIDEOS LIKE OURS We use Envato Elements for vectors, templates, music and other things ► http://bit.ly/Elements-InfographicsShow For software I use Adobe Creative Cloud (After Effects & Illustrator), You can get it from here http://bit.ly/Adobe-TheInfographicsShow 🔔 SUBSCRIBE TO US ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 SUGGEST A TOPIC https://www.theinfographicsshow.com 📝 SOURCES:
    https://wn.com/Terrifying_Story_Of_Joseph_Stalin's_Rise_To_Power
    Rise of Josef Stalin
    22:31

    Rise of Josef Stalin

    • Order:
    • Duration: 22:31
    • Uploaded Date: 16 Nov 2014
    • views: 68614
    Adapted from Biography video on Josef Stalin focusing on his rise to power. For educational use.
    https://wn.com/Rise_Of_Josef_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
    The man who defeated Adolf Hitler | Joseph Stalin | ww2
    0:31

    The man who defeated Adolf Hitler | Joseph Stalin | ww2

    • Order:
    • Duration: 0:31
    • Uploaded Date: 13 Jun 2022
    • views: 10936696
    #nazi #ussr #germany #hitler #stalin #ww2 #history
    https://wn.com/The_Man_Who_Defeated_Adolf_Hitler_|_Joseph_Stalin_|_WW2
    The Rise Of Stalin In The Soviet Union
    5:08

    The Rise Of Stalin In The Soviet Union

    • Order:
    • Duration: 5:08
    • Uploaded Date: 14 Dec 2017
    • views: 108446
    Download your Rise of Stalin teacher resource pack ➕ try this video with built-in interactive questions FREE ✅ https://clickv.ie/w/pbAw #josephstalin #sovietunion #russianhistory #worldwar1 #Hitler #ClickView Mussolini in Italy, Stalin in Russia, Franco in Spain, Tōjō in Japan and Hitler in Germany – all presided over harsh, brutal regimes. Ideologies differed, but their methods of enforcing and maintaining power were similar. This program studies the rise, decline, and legacy of Hitler after World War I. It is an ideal resource for students of modern European history and politics. ClickView is home to high-quality, standards-aligned, ad-free videos for every subject, topic and grade. 😎 Sign up for free access: https://clickv.ie/w/VEDw 👀Explore our website: https://clickv.ie/w/WEDw 📽 Explore videos on other subjects: https://clickv.ie/w/XEDw
    https://wn.com/The_Rise_Of_Stalin_In_The_Soviet_Union
    Joseph Stalin,  Leader of the Soviet Union (1878-1953)
    5:54

    Joseph Stalin, Leader of the Soviet Union (1878-1953)

    • Order:
    • Duration: 5:54
    • Uploaded Date: 27 Feb 2018
    • views: 5319013
    Please consider supporting our videos on Patreon https://www.patreon.com/simplehistory Copyright: DO NOT reupload our content on Youtube or other social media without expressed permission. SIMPLE HISTORY MERCHANDISE Get the SImple History books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://www.zazzle.com/simplehistory/gifts?cg=196817456987349853 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/ http://www.simplehistory.co.uk/ https://www.facebook.com/Simple-History-549437675141192/ https://twitter.com/simple_guides Credit: Created by Daniel Turner Narrator: Chris Kane www.vocalforge.com Music Credit From Russia with Love by Huma-Huma Map by Mosedschurte Further Reading: Russia and the Russians by Geoffrey Hosking
    https://wn.com/Joseph_Stalin,_Leader_Of_The_Soviet_Union_(1878_1953)
    The World Wars: Joseph Stalin | History
    4:04

    The World Wars: Joseph Stalin | History

    • Order:
    • Duration: 4:04
    • Uploaded Date: 23 May 2014
    • views: 347263
    Mini-biography on the life of Joseph Stalin. Subscribe for more History: http://histv.co/SubscribeHistoryYT Check out exclusive HISTORY videos and full episodes: http://www.history.com/videos Get daily updates on history: http://www.history.com/news/ Check out our Facebook games, and other exclusive content: https://www.facebook.com/History Keep up to date with everything HISTORY by following us on Twitter: https://twitter.com/history Get the latest on show premieres, special events, sweepstakes and more. Sign up for HISTORY email updates: http://www.history.com/emails/sign-up Follow HISTORY on StumbleUpon: http://www.stumbleupon.com/channel/HISTORY The World Wars Episode 4 HISTORY®, now reaching more than 98 million homes, is the leading destination for award-winning original series and specials that connect viewers with history in an informative, immersive, and entertaining manner across all platforms. The network’s all-original programming slate features a roster of hit series, epic miniseries, and scripted event programming. Visit us at HISTORY.com for more info.
    https://wn.com/The_World_Wars_Joseph_Stalin_|_History
    Simon Sebag Montefiore On Stalin's Bloody Rise to Power
    30:27

    Simon Sebag Montefiore On Stalin's Bloody Rise to Power

    • Order:
    • Duration: 30:27
    • Uploaded Date: 09 Feb 2022
    • views: 59845
    'Simon Sebag Montefiore On Stalin's Bloody Rise to Power' How did a young trainee priest from Georgia become a merciless dictator who shaped the Soviet Empire in his own brutal image? Historian and bestselling author, Simon Sebag Montifiore, talks to Dan Snow about the rise of Joseph Stalin, a man whose regime of terror witnessed the death and suffering of tens of millions of people. Find out how Stalin climbed to the top of Soviet politics to emerge as Lenin’s heir, and hear how his extreme insecurity and paranoia shaped the way he ruled. #SimonSebagMontefiore #Stalin #HistoryHit Sign up to History Hit TV now and get 7 days free: http://access.historyhit.com/checkout
    https://wn.com/Simon_Sebag_Montefiore_On_Stalin's_Bloody_Rise_To_Power
    Joseph Stalin The Rise, Reign, and Legacy of a Soviet Dictator
    1:08:56

    Joseph Stalin The Rise, Reign, and Legacy of a Soviet Dictator

    • Order:
    • Duration: 1:08:56
    • Uploaded Date: 15 Oct 2024
    • views: 258
    Hey there! Today, I’m whispering about one of the most powerful and controversial figures in modern history—Joseph Stalin. From his early days as a revolutionary to his rule over the Soviet Union, Stalin shaped the 20th century in ways that still echo today. We’ll dive into his rise to power, the terror of the Great Purge, the struggles of World War II, and his complex legacy that continues to spark debate. So, grab a comfy spot and let’s explore the life and legacy of Stalin together.
    https://wn.com/Joseph_Stalin_The_Rise,_Reign,_And_Legacy_Of_A_Soviet_Dictator
    The Rise Of Joseph Stalin | The History Of Russia | Our History
    49:25

    The Rise Of Joseph Stalin | The History Of Russia | Our History

    • Order:
    • Duration: 49:25
    • Uploaded Date: 21 Jun 2022
    • views: 8922
    Class Warriors' tells of the rise of party General Secretary Stalin, ahead of army chief Trotsky and the disastrous policies he put into practice in an attempt to modernise the Soviet Union ahead of the rest of the world. Subscribe to Our History: https://bit.ly/3v5mKBG This film was first broadcast: 29 Jul 1990 Watch More Documentaries Our Life - https://bit.ly/3A8xRMJ Our History - https://bit.ly/3rUpdhL Our World - https://bit.ly/3ftuckM Our Stories - https://bit.ly/3ynfFyk Start your journey of discovery with Our History, as we bring you eye-opening documentaries and educational programmes about our world history. We will guide you through awe-inspiring events from our past and help you get a deeper understanding of current affairs and global events that have shaped the world we live in today. Content distributed by ITV Studios.
    https://wn.com/The_Rise_Of_Joseph_Stalin_|_The_History_Of_Russia_|_Our_History
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Terrifying Story Of Joseph Stalin's Rise to Power
      12:12
      Terrifying Story Of Joseph Stalin's Rise to Powerremove from playlist
    • Rise of Josef Stalin
      22:31
      Rise of Josef 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
    • The Rise Of Stalin In The Soviet Union
      5:08
      The Rise Of Stalin In The Soviet Unionremove from playlist
    • Joseph Stalin,  Leader of the Soviet Union (1878-1953)
      5:54
      Joseph Stalin, Leader of the Soviet Union (1878-1953)remove from playlist
    • The World Wars: Joseph Stalin | History
      4:04
      The World Wars: Joseph Stalin | Historyremove from playlist
    • Simon Sebag Montefiore On Stalin's Bloody Rise to Power
      30:27
      Simon Sebag Montefiore On Stalin's Bloody Rise to Powerremove from playlist
    • Joseph Stalin The Rise, Reign, and Legacy of a Soviet Dictator
      1:08:56
      Joseph Stalin The Rise, Reign, and Legacy of a Soviet Dictatorremove from playlist
    • The Rise Of Joseph Stalin | The History Of Russia | Our History
      49:25
      The Rise Of Joseph Stalin | The History Of Russia | Our Historyremove from playlist
    PLAYLIST TIME:

    Terrifying Story Of Joseph Stalin's Rise to Power

    Play World of Warships for free: http://bit.ly/2Nw97Xv. New players will receive 1 Million Credits, the USS Langley Premium Aircraft Carrier, 3 days premium time, and more by using my code PLAYLANGLEY2019. Big thanks to Wargaming for sponsoring. How did Joseph Stalin rise to power? What can we learn from the history so that it does not repeat itself? In today's educational animated cartoon, we are taking a look at the rise of Joseph Stalin. 🎬 MAKE VIDEOS LIKE OURS We use Envato Elements for vectors, templates, music and other things ► http://bit.ly/Elements-InfographicsShow For software I use Adobe Creative Cloud (After Effects & Illustrator), You can get it from here http://bit.ly/Adobe-TheInfographicsShow 🔔 SUBSCRIBE TO US ► https://www.youtube.com/c/theinfographicsshowOFFICIAL?sub_confirmation=1 🔖 MY SOCIAL PAGES Facebook ► https://www.facebook.com/TheInfographicsShow Twitter ► https://twitter.com/TheInfoShow 💭 SUGGEST A TOPIC https://www.theinfographicsshow.com 📝 SOURCES:
    12:12
    Terrifying Story Of Joseph Stalin's Rise to Power
    Play World of Warships for free: http://bit.ly/2Nw97Xv. New players will receive 1 Million...
    published: 28 Feb 2019
    Play in Full Screen
    22:31
    Rise of Josef Stalin
    Adapted from Biography video on Josef Stalin focusing on his rise to power. For educationa...
    published: 16 Nov 2014
    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
    0:31
    The man who defeated Adolf Hitler | Joseph Stalin | ww2
    #nazi #ussr #germany #hitler #stalin #ww2 #history
    published: 13 Jun 2022
    Play in Full Screen
    5:08
    The Rise Of Stalin In The Soviet Union
    Download your Rise of Stalin teacher resource pack ➕ try this video with built-in interact...
    published: 14 Dec 2017
    Play in Full Screen
    5:54
    Joseph Stalin, Leader of the Soviet Union (1878-1953)
    Please consider supporting our videos on Patreon https://www.patreon.com/simplehistory Co...
    published: 27 Feb 2018
    Play in Full Screen
    4:04
    The World Wars: Joseph Stalin | History
    Mini-biography on the life of Joseph Stalin. Subscribe for more History: http://histv.co...
    published: 23 May 2014
    Play in Full Screen
    30:27
    Simon Sebag Montefiore On Stalin's Bloody Rise to Power
    'Simon Sebag Montefiore On Stalin's Bloody Rise to Power' How did a young trainee priest ...
    published: 09 Feb 2022
    Play in Full Screen
    1:08:56
    Joseph Stalin The Rise, Reign, and Legacy of a Soviet Dictator
    Hey there! Today, I’m whispering about one of the most powerful and controversial figures ...
    published: 15 Oct 2024
    Play in Full Screen
    49:25
    The Rise Of Joseph Stalin | The History Of Russia | Our History
    Class Warriors' tells of the rise of party General Secretary Stalin, ahead of army chief T...
    published: 21 Jun 2022
    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)); } }); }); }); // -->
    ×