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

Keith Donohue (novelist)

Keith Donohue (born 1959) is an American novelist. He is the author of four novels: "The Boy Who Drew Monsters" (2014), "Centuries of June" (2011), "Angels of Destruction" (2009), and "The Stolen Child" (2006). His acclaimed 2006 novel The Stolen Child, about a changeling, was inspired by the Yeats poem of the same name.

Background

Born and raised in Pittsburgh, Pennsylvania, he earned his B.A. and M.A. from Duquesne University and his Ph.D. in English from The Catholic University of America.

Until 1998 he worked at the National Endowment for the Arts and wrote speeches for chairmen John Frohnmayer and Jane Alexander, and is currently director of communications for the National Historical Publications and Records Commission, the grant-making arm of the U. S. National Archives in Washington, DC.

He has also written articles for The New York Times, Washington Post, Atlanta Journal-Constitution, and other newspapers.

Works

  • Centuries of June. New York: Crown Publishers. 2011. ISBN 0-307-45028-7. 
  • Keith Donohue

    Keith Donohue may refer to:

  • Keith Donohue (novelist) (born 1960), American novelist
  • Keith Donohue (cricketer) (born 1963), English cricketer

  • Keith Donohue (cricketer)

    Keith Donohue (born 11 October 1963) is an English cricketer. Donohue is a right-handed batsman who bowled right-arm medium-fast. He was born in Chatham, Kent.

    Donohue made his debut for Devon in the 1985 Minor Counties Championship against Cornwall, in doing so beginning a 15-year playing career with the county. From 1985 to 2000, he represented the county in 88 Championship matches, the last of which came against Cheshire. He made his MCCA Knockout Trophy debut for the county in 1986 against Cornwall. From 1986 to 2000, he represented the county in 34 Trophy matches, the last of which came against Cornwall. During this playing career with Devon, he won two Minor Counties Championships and three MCCA Knockout Trophy's. He played List A cricket for Devon at a time when they were permitted to take part in the domestic one-day competition, making his debut in that format in the 1986 NatWest Trophy against Nottinghamshire. From 1986 to 2000, he represented Devon in 11 List A matches, the last of which came in the 2000 NatWest Trophy against Staffordshire. In his 11 List A matches, he scored 110 runs at a batting average of 15.71, with a high score of 31. With the ball he took 13 wickets at a bowling average of 41.84, with best figures of 3/41 against Essex in the 1996 NatWest Trophy.

    Podcasts:

    • The Stolen Child | Keith Donohue | Talks at Google

      Author Keith Donohue discusses his book "The Stolen Child" as part of the Authors@Google series. Keith lives in Maryland, near Washington, D.C. He was a speechwriter at the National Endowment for the Arts and now works at another federal agency. "The Stolen Child" is his first novel. This event took place June 6, 2007 at the Google office in Ann Arbor, MI.

      published: 22 Jun 2007
    • Keith Donohue interview - The Stolen Child

      An interview with author Keith Donohue about his novel, The Stolen Child. Taped March 29, 2008 for Fast Forward: Contemporary Science Fiction, a monthly cable television series about SF, fantasy, & horror. More information and interviews are available at http://www.fast-forward.tv DG Productions

      published: 19 Dec 2012
    • The Boy Who Drew Monsters by Keith Donohue (Book Trailer)

      The Boy Who Drew Monsters by Keith Donohue is available now in bookstores everywhere: http://us.macmillan.com/books/9781250057150 Animation and sound by Rose Donohue, Bennington College. From the New York Times bestselling author of The Stolen Child comes a hypnotic literary horror novel about a young boy trapped inside his own world, whose drawings blur the lines between fantasy and reality. Ever since he nearly drowned in the ocean three years earlier, ten-year-old Jack Peter Keenan has been deathly afraid to venture outdoors. Refusing to leave his home in a small coastal town in Maine, Jack Peter spends his time drawing monsters. When those drawings take on a life of their own, no one is safe from the terror they inspire. His mother, Holly, begins to hear strange sounds in the night ...

      published: 14 Oct 2014
    • Lecture 3b: the central nervous system (summer, 2017)

      Welcome to another video lecture for my class on the psychological aspects of drug use and abuse. This one will focus on the central nervous system and will give you a brief overview of how drugs influence the various structures and functions found there.

      published: 22 May 2017
    • 2017 Gaithersburg Book Festival Keith Donohue & Keith Fentonmiller

      The Gaithersburg Book Festival is an annual celebration of great books and great writing that is fast becoming one of the nation’s top literary events. The festival will feature best-selling and award-winning authors, as well as local authors, a Children’s Village, announcement of the high school short story contest winners, exhibitors with literary wares and on-site sales of new and used books. Visitors of all ages also have the opportunity to participate in a variety of interactive, hands-on writing workshops.

      published: 01 Jun 2017
    • Gaithersburg Book Festival 2012 - Keith Donohue

      Keith Donohue is an American novelist, the author of the national bestseller The Stolen Child, Centuries of June, and Angels of Destruction. He also has written reviews for the Washington Post. Donohue has a Ph.D. in English with a specialization in modern Irish literature and wrote the introduction to the Complete Novels of Flann O'Brien. He lives in Maryland near Washington, DC.

      published: 24 Apr 2013
    • Angels of Destruction: A Novel by Keith Donohue · Audiobook preview

      PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAADJjmmOsM Angels of Destruction: A Novel Authored by Keith Donohue Narrated by Cassandra Campbell #keithdonohue #angelsofdestructionanovel — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION Keith Donohue’s first novel, The Stolen Child, was a national bestseller hailed as “captivating” (USA Today), “luminous and thrilling” (Washington Post), and “wonderful...So spare and unsentimental that it’s impossible not to be moved (Newsweek. His new nov...

      published: 12 Feb 2024
    • Centuries of June: A Novel by Keith Donohue · Audiobook preview

      PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAACEIzQjoM Centuries of June: A Novel Authored by Keith Donohue Narrated by Mark Bramhall #keithdonohue #centuriesofjuneanovel — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION Keith Donohue has been praised for his vivid imagination and for evoking “the otherworldly with humor and the ordinary with wonder” (Audrey Niffenegger). His first novel, The Stolen Child, was a national bestseller, and his second novel, Angels of Destruction, was haile...

      published: 22 Feb 2024
    • The Boy Who Drew Monsters: A Novel by Keith Donohue · Audiobook preview

      PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAAC0qmGqxM The Boy Who Drew Monsters: A Novel Authored by Keith Donohue Narrated by Bronson Pinchot #keithdonohue #theboywhodrewmonstersanovel — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION From the New York Times bestselling author of The Stolen Child comes a hypnotic literary horror novel about a young boy trapped inside his own world, whose drawings blur the lines between fantasy and reality. Ever since he nearly drowned in the ocean th...

      published: 13 Jan 2024
    • Keith Donohue at the Gaithersburg Book Festval 1 of 4

      Novelist Keith Donohue discusses his work; reads from latest novel, Centuries of June; and answers questions at the 3rd annual Gaithersburg Book Festival in Gaithersburg, Maryland on May 19, 2012.

      published: 24 May 2012
    developed with YouTube
    The Stolen Child | Keith Donohue | Talks at Google
    46:08

    The Stolen Child | Keith Donohue | Talks at Google

    • Order:
    • Duration: 46:08
    • Uploaded Date: 22 Jun 2007
    • views: 2565
    Author Keith Donohue discusses his book "The Stolen Child" as part of the Authors@Google series. Keith lives in Maryland, near Washington, D.C. He was a speechwriter at the National Endowment for the Arts and now works at another federal agency. "The Stolen Child" is his first novel. This event took place June 6, 2007 at the Google office in Ann Arbor, MI.
    https://wn.com/The_Stolen_Child_|_Keith_Donohue_|_Talks_At_Google
    Keith Donohue interview - The Stolen Child
    17:15

    Keith Donohue interview - The Stolen Child

    • Order:
    • Duration: 17:15
    • Uploaded Date: 19 Dec 2012
    • views: 799
    An interview with author Keith Donohue about his novel, The Stolen Child. Taped March 29, 2008 for Fast Forward: Contemporary Science Fiction, a monthly cable television series about SF, fantasy, & horror. More information and interviews are available at http://www.fast-forward.tv DG Productions
    https://wn.com/Keith_Donohue_Interview_The_Stolen_Child
    The Boy Who Drew Monsters by Keith Donohue (Book Trailer)
    0:31

    The Boy Who Drew Monsters by Keith Donohue (Book Trailer)

    • Order:
    • Duration: 0:31
    • Uploaded Date: 14 Oct 2014
    • views: 3459
    The Boy Who Drew Monsters by Keith Donohue is available now in bookstores everywhere: http://us.macmillan.com/books/9781250057150 Animation and sound by Rose Donohue, Bennington College. From the New York Times bestselling author of The Stolen Child comes a hypnotic literary horror novel about a young boy trapped inside his own world, whose drawings blur the lines between fantasy and reality. Ever since he nearly drowned in the ocean three years earlier, ten-year-old Jack Peter Keenan has been deathly afraid to venture outdoors. Refusing to leave his home in a small coastal town in Maine, Jack Peter spends his time drawing monsters. When those drawings take on a life of their own, no one is safe from the terror they inspire. His mother, Holly, begins to hear strange sounds in the night coming from the ocean, and she seeks answers from the local Catholic priest and his Japanese housekeeper, who fill her head with stories of shipwrecks and ghosts. His father, Tim, wanders the beach, frantically searching for a strange apparition running wild in the dunes. And the boy’s only friend, Nick, becomes helplessly entangled in the eerie power of the drawings. While those around Jack Peter are haunted by what they think they see, only he knows the truth behind the frightful occurrences as the outside world encroaches upon them all. In the tradition of The Turn of the Screw, Keith Donohue’s The Boy Who Drew Monsters is a mesmerizing tale of psychological terror and imagination run wild, a perfectly creepy read for a dark night.
    https://wn.com/The_Boy_Who_Drew_Monsters_By_Keith_Donohue_(Book_Trailer)
    Lecture 3b: the central nervous system (summer, 2017)
    55:23

    Lecture 3b: the central nervous system (summer, 2017)

    • Order:
    • Duration: 55:23
    • Uploaded Date: 22 May 2017
    • views: 352
    Welcome to another video lecture for my class on the psychological aspects of drug use and abuse. This one will focus on the central nervous system and will give you a brief overview of how drugs influence the various structures and functions found there.
    https://wn.com/Lecture_3B_The_Central_Nervous_System_(Summer,_2017)
    2017 Gaithersburg Book Festival Keith Donohue & Keith Fentonmiller
    46:55

    2017 Gaithersburg Book Festival Keith Donohue & Keith Fentonmiller

    • Order:
    • Duration: 46:55
    • Uploaded Date: 01 Jun 2017
    • views: 24
    The Gaithersburg Book Festival is an annual celebration of great books and great writing that is fast becoming one of the nation’s top literary events. The festival will feature best-selling and award-winning authors, as well as local authors, a Children’s Village, announcement of the high school short story contest winners, exhibitors with literary wares and on-site sales of new and used books. Visitors of all ages also have the opportunity to participate in a variety of interactive, hands-on writing workshops.
    https://wn.com/2017_Gaithersburg_Book_Festival_Keith_Donohue_Keith_Fentonmiller
    Gaithersburg Book Festival 2012 - Keith Donohue
    38:52

    Gaithersburg Book Festival 2012 - Keith Donohue

    • Order:
    • Duration: 38:52
    • Uploaded Date: 24 Apr 2013
    • views: 52
    Keith Donohue is an American novelist, the author of the national bestseller The Stolen Child, Centuries of June, and Angels of Destruction. He also has written reviews for the Washington Post. Donohue has a Ph.D. in English with a specialization in modern Irish literature and wrote the introduction to the Complete Novels of Flann O'Brien. He lives in Maryland near Washington, DC.
    https://wn.com/Gaithersburg_Book_Festival_2012_Keith_Donohue
    Angels of Destruction: A Novel by Keith Donohue · Audiobook preview
    10:56

    Angels of Destruction: A Novel by Keith Donohue · Audiobook preview

    • Order:
    • Duration: 10:56
    • Uploaded Date: 12 Feb 2024
    • views: 3
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAADJjmmOsM Angels of Destruction: A Novel Authored by Keith Donohue Narrated by Cassandra Campbell #keithdonohue #angelsofdestructionanovel — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION Keith Donohue’s first novel, The Stolen Child, was a national bestseller hailed as “captivating” (USA Today), “luminous and thrilling” (Washington Post), and “wonderful...So spare and unsentimental that it’s impossible not to be moved (Newsweek. His new novel, Angels of Destruction, opens on a winter’s night, when a young girl appears at the home of Mrs. Margaret Quinn, a widow who lives alone. A decade earlier, she had lost her only child, Erica, who fled with her high school sweetheart to join a radical student group known as the Angels of Destruction. Before Margaret answers the knock in the dark hours, she whispers a prayer and then makes her visitor welcome at the door. The girl, who claims to be nine years old and an orphan with no place to go, beguiles Margaret, offering some solace, some compensation, for the woman’s loss. Together, they hatch a plan to pass her off as her newly found granddaughter, Norah Quinn, and enlist Sean Fallon, a classmate and heartbroken boy, to guide her into the school and town. Their conspiracy is vulnerable not only to those children and neighbors intrigued by Norah’s mysterious and magical qualities but by a lone figure shadowing the girl who threatens to reveal the child’s true identity and her purpose in Margaret’s life. Who are these strangers really? And what is their connection to the past, the Angels, and the long-missing daughter? Angels of Destruction is an unforgettable story of hope and fear, heartache and redemption. The saga of the Quinn family unfolds against an America wracked by change. As it delicately dances on the line between the real and the imagined, this mesmerizing new novel confirms Keith Donohue’s standing as one of our most inspiring and inventive novelists. — ABOUT THE AUTHOR Keith Donohue's first novel, The Stolen Child, was a New York Times bestseller. For many years a ghostwriter, he now works at a federal governmental agency in Washington, D.C. He has published short stories and literary criticism, most recently an introduction to the collected works of Flann O’Brien. Donohue holds a Ph.D. in English from the Catholic University of America. — AUDIOBOOK DETAILS Purchase on Google Play Books ►► https://g.co/booksYT/AQAAAADJjmmOsM Language: English Publisher: Penguin Random House Audio Published on: March 3, 2009 ISBN: 9780739377208 Duration: 14 hr, 15 min Genres: Fiction / Family Life / General, Fiction / Literary, Fiction / Women
    https://wn.com/Angels_Of_Destruction_A_Novel_By_Keith_Donohue_·_Audiobook_Preview
    Centuries of June: A Novel by Keith Donohue · Audiobook preview
    10:45

    Centuries of June: A Novel by Keith Donohue · Audiobook preview

    • Order:
    • Duration: 10:45
    • Uploaded Date: 22 Feb 2024
    • views: 2
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAACEIzQjoM Centuries of June: A Novel Authored by Keith Donohue Narrated by Mark Bramhall #keithdonohue #centuriesofjuneanovel — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION Keith Donohue has been praised for his vivid imagination and for evoking “the otherworldly with humor and the ordinary with wonder” (Audrey Niffenegger). His first novel, The Stolen Child, was a national bestseller, and his second novel, Angels of Destruction, was hailed as “a magical tale of love and redemption that is as wonderfully written as it is captivating” (Pittsburgh Post-Gazette). Centuries of June is a bold departure, a work of dazzling breadth and technical virtuosity. Set in the bathroom of an old house just before dawn on a night in June, Centuries of June is a black comedy about a man who is attempting to tell the story of how he ended up on the floor with a hole in his head. But he keeps getting interrupted by a series of suspects—eight women lying in the bedroom just down the hall. Each woman tells a story drawn from five centuries of American myth and legend in a wild medley of styles and voices. Centuries of June is a romp through history, a madcap murder mystery, an existential ghost story, and a stunning tour de force at once ingenious, sexy, inspiring, and ultimately deeply moving. — ABOUT THE AUTHOR Keith Donohue is an American novelist, the author of the national bestseller The Stolen Child and Angels of Destruction. He also has written reviews for the Washington Post. Donohue has a Ph.D. in English with a specialization in modern Irish literature and wrote the introduction to the Complete Novels of Flann O’Brien. For a dozen years he worked for the National Endowment for the Arts and now works at another federal agency. He lives in Maryland near Washington, DC. — AUDIOBOOK DETAILS Purchase on Google Play Books ►► https://g.co/booksYT/AQAAAACEIzQjoM Language: English Publisher: Penguin Random House Audio Published on: May 31, 2011 ISBN: 9780307932624 Duration: 12 hr, 7 min Genres: Fiction / Historical / General, Fiction / Literary, Fiction / Visionary & Metaphysical
    https://wn.com/Centuries_Of_June_A_Novel_By_Keith_Donohue_·_Audiobook_Preview
    The Boy Who Drew Monsters: A Novel by Keith Donohue · Audiobook preview
    5:45

    The Boy Who Drew Monsters: A Novel by Keith Donohue · Audiobook preview

    • Order:
    • Duration: 5:45
    • Uploaded Date: 13 Jan 2024
    • views: 1
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAAC0qmGqxM The Boy Who Drew Monsters: A Novel Authored by Keith Donohue Narrated by Bronson Pinchot #keithdonohue #theboywhodrewmonstersanovel — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION From the New York Times bestselling author of The Stolen Child comes a hypnotic literary horror novel about a young boy trapped inside his own world, whose drawings blur the lines between fantasy and reality. Ever since he nearly drowned in the ocean three years earlier, ten-year-old Jack Peter Keenan has been deathly afraid to venture outdoors. Refusing to leave his home in a small coastal town in Maine, Jack Peter spends his time drawing monsters. When those drawings take on a life of their own, no one is safe from the terror they inspire. His mother, Holly, begins to hear strange sounds in the night coming from the ocean, and she seeks answers from the local Catholic priest and his Japanese housekeeper, who fill her head with stories of shipwrecks and ghosts. His father, Tim, wanders the beach, frantically searching for a strange apparition running wild in the dunes. And the boy's only friend, Nick, becomes helplessly entangled in the eerie power of the drawings. While those around Jack Peter are haunted by what they think they see, only he knows the truth behind the frightful occurrences as the outside world encroaches upon them all. In the tradition of The Turn of the Screw, Keith Donohue's The Boy Who Drew Monsters is a mesmerizing tale of psychological terror and imagination run wild, a perfectly creepy read for a dark night. — ABOUT THE AUTHOR Keith Donohue is an American novelist, the author of the national bestseller The Stolen Child and Angels of Destruction. He also has written reviews for the Washington Post. Donohue has a Ph.D. in English with a specialization in modern Irish literature and wrote the introduction to the Complete Novels of Flann O’Brien. For a dozen years he worked for the National Endowment for the Arts and now works at another federal agency. He lives in Maryland near Washington, DC. Bronson Pinchot, an Audie Award–winning narrator and Audible’s Narrator of the Year for 2010, received his education at Yale University. He restores Greek Revival buildings and appears in television, film, and on stage whenever the pilasters and entablatures overwhelm him. — AUDIOBOOK DETAILS Purchase on Google Play Books ►► https://g.co/booksYT/AQAAAAC0qmGqxM Language: English Publisher: Blackstone Audio Inc. Published on: October 7, 2014 ISBN: 9781481526197 Duration: 9 hr, 54 min Genres: Fiction / Ghost, Fiction / Horror, Fiction / Occult & Supernatural, Fiction / Psychological, Fiction / Thrillers / Supernatural
    https://wn.com/The_Boy_Who_Drew_Monsters_A_Novel_By_Keith_Donohue_·_Audiobook_Preview
    Keith Donohue at the Gaithersburg Book Festval 1 of 4
    4:07

    Keith Donohue at the Gaithersburg Book Festval 1 of 4

    • Order:
    • Duration: 4:07
    • Uploaded Date: 24 May 2012
    • views: 25
    Novelist Keith Donohue discusses his work; reads from latest novel, Centuries of June; and answers questions at the 3rd annual Gaithersburg Book Festival in Gaithersburg, Maryland on May 19, 2012.
    https://wn.com/Keith_Donohue_At_The_Gaithersburg_Book_Festval_1_Of_4
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Stolen Child | Keith Donohue | Talks at Google
      46:08
      The Stolen Child | Keith Donohue | Talks at Googleremove from playlist
    • Keith Donohue interview - The Stolen Child
      17:15
      Keith Donohue interview - The Stolen Childremove from playlist
    • The Boy Who Drew Monsters by Keith Donohue (Book Trailer)
      0:31
      The Boy Who Drew Monsters by Keith Donohue (Book Trailer)remove from playlist
    • Lecture 3b: the central nervous system (summer, 2017)
      55:23
      Lecture 3b: the central nervous system (summer, 2017)remove from playlist
    • 2017 Gaithersburg Book Festival Keith Donohue & Keith Fentonmiller
      46:55
      2017 Gaithersburg Book Festival Keith Donohue & Keith Fentonmillerremove from playlist
    • Gaithersburg Book Festival 2012 - Keith Donohue
      38:52
      Gaithersburg Book Festival 2012 - Keith Donohueremove from playlist
    • Angels of Destruction: A Novel by Keith Donohue · Audiobook preview
      10:56
      Angels of Destruction: A Novel by Keith Donohue · Audiobook previewremove from playlist
    • Centuries of June: A Novel by Keith Donohue · Audiobook preview
      10:45
      Centuries of June: A Novel by Keith Donohue · Audiobook previewremove from playlist
    • The Boy Who Drew Monsters: A Novel by Keith Donohue · Audiobook preview
      5:45
      The Boy Who Drew Monsters: A Novel by Keith Donohue · Audiobook previewremove from playlist
    • Keith Donohue at the Gaithersburg Book Festval 1 of 4
      4:07
      Keith Donohue at the Gaithersburg Book Festval 1 of 4remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    The Stolen Child | Keith Donohue | Talks at Google

    Author Keith Donohue discusses his book "The Stolen Child" as part of the Authors@Google series. Keith lives in Maryland, near Washington, D.C. He was a speechwriter at the National Endowment for the Arts and now works at another federal agency. "The Stolen Child" is his first novel. This event took place June 6, 2007 at the Google office in Ann Arbor, MI.
    46:08
    The Stolen Child | Keith Donohue | Talks at Google
    Author Keith Donohue discusses his book "The Stolen Child" as part of the Authors@Google s...
    published: 22 Jun 2007
    Play in Full Screen
    17:15
    Keith Donohue interview - The Stolen Child
    An interview with author Keith Donohue about his novel, The Stolen Child. Taped March 29,...
    published: 19 Dec 2012
    Play in Full Screen
    0:31
    The Boy Who Drew Monsters by Keith Donohue (Book Trailer)
    The Boy Who Drew Monsters by Keith Donohue is available now in bookstores everywhere: http...
    published: 14 Oct 2014
    Play in Full Screen
    55:23
    Lecture 3b: the central nervous system (summer, 2017)
    Welcome to another video lecture for my class on the psychological aspects of drug use and...
    published: 22 May 2017
    Play in Full Screen
    46:55
    2017 Gaithersburg Book Festival Keith Donohue & Keith Fentonmiller
    The Gaithersburg Book Festival is an annual celebration of great books and great writing t...
    published: 01 Jun 2017
    Play in Full Screen
    38:52
    Gaithersburg Book Festival 2012 - Keith Donohue
    Keith Donohue is an American novelist, the author of the national bestseller The Stolen Ch...
    published: 24 Apr 2013
    Play in Full Screen
    10:56
    Angels of Destruction: A Novel by Keith Donohue · Audiobook preview
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAADJjmmOsM Angels of Destructio...
    published: 12 Feb 2024
    Play in Full Screen
    10:45
    Centuries of June: A Novel by Keith Donohue · Audiobook preview
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAACEIzQjoM Centuries of June: A...
    published: 22 Feb 2024
    Play in Full Screen
    5:45
    The Boy Who Drew Monsters: A Novel by Keith Donohue · Audiobook preview
    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAAC0qmGqxM The Boy Who Drew Mon...
    published: 13 Jan 2024
    Play in Full Screen
    4:07
    Keith Donohue at the Gaithersburg Book Festval 1 of 4
    Novelist Keith Donohue discusses his work; reads from latest novel, Centuries of June; and...
    published: 24 May 2012
    Play in Full Screen

    Keith Donohue (novelist)

    Keith Donohue (born 1959) is an American novelist. He is the author of four novels: "The Boy Who Drew Monsters" (2014), "Centuries of June" (2011), "Angels of Destruction" (2009), and "The Stolen Child" (2006). His acclaimed 2006 novel The Stolen Child, about a changeling, was inspired by the Yeats poem of the same name.

    Background

    Born and raised in Pittsburgh, Pennsylvania, he earned his B.A. and M.A. from Duquesne University and his Ph.D. in English from The Catholic University of America.

    Until 1998 he worked at the National Endowment for the Arts and wrote speeches for chairmen John Frohnmayer and Jane Alexander, and is currently director of communications for the National Historical Publications and Records Commission, the grant-making arm of the U. S. National Archives in Washington, DC.

    He has also written articles for The New York Times, Washington Post, Atlanta Journal-Constitution, and other newspapers.

    Works

  • Centuries of June. New York: Crown Publishers. 2011. ISBN 0-307-45028-7. 
  • '); } 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)); } }); }); }); // -->
    ×