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

The Door (novel)

The Door is a novel by Hungarian writer Magda Szabó (1917–2007). The novel concerns the developing relationship between a young Hungarian writer and her housecleaner, and is partly autobiographical.

The Door was originally published in Hungary in 1987, and translated into English in 1995 by Stefan Draughon for American publication, and again in 2005 by Len Rix for British publication. Rix's translation won the 2006 Oxford-Weidenfeld Translation Prize, and was short-listed for the Independent Foreign Fiction Prize. Rix's translation was republished in 2015 by New York Review Books Classics.

A film based on the novel, directed by István Szabó, was released in March 2012.

Plot

A childless woman writer, Magda, hires an older housekeeper, Emerence, who behaves oddly, but eventually they develop a kind of friendship.

References

External links

  • Labours of love, review of "The Door" by The Guardian, October 29, 2005
  • The housekeeper with the keys to Hungary's secret sufferings, review of "The Door" by The Independent, 18 January 2006
  • Lloyd Biggle, Jr.

    Lloyd Biggle, Jr. (April 17, 1923 – September 12, 2002), was a musician, author, and internationally known oral historian.

    Biography

    Biggle was born in 1923 in Waterloo, Iowa. He served in World War II as a communications sergeant in a rifle company of the 102nd Infantry Division; during the war, he was wounded twice. His second wound, a shrapnel wound in his leg received near the Elbe River at the end of the war, left him disabled for life.

    After the war, Biggle resumed his education. He received an A.B. Degree with High Distinction from Wayne State University and M.M. and Ph.D. degrees from the University of Michigan. Biggle taught at the University of Michigan and at Eastern Michigan University in the 1950s. He began writing professionally in 1955 and became a full-time writer with the publication of his novel, All the Colors of Darkness in 1963; he continued in the writing profession until his death.

    Career

    Both Biggle's science fiction and mystery stories have received international acclaim being nominated for the 1962 Hugo for short fiction, and also nominated for the Locus Readers awards in 1972, 1973, and 1974. He was celebrated in science fiction circles as the author who introduced aesthetics into a literature known for its scientific and technological complications. His stories frequently used musical and artistic themes. Such notables as songwriter Jimmy Webb and novelist Orson Scott Card have written of the tremendous effect that his early story, "The Tunesmith", had on them in their youth. Among Biggle's enduring science fiction creations were the Interplanetary Relations Bureau and the Cultural Survey, both featured in novels and magazine stories.

    The Door (George Jones song)

    "The Door" is a song written by Billy Sherrill and Norro Wilson, and recorded by American country music artist George Jones. It was released in October 1974 as the first single from the album The Best of George Jones. "The Door" was George Jones' sixth number one on the country chart as a solo artist. The single stayed a single week at number one and would spend a total of ten weeks on the country chart.

    Recording and composition

    Jones had scored his first solo #1 hit single in seven years with "The Grand Tour" in 1974, the first of several extraordinary performances producer Billy Sherrill would coax out of the temperamental singer in the long years ahead. "The Door" tells the story of a former soldier who, despite being haunted by the sights and sounds he endured in battle, confesses that he was most traumatized by the sound of the door closing when the woman he loved walked out on him:

    In the liner notes to the Jones retrospective Anniversary – 10 Years of Hits, Sherrill divulges that it was his office door that was used for the sound effect on the recording, since no other door produced the appropriate sound. The song went to #1 on the Billboard country singles chart, but Jones speculated later that it might have been bigger had it not been for its touchy subject matter in light of the Vietnam War, recalling in the 1994 video release Golden Hits:

    Open the Door (Magnapop song)

    "Open the Door" is a 1996 single by Magnapop released by Play It Again Sam Records as a Compact Disc maxi-single (catalogue number 450.0297.22 - BIAS 297 CD), two-track Compact Disc (450.0297.24 - BIAS 297 CDS) and 7" on red vinyl (450.0297.40 - BIAS 297-7). A promotional Compact Disc (DPRO 30054) and 10" (SPRO 30054) were released by Priority Records. Live recordings of the song appear on the German edition of 2005's Mouthfeel and the live album Magnapop Live at Maxwell's 03/09/2005. A music video was created for the song in 1996.

    The song chronicle's songwriters Linda Hopper and Ruthie Morris' struggle with the deaths of mutual acquaintances. The music video for the song was censored by MTV for its depiction of drug abuse.

    Track listing

    All songs written by Linda Hopper and Ruthie Morris

  • "Open the Door" – 3:38
  • "True Love" – 1:56
  • "Re-Hab" – 2:37
  • "Open the Door" – 3:38
  • "Re-Hab" – 2:37
  • "Open the Door" (Edit) – 3:20
  • "Open the Door" – 3:36
  • Personnel

  • Linda Hopper lead vocals
  • Édon

    Édon is a commune in the Charente department in southwestern France.

    Geography

    The Lizonne (locally called Nizonne) forms the commune's southeastern border.

    Population

    See also

  • Communes of the Charente department
  • References

  • INSEE
  • Regular Show (season 1)

    The first season of American animated television series Regular Show originally aired on Cartoon Network in the United States. Many of the characters are loosely based on those developed for J.G. Quintel's student films at California Institute of the Arts: The Naïve Man From Lolliland and 2 in the AM PM. Quintel pitched Regular Show for Cartoon Network's Cartoonstitute project, in which the network allowed young artists to create pilots with no notes to possibly be optioned as a show. After being green-lit, Quintel recruited several indie comic book artists, plus some of the crewmembers he had worked with on The Marvelous Misadventures of Flapjack, to compose the staff of the show, as their style matched close to what he desired for the series. Regular Show was picked up by Cartoon Network, who decided to create a twelve-episode first season.

    The first episode of Regular Show's first season is "The Power", ending with the season finale "Mordecai and the Rigbys". The season was storyboarded and written by J. G. Quintel, Sean Szeles, Shion Takeuchi, Mike Roth, Jake Armstrong, Benton Connor, Kat Morris, Paul Scarlata, and Kent Osborne, while being produced by Cartoon Network Studios. The show is rated TV-PG and occasionally TV-PG-V. Despite not airing on Cartoon Network's Adult Swim line-up, it is considered more of a traditional adult's animated comedy than a children's cartoon.

    Don (franchise)

    Don is an Indian action crime film, Comics and Video game franchise. The franchise is centered on Don, a fictional mafia lord played by Amitabh Bachchan and Shahrukh Khan in the films.

    In the series Amitabh Bachchan stars in the first film and Shahrukh Khan in the rest of the films. After the release of Don 2, the latest installment of the series, it was considered to be one of the finest action film series in India along with Dhoom (film series) and Race (film series).

    Don is now the fifth highest grossing film series in Bollywood.

    Films

    Production

    Production for Don

    Podcasts:

    • THE DOOR by Magda Szabo. Hungarian high tension. Review, Analysis, Exploration

      Thrilling and unexpected, I am very glad to have read this one. I will be reading more Szabo in the future. Paeveo @Attention! https://www.youtube.com/channel/UC_7IPEXaZuRlPeE90dFSDbw Support the Channel- www.ko-fi.com/everyonewho Instagram- Everyone_Who_Reads Voxer- nclemo467 #booktube #life #drama

      published: 09 Jul 2021
    • THE DOOR - Official Cinema trailer

      Magda, a female writer struggling for success, employs an elderly woman called Emerence (HELEN MIRREN) to be her housekeeper. From their first encounter, it is clear that Emerence is no ordinary maid. Although everyone in the neighbourhood knows and respects her, no one knows anything about her private life or has ever been allowed to enter her home. However, a dramatic event in the writer's life prompts Emerence to unveil glimpses of her traumatic past - a past which sheds light on her very peculiar behaviour. THE DOOR brilliantly illustrates the bond as it develops between these two very different women and, ultimately, the tragic end of their relationship. IN CINEMAS IN NEW ZEALAND FROM 5TH JULY 2012 IN CINEMAS IN AUSTRALIA STILL TBC 2012

      published: 29 May 2012
    • The Door by Magda Szabo/Character Analysis

      #Booktube #booktalk #thedoor The Door by Magda Szabo Magda Szabo’s The Door was first published in 1987. The novel explores the relationship between two women, a housekeeper, Emerence, and an author, Magda. The novel continues throughout contributing mythological characteristics to the character of Emerence, building her up as something that resembles more folklore than it does truth. This short character analysis provides one example of how myth works to drive a story forward. Channel mentioned and the video on The Door by Magda Szabo: Everyone who Reads it Mus Converse: https://www.youtube.com/watch?v=XzuzOFP1Ipc Follow me here: Instagram: https://www.instagram.com/paeveo/ Twitter: https://twitter.com/Pae_Veo

      published: 10 Jul 2021
    • Reading Vlog// Outfits, Bookstores and The Door by Magda Szabo

      A week in Edmonton over the Holiday Season. Our flights to NYC were canceled so I made the most of being at home for Christmas. This week, I read The Door by Hungarian author, Magda Szabó. What a splendid end to my reading year. Enjoy 💋

      published: 30 Dec 2022
    • You guys left the door unlocked |Meme| [The Novel's Extra]

      published: 11 Sep 2022
    • "The Hungarian Despair of Magda Szabó" The Door Novel Review

      "The Door" A Viewer’s Guide to Magda Szabó's Book A busy young writer struggling to cope with domestic chores, hires a housekeeper recommended by a friend. The housekeeper's reputation is one built on dependable efficiency, though she is something of an oddity. Stubborn, foul-mouthed and with a flagrant disregard for her employer's opinions she may even be crazy. She allows no-one to set foot inside her house; she masks herself with a veil and is equally guarded about her personal life. And yet Emerence is revered as much as she is feared. As the story progresses her energy and passion to help becomes clear, extinguishing any doubts arising out of her bizarre behaviour. A stylishly told tale which recounts a strange relationship built up over 20 years between a writer and her housekeeper. ...

      published: 21 Sep 2020
    • Edgar Wallace | The Door with Seven Locks (1940) Mystery, Thriller | Colorized Movie | Subtitles

      A murder is found to be connected to a false heir and a secret underground torture chamber. Director: Norman Lee Writers: Edgar Wallace (novel "The Door with Seven Locks"), Norman Lee, Gilbert Gunn Stars: Leslie Banks, Lilli Palmer, Romilly Lunge Genres: Crime, Horror, Mystery, Thriller Also known as: Chamber of Horrors (1940) Black & White version: https://youtu.be/sw6b6V_Gulw 00:00:00 Full length movie 00:01:11 spooky mansion 00:04:33 RIP Lord Selford 1928 00:10:15 Mr Silva 00:16:25 Inspector Sneed at Scotland Yard 00:23:03 Havleock has no keys 00:35:03 at the tomb 00:44:11 Collection of torture devices 00:57:06 attempt 2 01:10:37 John Selford This video is available with subtitles in more than 40+ languages. Click on ⚙️ and choose your preferred language.

      published: 30 Apr 2023
    • The House Next Door (novel)

      The House Next Door is a 1978 horror novel written by Anne Rivers Siddons. It was first published by Simon & Schuster and became a New York Times bestseller.[1

      published: 27 Feb 2023
    • Affection - Clip from 'The Door' (2012)

      Affection - Clip from the movie 'The Door' (Az ajtó, 2012) by director István Szabó, starring Helen Mirren, Martina Gedeck, Károly Eperjes and based on the novel 'The Door' by Hungarian writer Magda Szabó. IMDb: http://www.imdb.com/title/tt1194577/

      published: 04 Sep 2012
    • Kwame Alexander's The Door of No Return is a novel about slavery | Book of the Day

      Kwame Alexander's new novel aimed at teens, The Door of No Return, focuses on the history of slavery. It follows a boy growing up in Ghana in 1860, and it aims to help readers understand the wholeness of the lives and experiences of Africans before they walked through that "door of no return" – and were shipped to the Americas. In an interview with NPR's Rachel Martin, Alexander talks about how he used poetry to make the heavy subject palatable for children. WHAT IS “BOOK OF THE DAY”? In need of a good read? Or just want to keep up with the books everyone's talking about? NPR's “Book of the Day” gives you today's very best writing in a snackable, skimmable, pocket-sized podcast. Whether you're looking to engage with the big questions of our times – or temporarily escape from them – we've...

      published: 04 Oct 2022
    developed with YouTube
    THE DOOR by Magda Szabo. Hungarian high tension. Review, Analysis, Exploration
    11:32

    THE DOOR by Magda Szabo. Hungarian high tension. Review, Analysis, Exploration

    • Order:
    • Duration: 11:32
    • Uploaded Date: 09 Jul 2021
    • views: 738
    Thrilling and unexpected, I am very glad to have read this one. I will be reading more Szabo in the future. Paeveo @Attention! https://www.youtube.com/channel/UC_7IPEXaZuRlPeE90dFSDbw Support the Channel- www.ko-fi.com/everyonewho Instagram- Everyone_Who_Reads Voxer- nclemo467 #booktube #life #drama
    https://wn.com/The_Door_By_Magda_Szabo._Hungarian_High_Tension._Review,_Analysis,_Exploration
    THE DOOR - Official Cinema trailer
    1:48

    THE DOOR - Official Cinema trailer

    • Order:
    • Duration: 1:48
    • Uploaded Date: 29 May 2012
    • views: 94313
    Magda, a female writer struggling for success, employs an elderly woman called Emerence (HELEN MIRREN) to be her housekeeper. From their first encounter, it is clear that Emerence is no ordinary maid. Although everyone in the neighbourhood knows and respects her, no one knows anything about her private life or has ever been allowed to enter her home. However, a dramatic event in the writer's life prompts Emerence to unveil glimpses of her traumatic past - a past which sheds light on her very peculiar behaviour. THE DOOR brilliantly illustrates the bond as it develops between these two very different women and, ultimately, the tragic end of their relationship. IN CINEMAS IN NEW ZEALAND FROM 5TH JULY 2012 IN CINEMAS IN AUSTRALIA STILL TBC 2012
    https://wn.com/The_Door_Official_Cinema_Trailer
    The Door by Magda Szabo/Character Analysis
    10:02

    The Door by Magda Szabo/Character Analysis

    • Order:
    • Duration: 10:02
    • Uploaded Date: 10 Jul 2021
    • views: 706
    #Booktube #booktalk #thedoor The Door by Magda Szabo Magda Szabo’s The Door was first published in 1987. The novel explores the relationship between two women, a housekeeper, Emerence, and an author, Magda. The novel continues throughout contributing mythological characteristics to the character of Emerence, building her up as something that resembles more folklore than it does truth. This short character analysis provides one example of how myth works to drive a story forward. Channel mentioned and the video on The Door by Magda Szabo: Everyone who Reads it Mus Converse: https://www.youtube.com/watch?v=XzuzOFP1Ipc Follow me here: Instagram: https://www.instagram.com/paeveo/ Twitter: https://twitter.com/Pae_Veo
    https://wn.com/The_Door_By_Magda_Szabo_Character_Analysis
    Reading Vlog// Outfits, Bookstores and The Door by Magda Szabo
    21:08

    Reading Vlog// Outfits, Bookstores and The Door by Magda Szabo

    • Order:
    • Duration: 21:08
    • Uploaded Date: 30 Dec 2022
    • views: 386
    A week in Edmonton over the Holiday Season. Our flights to NYC were canceled so I made the most of being at home for Christmas. This week, I read The Door by Hungarian author, Magda Szabó. What a splendid end to my reading year. Enjoy 💋
    https://wn.com/Reading_Vlog_Outfits,_Bookstores_And_The_Door_By_Magda_Szabo
    You guys left the door unlocked |Meme| [The Novel's Extra]
    0:59

    You guys left the door unlocked |Meme| [The Novel's Extra]

    • Order:
    • Duration: 0:59
    • Uploaded Date: 11 Sep 2022
    • views: 13874
    https://wn.com/You_Guys_Left_The_Door_Unlocked_|Meme|_The_Novel's_Extra
    "The Hungarian Despair of Magda Szabó" The Door Novel Review
    1:49

    "The Hungarian Despair of Magda Szabó" The Door Novel Review

    • Order:
    • Duration: 1:49
    • Uploaded Date: 21 Sep 2020
    • views: 342
    "The Door" A Viewer’s Guide to Magda Szabó's Book A busy young writer struggling to cope with domestic chores, hires a housekeeper recommended by a friend. The housekeeper's reputation is one built on dependable efficiency, though she is something of an oddity. Stubborn, foul-mouthed and with a flagrant disregard for her employer's opinions she may even be crazy. She allows no-one to set foot inside her house; she masks herself with a veil and is equally guarded about her personal life. And yet Emerence is revered as much as she is feared. As the story progresses her energy and passion to help becomes clear, extinguishing any doubts arising out of her bizarre behaviour. A stylishly told tale which recounts a strange relationship built up over 20 years between a writer and her housekeeper. After an unpromising and caustic start benign feelings develop and ultimately the writer benefits from what becomes an inseparable relationship. Simultaneously we learn Emerence's tragic past which is revealed in snapshots throughout the book. Book Review #Magda_Szabó #Magda_Szabo #Az_ajtó #The_Door #Book #ماگدان_سابو -- Book Detail: The Door Author Magda Szabó Original title Az ajtó Translator Stefan Draughon Len Rix Country Hungary Language Hungarian Genre Novel Publisher East European Monographs/Harvill Secker Publication date 1985 (Hungarian) 15 February 1995 (English) 20 October 2005 (English) Media type Print (Hardback & Paperback) Pages 272 pp ISBN 0-88033-304-9 (USA) ISBN 1-84343-193-9 (UK) OCLC 32332728 LC Class PH3351.S592 A7413 1994 -- Movie Detail: The Door Directed by István Szabó Produced by Jenő Hábermann Sándor Söth Written by István Szabó Andrea Vészits Magda Szabó Starring Helen Mirren Martina Gedeck Károly Eperjes Cinematography Elemér Ragályi Release date 8 March 2012 Running time 97 minutes Country Hungary Language English Production Companies FilmArt Kft Intuit Pictures Bankside Films (co-production) ARD Degeto Film (co-production) Head Gear Films Metrol Technology Distributors Distribution Company (2014) (Argentina) (theatrical) Piffl Medien (2012) (Germany) (theatrical) Arrow Films (2011) (United Kingdom) MegaCom Film (MCF) (2010) (Yugoslavia) Rialto Distribution (2012) (Australia) Rialto Distribution (2012) (New Zealand) WOWOW Cinema (2013) (Japan) (tv)
    https://wn.com/The_Hungarian_Despair_Of_Magda_Szabó_The_Door_Novel_Review
    Edgar Wallace | The Door with Seven Locks (1940) Mystery, Thriller | Colorized Movie | Subtitles
    1:26:08

    Edgar Wallace | The Door with Seven Locks (1940) Mystery, Thriller | Colorized Movie | Subtitles

    • Order:
    • Duration: 1:26:08
    • Uploaded Date: 30 Apr 2023
    • views: 211413
    A murder is found to be connected to a false heir and a secret underground torture chamber. Director: Norman Lee Writers: Edgar Wallace (novel "The Door with Seven Locks"), Norman Lee, Gilbert Gunn Stars: Leslie Banks, Lilli Palmer, Romilly Lunge Genres: Crime, Horror, Mystery, Thriller Also known as: Chamber of Horrors (1940) Black & White version: https://youtu.be/sw6b6V_Gulw 00:00:00 Full length movie 00:01:11 spooky mansion 00:04:33 RIP Lord Selford 1928 00:10:15 Mr Silva 00:16:25 Inspector Sneed at Scotland Yard 00:23:03 Havleock has no keys 00:35:03 at the tomb 00:44:11 Collection of torture devices 00:57:06 attempt 2 01:10:37 John Selford This video is available with subtitles in more than 40+ languages. Click on ⚙️ and choose your preferred language.
    https://wn.com/Edgar_Wallace_|_The_Door_With_Seven_Locks_(1940)_Mystery,_Thriller_|_Colorized_Movie_|_Subtitles
    The House Next Door (novel)
    11:08:40

    The House Next Door (novel)

    • Order:
    • Duration: 11:08:40
    • Uploaded Date: 27 Feb 2023
    • views: 2375
    The House Next Door is a 1978 horror novel written by Anne Rivers Siddons. It was first published by Simon & Schuster and became a New York Times bestseller.[1
    https://wn.com/The_House_Next_Door_(Novel)
    Affection - Clip from 'The Door' (2012)
    1:45

    Affection - Clip from 'The Door' (2012)

    • Order:
    • Duration: 1:45
    • Uploaded Date: 04 Sep 2012
    • views: 8240
    Affection - Clip from the movie 'The Door' (Az ajtó, 2012) by director István Szabó, starring Helen Mirren, Martina Gedeck, Károly Eperjes and based on the novel 'The Door' by Hungarian writer Magda Szabó. IMDb: http://www.imdb.com/title/tt1194577/
    https://wn.com/Affection_Clip_From_'The_Door'_(2012)
    Kwame Alexander's The Door of No Return is a novel about slavery | Book of the Day
    7:40

    Kwame Alexander's The Door of No Return is a novel about slavery | Book of the Day

    • Order:
    • Duration: 7:40
    • Uploaded Date: 04 Oct 2022
    • views: 484
    Kwame Alexander's new novel aimed at teens, The Door of No Return, focuses on the history of slavery. It follows a boy growing up in Ghana in 1860, and it aims to help readers understand the wholeness of the lives and experiences of Africans before they walked through that "door of no return" – and were shipped to the Americas. In an interview with NPR's Rachel Martin, Alexander talks about how he used poetry to make the heavy subject palatable for children. WHAT IS “BOOK OF THE DAY”? In need of a good read? Or just want to keep up with the books everyone's talking about? NPR's “Book of the Day” gives you today's very best writing in a snackable, skimmable, pocket-sized podcast. Whether you're looking to engage with the big questions of our times – or temporarily escape from them – we've got an author who will speak to you, all genres, mood and writing styles included. Catch today's great books in 15 minutes or less. LISTEN TO OTHER EPISODES https://www.youtube.com/playlist?list=PL2TjQf2riraLhNGFnPta1N0R5q9YLWBLf NOTE: Captions are auto-generated by YouTube. SUBSCRIBE TO NPR 🎙 NPR Podcasts: https://www.youtube.com/c/nprpodcasts 🫒 NPR Entertainment: https://www.youtube.com/c/nprentertainment 🗞️ NPR Daily News: https://www.youtube.com/c/nprdailynews 💰 Planet Money: https://www.youtube.com/c/planetmoney 🎵 NPR Music (Tiny Desk): https://www.youtube.com/nprmusic 🎷 Jazz Night in America: https://www.youtube.com/jazznightinamerica 🌐 NPR: https://www.youtube.com/npr FOLLOW NPR ELSEWHERE https://www.npr.org/ https://www.instagram.com/npr/ https://www.tiktok.com/@npr https://twitter.com/npr https://www.facebook.com/NPR See “Book of the Day” sponsors and promo codes https://www.nationalpublicmedia.com/podcastsponsors/nprs-book-of-the-day/ The NPR shows you love are possible thanks to your support. Donate today: https://www.npr.org/donations/support
    https://wn.com/Kwame_Alexander's_The_Door_Of_No_Return_Is_A_Novel_About_Slavery_|_Book_Of_The_Day
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    THE DOOR by Magda Szabo. Hungarian high tension. Review, Analysis, Exploration

    Thrilling and unexpected, I am very glad to have read this one. I will be reading more Szabo in the future. Paeveo @Attention! https://www.youtube.com/channel/UC_7IPEXaZuRlPeE90dFSDbw Support the Channel- www.ko-fi.com/everyonewho Instagram- Everyone_Who_Reads Voxer- nclemo467 #booktube #life #drama
    11:32
    THE DOOR by Magda Szabo. Hungarian high tension. Review, Analysis, Exploration
    Thrilling and unexpected, I am very glad to have read this one. I will be reading more Sza...
    published: 09 Jul 2021
    Play in Full Screen
    1:48
    THE DOOR - Official Cinema trailer
    Magda, a female writer struggling for success, employs an elderly woman called Emerence (H...
    published: 29 May 2012
    Play in Full Screen
    10:02
    The Door by Magda Szabo/Character Analysis
    #Booktube #booktalk #thedoor The Door by Magda Szabo Magda Szabo’s The Door was first pu...
    published: 10 Jul 2021
    Play in Full Screen
    21:08
    Reading Vlog// Outfits, Bookstores and The Door by Magda Szabo
    A week in Edmonton over the Holiday Season. Our flights to NYC were canceled so I made the...
    published: 30 Dec 2022
    Play in Full Screen
    0:59
    You guys left the door unlocked |Meme| [The Novel's Extra]
    published: 11 Sep 2022
    Play in Full Screen
    1:49
    "The Hungarian Despair of Magda Szabó" The Door Novel Review
    "The Door" A Viewer’s Guide to Magda Szabó's Book A busy young writer struggling to cope w...
    published: 21 Sep 2020
    Play in Full Screen
    1:26:08
    Edgar Wallace | The Door with Seven Locks (1940) Mystery, Thriller | Colorized Movie | Subtitles
    A murder is found to be connected to a false heir and a secret underground torture chamber...
    published: 30 Apr 2023
    Play in Full Screen
    11:08:40
    The House Next Door (novel)
    The House Next Door is a 1978 horror novel written by Anne Rivers Siddons. It was first pu...
    published: 27 Feb 2023
    Play in Full Screen
    1:45
    Affection - Clip from 'The Door' (2012)
    Affection - Clip from the movie 'The Door' (Az ajtó, 2012) by director István Szabó, starr...
    published: 04 Sep 2012
    Play in Full Screen
    7:40
    Kwame Alexander's The Door of No Return is a novel about slavery | Book of the Day
    Kwame Alexander's new novel aimed at teens, The Door of No Return, focuses on the history ...
    published: 04 Oct 2022
    Play in Full Screen

    The Door (novel)

    The Door is a novel by Hungarian writer Magda Szabó (1917–2007). The novel concerns the developing relationship between a young Hungarian writer and her housecleaner, and is partly autobiographical.

    The Door was originally published in Hungary in 1987, and translated into English in 1995 by Stefan Draughon for American publication, and again in 2005 by Len Rix for British publication. Rix's translation won the 2006 Oxford-Weidenfeld Translation Prize, and was short-listed for the Independent Foreign Fiction Prize. Rix's translation was republished in 2015 by New York Review Books Classics.

    A film based on the novel, directed by István Szabó, was released in March 2012.

    Plot

    A childless woman writer, Magda, hires an older housekeeper, Emerence, who behaves oddly, but eventually they develop a kind of friendship.

    References

    External links

  • Labours of love, review of "The Door" by The Guardian, October 29, 2005
  • The housekeeper with the keys to Hungary's secret sufferings, review of "The Door" by The Independent, 18 January 2006
  • '); } 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)); } }); }); }); // -->
    ×