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

Boris Pasternak

Boris Leonidovich Pasternak (/ˈpæstərˌnæk/;Russian: Бори́с Леони́дович Пастерна́к; IPA: [bɐˈrʲis lʲɪɐˈnʲidəvʲɪtɕ pəstɛrˈnak]) (10 February [O.S. 29 January] 1890  30 May 1960) was a Russian poet, novelist, and literary translator. In his native Russian, Pasternak's first book of poems, My Sister, Life (1917), is one of the most influential collections ever published in the Russian language. Pasternak's translations of stage plays by Goethe, Schiller, Calderon and Shakespeare remain very popular with Russian audiences.

Outside Russia, Pasternak is best known as the author of Doctor Zhivago (1957), a novel which takes place between the Russian Revolution of 1905 and the First World War. Due to the novel's independent-minded stance on the socialist state, Doctor Zhivago was rejected for publication in the USSR. At the instigation of Giangiacomo Feltrinelli, Doctor Zhivago was smuggled to Milan and published in 1957. Pasternak was awarded the Nobel Prize for Literature in 1958, an event which both humiliated and enraged the Communist Party of the Soviet Union, which forced him to decline the prize, though his descendants were later to accept it in his name in 1988.

Doctor Zhivago

Doctor Zhivago is the title of a novel by Boris Pasternak and its various adaptations. The novel was first published in 1957 in Italy (in Russian), thanks to the publisher Giangiacomo Feltrinelli, who had smuggled the manuscript out of the USSR.

Description

The story, in all of its forms, describes the life of the fictional Russian physician Yuri Zhivago and deals with love and loss during the turmoil of revolution and war.

Adaptations

Media using the name Doctor Zhivago includes the following:

  • Doctor Zhivago (novel), a 1957 novel by Boris Pasternak
  • Doctor Zhivago (film), a 1965 film adaptation by David Lean
  • Doctor Zhivago (miniseries), a 2002 TV mini-series by Giacomo Campiotti, starring Hans Matheson
  • Doctor Zhivago (miniseries)

    Doctor Zhivago is a 2002 British television miniseries directed by Giacomo Campiotti and starring Hans Matheson, Keira Knightley and Sam Neill. The teleplay by Andrew Davies is based on the 1957 novel of the same title by Boris Pasternak.

    The serial is the second English-language screen adaptation of the book, following the 1965 feature film. It was produced by Granada Television, with co-funding from the American PBS station WGBH Boston and the German company Evision. It was first broadcast on ITV in the United Kingdom, beginning on 24 November 2002. In the United States, it aired as part of Masterpiece Theatre on 2 and 9 November 2003.

    Plot

    Part I

    The story begins in Tsarist Russia in the early 1900s and is set primarily against the backdrop of the Russian Revolution of 1917 and the subsequent Russian Civil War of 1918–1921. At its core is Larissa Guishar Antipova, a young woman from Moscow who has a profound effect on three men who become enamored with her.

    Victor Komarovsky, an unctuous, wealthy businessman with political connections, is involved in a casual affair with Lara's bourgeois dressmaker mother Amalia, who encourages her teenaged daughter to accept his invitation to dinner in an attempt to retain his financial support of her household. Initially Lara is repelled by the thought, but she finally accepts and eventually uses her sexual power to seduce and ultimately control him.

    Doctor Zhivago (musical)

    Doctor Zhivago – A New Musical is a 2011 musical composed by Lucy Simon, lyrics by Michael Korie and Amy Powers, book by Michael Weller; it is based on Boris Pasternak's 1957 novel Doctor Zhivago.

    Productions

    The show originally premiered as Zhivago in 2006 at the La Jolla Playhouse in San Diego, California, with Ivan Hernandez in the title role as Yurii Zhivago.

    A 2011 Australian touring production directed by Des McAnuff premiered as Doctor Zhivago – A New Musical at the Lyric Theatre, Sydney, in 2011. The Sydney cast included Anthony Warlow as Yurii Zhivago, Lucy Maunder as Lara, Taneel Van Zyl as Tonia and Martin Crewes as Pasha. The show received glowing reviews. The production ran from February 19 through April 3, 2011, before travelling to Melbourne where it ran there from April through May 29, 2011. Following Melbourne, a limited run was originally set at Brisbane from July 6 through July 31, but was extended a further two weeks, through August 14, 2011.

    A 2012 Seoul original production directed by Des McAnuff, premiered at the Charlotte Theatre, Seoul, in 2012. The cast included Jo Seung-woo and Hong Kwang-ho as Yurii Zhivago, Jeon Mido and Kim Jiwoo as Lara Guisher, Choi Hyunjoo as Tonia, Kang Pilsuk as Pasha. It began previews on January 25, 2012, opened on January 27, 2012, and closed on June 3, 2012.

    Podcasts:

    • Boris Pasternak Documentary

      published: 26 May 2014
    • Irwin Weil - Boris Pasternak (Lecture 1, part 1)

      published: 20 Jan 2021
    • Favorite Boris Pasternak Poem of Buvaisar Saitiev | Joe Rogan Experience

      Reading on the Joe Rogan podcast an excerpt from "My Sister -- Life" by Boris Pasternak, a poem that Buvaisar Saitiev (one of the greatest Olympic wrestlers of all time) would read before competition. Full JRE episode #1422: https://www.youtube.com/watch?v=ZIcQwDkcaWk

      published: 08 Feb 2020
    • Pasternak's House in Peredelkino

      Visiting Pasternak's house in Peredelkino, in the suburbs of Moscow. Music: https://www.youtube.com/watch?v=rnKVTEh5IL0 Wonderful piano music by Rade Soric

      published: 30 Dec 2018
    • "Doctor Zhivago": Boris Pasternak

      published: 10 Jul 2017
    • Boris PASTERNAK – Une Vie, une Œuvre : 1890-1960 (France Culture, 2010)

      Voici la publication du vendredi, jour dédié aux inspirations de la Poésie française : L'émission "Une Vie, une Œuvre", par Françoise Estèbe, diffusée le 5 septembre 2010 sur France Culture. Invités : Michel Aucouturier, Hélène Henry et Jacqueline de Proyard. SOUTENIR LA CHAÎNE : https://fr.tipeee.com/arthuryasmine Mise en ligne par Arthur Yasmine, poète vivant, dans l’unique objet de perpétuer la Poésie. Site officiel : http://www.arthuryasmine.com/ Instagram : https://www.instagram.com/eclairbrut/ Facebook : https://www.facebook.com/eclairbrut0 Sur la modernité russe ou l'Âge d'argent (en construction) : http://bit.ly/2qaGeHL Dans les inspirations de la Poésie française (en cours de construction) : http://bit.ly/2qC8PoQ Les émissions 'Une vie, une Œuvre' à propos d'un poète : http://bit....

      published: 26 May 2017
    • Boris Pasternak ‒ Two Preludes

      Boris Pasternak (1890 - 1960), 2 Preludes (1906) Performed by Eldar Nebolsin 00:00 - No. 1 Prelude in E-flat Minor 01:32 - No. 2 Prelude in G-Sharp Minor It may be quite a surprise to learn that Boris Pasternak, the Symbolist poet, translator of Shakespeare and author of Dr Zhivago, who was forced by political pressure to refuse the Nobel Prize for Literature in 1958, was also a composer. However, he came from a musical family: his mother Roza was a concert pianist, a student of Rubinstein and Leschetizky, and his early impressions were of hearing piano trios in the home. The family had a dacha – country house – close to one occupied by Scriabin, and Rachmaninov, the poet Rilke and Tolstoy were all visitors to the family home. His father Leonid was a painter who produced one of the...

      published: 09 Mar 2016
    • Boris PASTERNAK – Un siècle d'écrivains : 1890-1960 (DOCUMENTAIRE, 1998)

      Voici la publication du vendredi, jour dédié aux inspirations de la Poésie française : L'émission « Un siècle d'écrivains », numéro 177, diffusée sur France 3, le 2 décembre 1998, et réalisée par Michel Andrieu. SOUTENIR LA CHAÎNE : https://fr.tipeee.com/arthuryasmine Mise en ligne par Arthur Yasmine, poète vivant, dans l’unique objet de perpétuer la Poésie. Site officiel : https://www.arthuryasmine.fr/ Instagram : https://www.instagram.com/eclairbrut/ Facebook : https://www.facebook.com/eclairbrut0 Sur la modernité russe ou l'Âge d'argent (en cours de construction) : http://bit.ly/2qaGeHL Les émissions ‘Un siècle d’écrivains’ : http://bit.ly/2ofQHNp D'autres archives télévisées sur la Poésie : http://bit.ly/2pDVj17 Dernières publications d’ÉCLAIR BRUT : http://bit.ly/2IgC72p Les inspira...

      published: 14 Dec 2018
    • Hörbuch: Doktor Schiwago von Boris Pasternak - Tail 1 v 2

      Doktor Schiwago von Boris Pasternak - Tail 1 v 2 Dieser große Roman bereitete mir einige Schwierigkeiten und oft war ich versucht, ihn wieder in das Regal zu stellen, wo er so lange ungelesen vor sich hin alterte. Schwierigkeiten vor Allem, weil Pasternak seine Figuren mal mit Vor-, ab und an mit Zu- und manchmal mit Spitznamen auftreten läßt. Die langen russischen Namen sorgten zuweilen für einiges Kopfzerbrechen, wer denn nun eigentlich gemeint sei. Auch die Ausdrucksweise war schwer zu ertragen. Manche Absätze beinhalten lange Selbstgespräche über Gott und die Welt, die auf den Leser eine Langeweile übertragen, die ans Einschlafen grenzt. Doch dann besann ich mich darauf, daß diese Menschen zu Anfang der 20. Jahrhunderts lebten. In einer Zeit, in der anders miteinander umgegangen wurd...

      published: 01 Apr 2016
    developed with YouTube
    Boris Pasternak Documentary
    6:54

    Boris Pasternak Documentary

    • Order:
    • Duration: 6:54
    • Uploaded Date: 26 May 2014
    • views: 23897
    https://wn.com/Boris_Pasternak_Documentary
    Irwin Weil - Boris Pasternak (Lecture 1, part 1)
    14:14

    Irwin Weil - Boris Pasternak (Lecture 1, part 1)

    • Order:
    • Duration: 14:14
    • Uploaded Date: 20 Jan 2021
    • views: 2501
    https://wn.com/Irwin_Weil_Boris_Pasternak_(Lecture_1,_Part_1)
    Favorite Boris Pasternak Poem of Buvaisar Saitiev | Joe Rogan Experience
    2:03

    Favorite Boris Pasternak Poem of Buvaisar Saitiev | Joe Rogan Experience

    • Order:
    • Duration: 2:03
    • Uploaded Date: 08 Feb 2020
    • views: 52354
    Reading on the Joe Rogan podcast an excerpt from "My Sister -- Life" by Boris Pasternak, a poem that Buvaisar Saitiev (one of the greatest Olympic wrestlers of all time) would read before competition. Full JRE episode #1422: https://www.youtube.com/watch?v=ZIcQwDkcaWk
    https://wn.com/Favorite_Boris_Pasternak_Poem_Of_Buvaisar_Saitiev_|_Joe_Rogan_Experience
    Pasternak's House in Peredelkino
    3:22

    Pasternak's House in Peredelkino

    • Order:
    • Duration: 3:22
    • Uploaded Date: 30 Dec 2018
    • views: 4065
    Visiting Pasternak's house in Peredelkino, in the suburbs of Moscow. Music: https://www.youtube.com/watch?v=rnKVTEh5IL0 Wonderful piano music by Rade Soric
    https://wn.com/Pasternak's_House_In_Peredelkino
    "Doctor Zhivago": Boris Pasternak
    8:49

    "Doctor Zhivago": Boris Pasternak

    • Order:
    • Duration: 8:49
    • Uploaded Date: 10 Jul 2017
    • views: 8027
    https://wn.com/Doctor_Zhivago_Boris_Pasternak
    Boris PASTERNAK – Une Vie, une Œuvre : 1890-1960 (France Culture, 2010)
    51:30

    Boris PASTERNAK – Une Vie, une Œuvre : 1890-1960 (France Culture, 2010)

    • Order:
    • Duration: 51:30
    • Uploaded Date: 26 May 2017
    • views: 4948
    Voici la publication du vendredi, jour dédié aux inspirations de la Poésie française : L'émission "Une Vie, une Œuvre", par Françoise Estèbe, diffusée le 5 septembre 2010 sur France Culture. Invités : Michel Aucouturier, Hélène Henry et Jacqueline de Proyard. SOUTENIR LA CHAÎNE : https://fr.tipeee.com/arthuryasmine Mise en ligne par Arthur Yasmine, poète vivant, dans l’unique objet de perpétuer la Poésie. Site officiel : http://www.arthuryasmine.com/ Instagram : https://www.instagram.com/eclairbrut/ Facebook : https://www.facebook.com/eclairbrut0 Sur la modernité russe ou l'Âge d'argent (en construction) : http://bit.ly/2qaGeHL Dans les inspirations de la Poésie française (en cours de construction) : http://bit.ly/2qC8PoQ Les émissions 'Une vie, une Œuvre' à propos d'un poète : http://bit.ly/2noIk5W Le reste est dans les plis du voleur : http://ow.ly/Zqubf Description de France Culture : Boris Pasternak (1890-1960) poète, écrivain russe La reconnaissance internationale du Prix Nobel en 1958, deux ans avant sa mort, attira à Pasternak les foudres du pouvoir politique, point culminant de la répression insidieuse qui durait depuis de longues années. Issu d'une famille d'artistes brillants -son père était peintre, sa mère pianiste- Pasternak n'était pas l'homme de l'idéologie. Dans les premiers temps de sa création poétique, il chante la nature et la beauté du monde. Il partage l'exaltation des intellectuels face à la Révolution mais sa ferveur ira en décroissant et, à l'espoir d'un monde nouveau, succéderont interrogations et mal-être. Dans sa création littéraire, à la poésie se substitue progressivement la prose, quintessence pour lui de l'écriture poétique, avec l'élaboration de son grand oeuvre, le Dr Jivago, qui retrace la destinée individuelle du poète face aux bouleversements de l'Histoire. Nous nous interrogerons sur l'attitude contradictoire, louvoyante, ambiguë de Pasternak par rapport au Pouvoir, qui ne fut pas comprise de ses contemporains et reste aujourd'hui encore difficile à cerner. C'est la dynamique littéraire et spirituelle de cette oeuvre qui nous intéresse aujourd'hui ainsi que l'évolution intérieure de celui qui face à Staline, déclarait avoir pour interlocuteurs: "Dieu, la Femme, la Nature, la Vocation et la Mort" [RAPPEL des jours de publication : - Lundi : modèles antiques (poètes de la Bible, de la Grèce ou de la Rome antique) ; - Mardi : poésie médiévale ; - Mercredi : poètes de la Renaissance ; - Jeudi : poètes de l'Âge classique et baroque ; - Vendredi : inspirations étrangères (du Dolce stil novo à la Beat Generation) ; - Samedi : poètes de la Modernité ; - Dimanche : poètes du XXème siècle ou poésie vivante.] [Rien n’est monétisé sur cette chaîne. Si vous gérez les droits relatifs au présent contenu, si vous souhaitez sa suppression, écrivez donc à cette adresse : lesplisduvoleur@gmail.com. Le propriétaire se chargera gentiment d’appliquer vos réclamations.] #BorisPasternak #unevieuneoeuvre #éclairbrut #UneVieuneŒuvre #franceculture #radio #poésie #poète #écrivain #littérature #poésierusse #docteurjivago #prixnobel
    https://wn.com/Boris_Pasternak_–_Une_Vie,_Une_Œuvre_1890_1960_(France_Culture,_2010)
    Boris Pasternak ‒ Two Preludes
    6:03

    Boris Pasternak ‒ Two Preludes

    • Order:
    • Duration: 6:03
    • Uploaded Date: 09 Mar 2016
    • views: 21973
    Boris Pasternak (1890 - 1960), 2 Preludes (1906) Performed by Eldar Nebolsin 00:00 - No. 1 Prelude in E-flat Minor 01:32 - No. 2 Prelude in G-Sharp Minor It may be quite a surprise to learn that Boris Pasternak, the Symbolist poet, translator of Shakespeare and author of Dr Zhivago, who was forced by political pressure to refuse the Nobel Prize for Literature in 1958, was also a composer. However, he came from a musical family: his mother Roza was a concert pianist, a student of Rubinstein and Leschetizky, and his early impressions were of hearing piano trios in the home. The family had a dacha – country house – close to one occupied by Scriabin, and Rachmaninov, the poet Rilke and Tolstoy were all visitors to the family home. His father Leonid was a painter who produced one of the most important portraits of Scriabin, and Boris wrote many years later of witnessing with great excitement the creation of Scriabin’s Symphony No.3, The Divine Poem, in 1903. Boris began to compose at the age of 13 – the high achievements of his mother discouraged him from becoming a pianist – and inspired by Scriabin, he entered the Moscow Conservatoire, only to leave abruptly in 1910 at the age of twenty to study philosophy in Marburg University. Four years later he returned to Moscow, having finally decided on a career in literature, publishing his first book of poems, influenced by Alexander Blok and the Russian Futurists, the same year. The two Preludes by the 16-year-old Pasternak show the clear influence of Scriabin. The first is in the “romantic” key of E flat minor, and the contours of its melody, and its forays into the major key, are all very Scriabinesque. The second is in G sharp minor, another typical key often used by Scriabin, and the cross-rhythms between the hands are another obvious echo of his mentor. It is on a larger scale than the first, and develops with increased speed and dynamics to a powerful climax, before dying away on a major-key ending, following the paradoxical marking con fierezza (with pride), yet another characteristic of a Scriabin score.
    https://wn.com/Boris_Pasternak_‒_Two_Preludes
    Boris PASTERNAK – Un siècle d'écrivains : 1890-1960 (DOCUMENTAIRE, 1998)
    48:34

    Boris PASTERNAK – Un siècle d'écrivains : 1890-1960 (DOCUMENTAIRE, 1998)

    • Order:
    • Duration: 48:34
    • Uploaded Date: 14 Dec 2018
    • views: 6450
    Voici la publication du vendredi, jour dédié aux inspirations de la Poésie française : L'émission « Un siècle d'écrivains », numéro 177, diffusée sur France 3, le 2 décembre 1998, et réalisée par Michel Andrieu. SOUTENIR LA CHAÎNE : https://fr.tipeee.com/arthuryasmine Mise en ligne par Arthur Yasmine, poète vivant, dans l’unique objet de perpétuer la Poésie. Site officiel : https://www.arthuryasmine.fr/ Instagram : https://www.instagram.com/eclairbrut/ Facebook : https://www.facebook.com/eclairbrut0 Sur la modernité russe ou l'Âge d'argent (en cours de construction) : http://bit.ly/2qaGeHL Les émissions ‘Un siècle d’écrivains’ : http://bit.ly/2ofQHNp D'autres archives télévisées sur la Poésie : http://bit.ly/2pDVj17 Dernières publications d’ÉCLAIR BRUT : http://bit.ly/2IgC72p Les inspirations de la Poésie française (en cours de construction) : http://bit.ly/2qC8PoQ Les archives d'Arthur Yasmine : http://ow.ly/Zqubf Notice : Poète célèbre et célébré en Russie dans les années vingt, Boris Pasternak est toujours identifié et reconnu comme poète à l’Est de l’Europe et comme romancier à l’Ouest. Il est l’auteur du célèbre "Docteur Jivago" qui lui valut le prix Nobel de littérature en 1957. À travers une biographie chronologique abondamment illustrée, le film fait la part belle à l’œuvre poétique : plusieurs poèmes sont dits et traduits. Cette lecture rythme le film, entre en harmonie avec les images de la Russie, de ses paysages enneigés et tourmentés. Le fils de l’écrivain, Evgueni Pasternak, intervient à plusieurs reprises dans ce film. Ses archives personnelles - photographies, dessins, films d’amateurs, enregistrements sonores - ont été largement sollicitées par le réalisateur et contribuent à donner vie au portrait du poète. [RAPPEL des jours de publication : - Lundi : modèles antiques (poètes de la Bible, de la Grèce ou de la Rome antique) ; - Mardi : poésie médiévale ; - Mercredi : poètes de la Renaissance ; - Jeudi : poètes de l'Âge classique et baroque ; - Vendredi : inspirations étrangères (du Dolce stil novo à la Beat Generation) ; - Samedi : poètes de la Modernité ; - Dimanche : poètes du XXème siècle ou poésie vivante.] [Rien n’est monétisé sur cette chaîne. Si vous gérez les droits relatifs au présent contenu, si vous souhaitez sa suppression, écrivez donc à cette adresse : lesplisduvoleur@gmail.com. Le propriétaire se chargera gentiment d’appliquer vos réclamations.] #BorisPasternak #unsiècledécrivains #éclairbrut #poésierusse #docteurjivago #prixnobel #poésie #poète Si tu lis jusqu’ici, commente avec un « Merci Boris ».
    https://wn.com/Boris_Pasternak_–_Un_Siècle_D'Écrivains_1890_1960_(Documentaire,_1998)
    Hörbuch: Doktor Schiwago von Boris Pasternak - Tail 1 v 2
    11:59:02

    Hörbuch: Doktor Schiwago von Boris Pasternak - Tail 1 v 2

    • Order:
    • Duration: 11:59:02
    • Uploaded Date: 01 Apr 2016
    • views: 36001
    Doktor Schiwago von Boris Pasternak - Tail 1 v 2 Dieser große Roman bereitete mir einige Schwierigkeiten und oft war ich versucht, ihn wieder in das Regal zu stellen, wo er so lange ungelesen vor sich hin alterte. Schwierigkeiten vor Allem, weil Pasternak seine Figuren mal mit Vor-, ab und an mit Zu- und manchmal mit Spitznamen auftreten läßt. Die langen russischen Namen sorgten zuweilen für einiges Kopfzerbrechen, wer denn nun eigentlich gemeint sei. Auch die Ausdrucksweise war schwer zu ertragen. Manche Absätze beinhalten lange Selbstgespräche über Gott und die Welt, die auf den Leser eine Langeweile übertragen, die ans Einschlafen grenzt. Doch dann besann ich mich darauf, daß diese Menschen zu Anfang der 20. Jahrhunderts lebten. In einer Zeit, in der anders miteinander umgegangen wurde und die Sprache eine Andere war. Und ich las weiter. 608 Seiten (ohne die Gedichte Schiwagos) umfaßt dieses Werk. Seiten voll Poesie, Liebe, Kampf, Trauer und Krieg. Von der Geschichte um Jurij Andreitsch, besser bekannt als Schiwago, der auch Jura oder Jurotschka genannt wurde, dessen Frau Antonia Alexandrowna, genannt Tonja und Schiwagos großer Liebe Lara, mit bürgerlichem Namen Larissa Fjodrowna wissen die meisten Menschen durch die gleichnamige Verfilmung aus dem Jahr 1965. Der Film stellt jedoch hauptsächlich Schiwagos Beziehungen zu den beiden so unterschiedlichen Frauen Tonja und Lara dar. Das Kriegsgeschehen um die Revolotion tritt dort leider in den Hintergrund. Schiwago wird im Film für meinen Geschmack zu sehr verherrlicht. Trotz Treuebruch ist Schiwago strahlender Held und sein Tod wird tragisch in Szene gesetzt. Doktor Schiwago - Tail 2 v 2: https://youtu.be/TECcQCGrN4M
    https://wn.com/Hörbuch_Doktor_Schiwago_Von_Boris_Pasternak_Tail_1_V_2
    • Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie

      Starring: Omar Sharif, Julie Christie and Geraldine Chaplin Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during the First World War and then the October Revolution. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original...

      published: 20 Sep 2016
    • Doctor Zhivago (New Trailer 2015) - In cinemas 27 Nov | BFI release

      Subscribe: http://bit.ly/subscribetotheBFI. An epic romance set against the backdrop of the Russian Revolution, David Lean’s Doctor Zhivago is one of cinema’s great love stories. Returning to cinemas on 27 November, the release coincides with the film's 50th anniversary and is a centrepiece of the UK-wide BFI Love season. For more information on the release and where to buy tickets visit: http://www.bfi.org.uk/whats-on/bfi-film-releases/doctor-zhivago Find out more about BFI Love here: http://www.bfi.org.uk/love Watch more on the BFI Player: http://player.bfi.org.uk/ Follow us on Twitter: https://twitter.com/BFI Like us on Facebook: https://www.facebook.com/BritishFilmInstitute Follow us on Google+: https://plus.google.com/+britishfilminstitute/ USA-UK 1965 Directed by David Lean With ...

      published: 20 Oct 2015
    • Doctor Zhivago (6/10) Movie CLIP - The Private Life is Dead (1965) HD

      Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Strenlikov (Tom Courtenay) interrogates Dr. Yuri Zhivago (Omar Sharif). FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (Rod Steiger). Meanwhile, Zhivago's half-b...

      published: 03 Dec 2015
    • Lara's Theme from Doctor Zhivago

      Maurice Jarre Lara's Theme from Doctor Zhivago Piano Version performed by SHIRIN

      published: 15 Apr 2016
    • Doctor Zhivago - Lara's Theme (1965) (Stereo / HD)

      published: 20 Nov 2017
    • Doctor Zhivago (3/10) Movie CLIP - Stick Together (1965) HD

      Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Soldiers rebel against their generals as the Russian Revolution begins. FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (Rod Steiger). Meanwhile, Zhivago's half-b...

      published: 03 Dec 2015
    • DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically!

      DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically! Doctor Zhivago is a 1965 epic historical romance film directed by David Lean with a screenplay by Robert Bolt, based on the 1957 novel by Boris Pasternak. The story is set in Russia during World War I and the Russian Civil War. The film stars Omar Sharif in the title role as Yuri Zhivago, a married physician and poet whose life is altered by the Russian Revolution and subsequent civil war, and Julie Christie as his love interest Lara Antipova. Geraldine Chaplin, Tom Courtenay, Rod Steiger, Alec Guinness, Ralph Richardson, Siobhán McKenna, and Rita Tushingham play supporting roles. _Starring: Geraldine Chaplin Julie Christie Tom Courtenay Alec Guinness Siobhán McKenna Ralph Richardson Omar Sharif Rod Steiger Rita Tushi...

      published: 12 Apr 2023
    • Doctor Zhivago (1/10) Movie CLIP - Peaceful Protest (1965) HD

      Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Dr. Yuri Zhivago (Omar Sharif) watches Russain soldiers disrupt a peaceful protest. FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (Rod Steiger). Meanwhile, Zhiv...

      published: 03 Dec 2015
    • Doctor Zhivago (10/10) Movie CLIP - Zhivago's Last Moments (1965) HD

      Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: In his last minutes of life, Dr. Yuri Zhivago (Omar Sharif) thinks he sees Lara (Julie Christie) on the street. FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (R...

      published: 03 Dec 2015
    • The Beauty of Doctor Zhivago

      Doctor Zhivago 1965 Directed by David Lean Starring : Omar Sharif, Julie Christie, Geraldine Chaplin, Alec Guinness Music composed by Maurice Jarre

      published: 26 Oct 2022
    developed with YouTube
    Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie
    3:41

    Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie

    • Order:
    • Duration: 3:41
    • Uploaded Date: 20 Sep 2016
    • views: 875832
    Starring: Omar Sharif, Julie Christie and Geraldine Chaplin Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during the First World War and then the October Revolution. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to hunt it down.
    https://wn.com/Doctor_Zhivago_(1965)_Original_Trailer_Omar_Sharif_Movie
    Doctor Zhivago (New Trailer 2015) - In cinemas 27 Nov | BFI release
    1:53

    Doctor Zhivago (New Trailer 2015) - In cinemas 27 Nov | BFI release

    • Order:
    • Duration: 1:53
    • Uploaded Date: 20 Oct 2015
    • views: 366684
    Subscribe: http://bit.ly/subscribetotheBFI. An epic romance set against the backdrop of the Russian Revolution, David Lean’s Doctor Zhivago is one of cinema’s great love stories. Returning to cinemas on 27 November, the release coincides with the film's 50th anniversary and is a centrepiece of the UK-wide BFI Love season. For more information on the release and where to buy tickets visit: http://www.bfi.org.uk/whats-on/bfi-film-releases/doctor-zhivago Find out more about BFI Love here: http://www.bfi.org.uk/love Watch more on the BFI Player: http://player.bfi.org.uk/ Follow us on Twitter: https://twitter.com/BFI Like us on Facebook: https://www.facebook.com/BritishFilmInstitute Follow us on Google+: https://plus.google.com/+britishfilminstitute/ USA-UK 1965 Directed by David Lean With Julie Christie, Omar Sharif, Tom Courtenay, Alec Guinness 200 min PG Digitally restored 4K DCP In Moscow on the eve of the First World War, medical student Yuri Zhivago (Omar Sharif) meets the beautiful Lara (Julie Christie), setting in train a fateful romance that turns their lives upside down. Featuring excellent supporting performances by Alec Guinness, Rod Steiger, Geraldine Chaplin and Tom Courtenay (45 Years), Doctor Zhivago portrays at its heart an intensely human and passionate relationship, challenged by the monumental politics of tradition and war.
    https://wn.com/Doctor_Zhivago_(New_Trailer_2015)_In_Cinemas_27_Nov_|_Bfi_Release
    Doctor Zhivago (6/10) Movie CLIP - The Private Life is Dead (1965) HD
    3:57

    Doctor Zhivago (6/10) Movie CLIP - The Private Life is Dead (1965) HD

    • Order:
    • Duration: 3:57
    • Uploaded Date: 03 Dec 2015
    • views: 432292
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Strenlikov (Tom Courtenay) interrogates Dr. Yuri Zhivago (Omar Sharif). FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (Rod Steiger). Meanwhile, Zhivago's half-brother Yevgraf (Alec Guinness) and the mysterious, revenge-seeking Strelnikoff (Tom Courteney) represent the "good" and "bad" elements of the Bolshevik revolution. Composer Maurice Jarre received one of Doctor Zhivago's five Oscars, with the others going to screenwriter Robert Bolt, cinematographer Freddie Young, art directors John Box and Terry Marsh, set decorator Dario Simoni, and costumer Phyllis Dalton. The best picture Oscar, however, went to The Sound of Music. CREDITS: TM & © Warner Bros. (1965) Cast: Tom Courtenay, Omar Sharif Director: David Lean Producers: Arvid Griffen, Carlo Ponti Screenwriters: Robert Bolt, Boris Pasternak WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Doctor_Zhivago_(6_10)_Movie_Clip_The_Private_Life_Is_Dead_(1965)_Hd
    Lara's Theme from Doctor Zhivago
    3:19

    Lara's Theme from Doctor Zhivago

    • Order:
    • Duration: 3:19
    • Uploaded Date: 15 Apr 2016
    • views: 11360150
    Maurice Jarre Lara's Theme from Doctor Zhivago Piano Version performed by SHIRIN
    https://wn.com/Lara's_Theme_From_Doctor_Zhivago
    Doctor Zhivago - Lara's Theme (1965) (Stereo / HD)
    3:16

    Doctor Zhivago - Lara's Theme (1965) (Stereo / HD)

    • Order:
    • Duration: 3:16
    • Uploaded Date: 20 Nov 2017
    • views: 1229157
    https://wn.com/Doctor_Zhivago_Lara's_Theme_(1965)_(Stereo_Hd)
    Doctor Zhivago (3/10) Movie CLIP - Stick Together (1965) HD
    3:37

    Doctor Zhivago (3/10) Movie CLIP - Stick Together (1965) HD

    • Order:
    • Duration: 3:37
    • Uploaded Date: 03 Dec 2015
    • views: 257586
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Soldiers rebel against their generals as the Russian Revolution begins. FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (Rod Steiger). Meanwhile, Zhivago's half-brother Yevgraf (Alec Guinness) and the mysterious, revenge-seeking Strelnikoff (Tom Courteney) represent the "good" and "bad" elements of the Bolshevik revolution. Composer Maurice Jarre received one of Doctor Zhivago's five Oscars, with the others going to screenwriter Robert Bolt, cinematographer Freddie Young, art directors John Box and Terry Marsh, set decorator Dario Simoni, and costumer Phyllis Dalton. The best picture Oscar, however, went to The Sound of Music. CREDITS: TM & © Warner Bros. (1965) Cast: Bernard Kay, Roger Maxwell, Omar Sharif, Julie Christie Director: David Lean Producers: Arvid Griffen, Carlo Ponti Screenwriters: Robert Bolt, Boris Pasternak WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Doctor_Zhivago_(3_10)_Movie_Clip_Stick_Together_(1965)_Hd
    DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically!
    8:08

    DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically!

    • Order:
    • Duration: 8:08
    • Uploaded Date: 12 Apr 2023
    • views: 136863
    DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically! Doctor Zhivago is a 1965 epic historical romance film directed by David Lean with a screenplay by Robert Bolt, based on the 1957 novel by Boris Pasternak. The story is set in Russia during World War I and the Russian Civil War. The film stars Omar Sharif in the title role as Yuri Zhivago, a married physician and poet whose life is altered by the Russian Revolution and subsequent civil war, and Julie Christie as his love interest Lara Antipova. Geraldine Chaplin, Tom Courtenay, Rod Steiger, Alec Guinness, Ralph Richardson, Siobhán McKenna, and Rita Tushingham play supporting roles. _Starring: Geraldine Chaplin Julie Christie Tom Courtenay Alec Guinness Siobhán McKenna Ralph Richardson Omar Sharif Rod Steiger Rita Tushingham
    https://wn.com/Doctor_Zhivago_(1965)_Cast_Then_And_Now_2023,_All_Cast_Died_Tragically
    Doctor Zhivago (1/10) Movie CLIP - Peaceful Protest (1965) HD
    2:34

    Doctor Zhivago (1/10) Movie CLIP - Peaceful Protest (1965) HD

    • Order:
    • Duration: 2:34
    • Uploaded Date: 03 Dec 2015
    • views: 259030
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Dr. Yuri Zhivago (Omar Sharif) watches Russain soldiers disrupt a peaceful protest. FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (Rod Steiger). Meanwhile, Zhivago's half-brother Yevgraf (Alec Guinness) and the mysterious, revenge-seeking Strelnikoff (Tom Courteney) represent the "good" and "bad" elements of the Bolshevik revolution. Composer Maurice Jarre received one of Doctor Zhivago's five Oscars, with the others going to screenwriter Robert Bolt, cinematographer Freddie Young, art directors John Box and Terry Marsh, set decorator Dario Simoni, and costumer Phyllis Dalton. The best picture Oscar, however, went to The Sound of Music. CREDITS: TM & © Warner Bros. (1965) Cast: Assad Bahador, Tom Courtenay, Omar Sharif Director: David Lean Producers: Arvid Griffen, Carlo Ponti Screenwriters: Robert Bolt, Boris Pasternak WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Doctor_Zhivago_(1_10)_Movie_Clip_Peaceful_Protest_(1965)_Hd
    Doctor Zhivago (10/10) Movie CLIP - Zhivago's Last Moments (1965) HD
    2:22

    Doctor Zhivago (10/10) Movie CLIP - Zhivago's Last Moments (1965) HD

    • Order:
    • Duration: 2:22
    • Uploaded Date: 03 Dec 2015
    • views: 474098
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: In his last minutes of life, Dr. Yuri Zhivago (Omar Sharif) thinks he sees Lara (Julie Christie) on the street. FILM DESCRIPTION: Based on the Nobel Prize-winning novel by Boris Pasternak, Doctor Zhivago covers the years prior to, during, and after the Russian Revolution, as seen through the eyes of poet/physician Yuri Zhivago (Omar Sharif). In the tradition of Russian novels, a multitude of characters and subplots intertwine within the film's 197 minutes (plus intermission). Zhivago is married to Tonya (Geraldine Chaplin), but carries on an affair with Lara (Julie Christie), who has been raped by ruthless politician Komarovsky (Rod Steiger). Meanwhile, Zhivago's half-brother Yevgraf (Alec Guinness) and the mysterious, revenge-seeking Strelnikoff (Tom Courteney) represent the "good" and "bad" elements of the Bolshevik revolution. Composer Maurice Jarre received one of Doctor Zhivago's five Oscars, with the others going to screenwriter Robert Bolt, cinematographer Freddie Young, art directors John Box and Terry Marsh, set decorator Dario Simoni, and costumer Phyllis Dalton. The best picture Oscar, however, went to The Sound of Music. CREDITS: TM & © Warner Bros. (1965) Cast: Alec Guinness, Omar Sharif, Julie Christie Director: David Lean Producers: Arvid Griffen, Carlo Ponti Screenwriters: Robert Bolt, Boris Pasternak WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/Doctor_Zhivago_(10_10)_Movie_Clip_Zhivago's_Last_Moments_(1965)_Hd
    The Beauty of Doctor Zhivago
    3:06

    The Beauty of Doctor Zhivago

    • Order:
    • Duration: 3:06
    • Uploaded Date: 26 Oct 2022
    • views: 813699
    Doctor Zhivago 1965 Directed by David Lean Starring : Omar Sharif, Julie Christie, Geraldine Chaplin, Alec Guinness Music composed by Maurice Jarre
    https://wn.com/The_Beauty_Of_Doctor_Zhivago
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Favorite Boris Pasternak Poem of Buvaisar Saitiev | Joe Rogan Experience
      2:03
      Favorite Boris Pasternak Poem of Buvaisar Saitiev | Joe Rogan Experienceremove from playlist
    • Pasternak's House in Peredelkino
      3:22
      Pasternak's House in Peredelkinoremove from playlist
    • Boris PASTERNAK – Une Vie, une Œuvre : 1890-1960 (France Culture, 2010)
      51:30
      Boris PASTERNAK – Une Vie, une Œuvre : 1890-1960 (France Culture, 2010)remove from playlist
    • Boris Pasternak ‒ Two Preludes
      6:03
      Boris Pasternak ‒ Two Preludesremove from playlist
    • Boris PASTERNAK – Un siècle d'écrivains : 1890-1960 (DOCUMENTAIRE, 1998)
      48:34
      Boris PASTERNAK – Un siècle d'écrivains : 1890-1960 (DOCUMENTAIRE, 1998)remove from playlist
    • Hörbuch: Doktor Schiwago von Boris Pasternak - Tail 1 v 2
      11:59:02
      Hörbuch: Doktor Schiwago von Boris Pasternak - Tail 1 v 2remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Boris Pasternak Documentary

    6:54
    Boris Pasternak Documentary
    published: 26 May 2014
    Play in Full Screen
    14:14
    Irwin Weil - Boris Pasternak (Lecture 1, part 1)
    published: 20 Jan 2021
    Play in Full Screen
    2:03
    Favorite Boris Pasternak Poem of Buvaisar Saitiev | Joe Rogan Experience
    Reading on the Joe Rogan podcast an excerpt from "My Sister -- Life" by Boris Pasternak, a...
    published: 08 Feb 2020
    Play in Full Screen
    3:22
    Pasternak's House in Peredelkino
    Visiting Pasternak's house in Peredelkino, in the suburbs of Moscow. Music: https://www....
    published: 30 Dec 2018
    Play in Full Screen
    8:49
    "Doctor Zhivago": Boris Pasternak
    published: 10 Jul 2017
    Play in Full Screen
    51:30
    Boris PASTERNAK – Une Vie, une Œuvre : 1890-1960 (France Culture, 2010)
    Voici la publication du vendredi, jour dédié aux inspirations de la Poésie française : L'é...
    published: 26 May 2017
    Play in Full Screen
    6:03
    Boris Pasternak ‒ Two Preludes
    Boris Pasternak (1890 - 1960), 2 Preludes (1906) Performed by Eldar Nebolsin 00:00 - No...
    published: 09 Mar 2016
    Play in Full Screen
    48:34
    Boris PASTERNAK – Un siècle d'écrivains : 1890-1960 (DOCUMENTAIRE, 1998)
    Voici la publication du vendredi, jour dédié aux inspirations de la Poésie française : L'é...
    published: 14 Dec 2018
    Play in Full Screen
    11:59:02
    Hörbuch: Doktor Schiwago von Boris Pasternak - Tail 1 v 2
    Doktor Schiwago von Boris Pasternak - Tail 1 v 2 Dieser große Roman bereitete mir einige ...
    published: 01 Apr 2016
    Play in Full Screen

    Boris Pasternak

    Boris Leonidovich Pasternak (/ˈpæstərˌnæk/;Russian: Бори́с Леони́дович Пастерна́к; IPA: [bɐˈrʲis lʲɪɐˈnʲidəvʲɪtɕ pəstɛrˈnak]) (10 February [O.S. 29 January] 1890  30 May 1960) was a Russian poet, novelist, and literary translator. In his native Russian, Pasternak's first book of poems, My Sister, Life (1917), is one of the most influential collections ever published in the Russian language. Pasternak's translations of stage plays by Goethe, Schiller, Calderon and Shakespeare remain very popular with Russian audiences.

    Outside Russia, Pasternak is best known as the author of Doctor Zhivago (1957), a novel which takes place between the Russian Revolution of 1905 and the First World War. Due to the novel's independent-minded stance on the socialist state, Doctor Zhivago was rejected for publication in the USSR. At the instigation of Giangiacomo Feltrinelli, Doctor Zhivago was smuggled to Milan and published in 1957. Pasternak was awarded the Nobel Prize for Literature in 1958, an event which both humiliated and enraged the Communist Party of the Soviet Union, which forced him to decline the prize, though his descendants were later to accept it in his name in 1988.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie
      3:41
      Doctor Zhivago (1965) Original Trailer - Omar Sharif Movieremove from playlist
    • Doctor Zhivago (New Trailer 2015) - In cinemas 27 Nov | BFI release
      1:53
      Doctor Zhivago (New Trailer 2015) - In cinemas 27 Nov | BFI releaseremove from playlist
    • Doctor Zhivago (6/10) Movie CLIP - The Private Life is Dead (1965) HD
      3:57
      Doctor Zhivago (6/10) Movie CLIP - The Private Life is Dead (1965) HDremove from playlist
    • Lara's Theme from Doctor Zhivago
      3:19
      Lara's Theme from Doctor Zhivagoremove from playlist
    • Doctor Zhivago (3/10) Movie CLIP - Stick Together (1965) HD
      3:37
      Doctor Zhivago (3/10) Movie CLIP - Stick Together (1965) HDremove from playlist
    • DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically!
      8:08
      DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically!remove from playlist
    • Doctor Zhivago (1/10) Movie CLIP - Peaceful Protest (1965) HD
      2:34
      Doctor Zhivago (1/10) Movie CLIP - Peaceful Protest (1965) HDremove from playlist
    • Doctor Zhivago (10/10) Movie CLIP - Zhivago's Last Moments (1965) HD
      2:22
      Doctor Zhivago (10/10) Movie CLIP - Zhivago's Last Moments (1965) HDremove from playlist
    • The Beauty of Doctor Zhivago
      3:06
      The Beauty of Doctor Zhivagoremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie

    Starring: Omar Sharif, Julie Christie and Geraldine Chaplin Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during the First World War and then the October Revolution. Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn We're on SNAPCHAT: http://bit.ly/2cOzfcy Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to hunt it down.
    3:41
    Doctor Zhivago (1965) Original Trailer - Omar Sharif Movie
    Starring: Omar Sharif, Julie Christie and Geraldine Chaplin Doctor Zhivago (1965) Original...
    published: 20 Sep 2016
    Play in Full Screen
    1:53
    Doctor Zhivago (New Trailer 2015) - In cinemas 27 Nov | BFI release
    Subscribe: http://bit.ly/subscribetotheBFI. An epic romance set against the backdrop of th...
    published: 20 Oct 2015
    Play in Full Screen
    3:57
    Doctor Zhivago (6/10) Movie CLIP - The Private Life is Dead (1965) HD
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't m...
    published: 03 Dec 2015
    Play in Full Screen
    3:19
    Lara's Theme from Doctor Zhivago
    Maurice Jarre Lara's Theme from Doctor Zhivago Piano Version performed by SHIRIN
    published: 15 Apr 2016
    Play in Full Screen
    3:16
    Doctor Zhivago - Lara's Theme (1965) (Stereo / HD)
    published: 20 Nov 2017
    Play in Full Screen
    3:37
    Doctor Zhivago (3/10) Movie CLIP - Stick Together (1965) HD
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't m...
    published: 03 Dec 2015
    Play in Full Screen
    8:08
    DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically!
    DOCTOR ZHIVAGO (1965) Cast THEN AND NOW 2023, All cast died tragically! Doctor Zhivago is ...
    published: 12 Apr 2023
    Play in Full Screen
    2:34
    Doctor Zhivago (1/10) Movie CLIP - Peaceful Protest (1965) HD
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't m...
    published: 03 Dec 2015
    Play in Full Screen
    2:22
    Doctor Zhivago (10/10) Movie CLIP - Zhivago's Last Moments (1965) HD
    Doctor Zhivago movie clips: http://j.mp/1LmAQ6e BUY THE MOVIE: http://j.mp/12OmBON Don't m...
    published: 03 Dec 2015
    Play in Full Screen
    3:06
    The Beauty of Doctor Zhivago
    Doctor Zhivago 1965 Directed by David Lean Starring : Omar Sharif, Julie Christie, Geraldi...
    published: 26 Oct 2022
    Play in Full Screen
    '); } 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)); } }); }); }); // -->

    Latest News for: doctor zhivago boris pasternak

    Edit

    “Doctor Zhivago” to debut in new Persian translation

    Tehran Times 25 Dec 2024
    TEHRAN- A new Persian translation of Russian poet and novelist Boris Pasternak’s "Doctor Zhivago" by Iranian translator Abtin Golkar is set to hit the book market soon ... .
    Edit

    Lara Flynn: Twin Peaks, dating Jack Nicholson and plastic surgery

    Newsner 20 Nov 2024
    Larry Flynn was a natural beauty who stole our hearts in Twin Peaks ... Now, fans are left wondering ... Born in Davenport, Iowa, Lara came into the world with a name inspired by a character in Boris Pasternak’s Doctor Zhivago (Lara Antipova) ... Paul S.
    Edit

    The Road Well Traveled: Exploring the History of Literary Journeys

    The American Spectator 31 Aug 2024
    My favorite section of the book was “Postmodern Movements,” with Boris Pasternak’s Doctor Zhivago (1957), which depicts many journeys as its characters travel across Russia in search of ...
    Edit

    125 Tricky and Fun 'Jeopardy' Questions To Test Your Knowledge

    Aiken Standard 02 Aug 2024
    What's not to love about game shows? Not only are they fun to watch but many of us love to try and play along ... Luckily, we're giving you both ... Related ... 1. Clue ... 2. Clue ... This book by Boris Pasternak was banned in the USSR until 1987 ... What is Doctor Zhivago?.
    Edit

    On This Day: Recovery of human remains in World Trade centre ends in 2002

    Philenews 30 May 2024
    Following are some of the major events to have occurred on May 30.. 1915 – Balkan war treaty signed ... 1960Boris Pasternak, Russian novelist and poet, famed for his “Doctor Zhivago”, died in Moscow ... (Reuters) ....
    Edit

    A Dictator Calls by Ismail Kadare

    Hindustan Times 17 Apr 2024
    Boris Pasternak, celebrated Russian poet and author of Doctor Zhivago, which won the Nobel Prize for Literature in 1958, is the protagonist of Ismail Kadare’s A Dictator Calls ... Boris Pasternak on a Russian postage stamp from 2019.
    Edit

    New Persian translation of “Doctor Zhivago” comes to Iranian bookstores

    Tehran Times 15 Apr 2024
    TEHRAN-A new Persian translation of Russian poet and novelist Boris Pasternak’s 1957 novel “Doctor Zhivago” has come to Iranian bookstores ... .
    Edit

    Before & after: How great Russian writers looked as children

    Russia Beyond 27 Dec 2023
    Boris Pasternak ... The poet and author of Doctor Zhivago (on the right in the photo) was born into a Moscow intelligentsia family – his mother was a pianist, while his father was a prominent artist and an academician.
    Edit

    Pushpa Bharati’s ‘Yaadein, Yaadein! Aur Yaadein’ breaks the mould of memory-writing, brings alive literary greats

    Hindustan Times 25 Dec 2023
    Yaadein is neither memoir, nor an autobiography ... Makhanlal Chaturvedi, and the Bharatis’ love story ... The message was clear ... She had previously picked up a copy of Boris Pasternak’s Doctor Zhivago from there and sent it to him in Allahabad ... ....
    Edit

    5 great Russian books criticized by contemporaries

    Russia Beyond 21 Nov 2023
    Boris Pasternak. ‘Doctor Zhivago’. A still from ‘Doctor Zhivago’ movie starring Omar Sharif as Yury Zhivago David Lean/Metro-Goldwyn-Mayer (MGM), Carlo Ponti Production, Sostar S.A., 1965.
    Edit

    Letter to the Editor

    Cleburne Times-Review 17 Nov 2023
    Stevens says are “Christian Nationalists” or the “New Apostolic Reformation.” He sounds a lot like some of the characters depicted in Boris Pasternak’s Doctor Zhivago novel about the turmoil in the ...
    Edit

    Six books you didn’t know were propaganda

    Hindustan Times 04 Nov 2023
    Doctor Zhivago. By Boris Pasternak ... Their favourite author was Boris Pasternak. His novel “Doctor Zhivago” had “great propaganda value”, declared a CIA memo in 1958 ... One cited Pasternak’s “viciousness” and “non-acceptance” of socialism.

    Most Viewed

    ×