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

William Gager

William Gager (1555–1622) was an English jurist, now known for his Latin dramas.

He was educated at Westminster School and Christ Church, Oxford.

His works were produced at the University of Oxford, from 1582 to 1592. He was considered one of the major dramatists of the late sixteenth century. Apart from one comedy, Rivales, which has not survived, his works were all Latin tragedies. They include Meleager (1582), Dido (1583) and Ulysses Redux (1592). He stayed closer to the model of Senecan tragedy than other contemporaries, and adapted Seneca's Hippolytus in 1592, with the addition of scenes.

He was also a neo-Latin poet.

Notes

External links

  • Review of William Gager: The Complete Works
  • Hypertext edition of The Complete Works
  • Podcasts:

    Famous quotes by William Gager:

    "I'm sorry if they're trying and it isn't reaping them any benefits."
    "The noise making isn't malicious. It's just that students are nocturnal people. If they remember they're living in a place where people go to bed at 11:00 when they're just getting started out that would be a great step toward resolving the problem."
    • WIlliam GAGER an early penname of the real or true Shakespeare (MARLOWE) ? A THESIS

      A substantiated 'working Hypothesis' None of the 'N A M E S' of the 2 allegedly greatest (coeval) poet genius' of their age: MA R L O W E' and 'S H A K E S P E A R E' were printed on their(?) works, before they had reached the 30iest year of life! ____________ W H Y T H E W O R K S (of BOTH ?) R E M A I N E D UN P R I N T E D for 3 decades ? The Degree of Concordances (s.30 Arguments) between William GAGER and Christopher MARLOWE (here seen as the ''only true'' SHAKESPEARE is massive and hardly purely coincidental: 1 Birth date 2 Canterbury Kings school 3 Oxford Study 4 Study of Law (DCL) 5 Reputation as Dramatist 6 Ranking 7 Unconditional Question 8 'D I D O' 9 'H E R O &...

      published: 01 Sep 2021
    • George Peele, His Only Surviving Letter, and its Connection to the Earl of Oxford and Shakespeare.

      Since giving his talk in May of this year, Robert has some new information he would like to share. Please follow this link AFTER you have watched his video. https://www.youtube.com/watch?v=SLRB71vQ6vU We are excited to welcome Robert Prechter to the Shakespeare Authorship Roundtable. Mr. Prechter is known for his work in financial prediction using the Elliott Wave Theory, but in this video, he will talk about George Peele, one of the University Wits, and possibly a literary persona for the Earl of Oxford. His analysis of the only surviving letter written by George Peele is fascinating and well thought out. Robert has recently completed a 24 volume digital book called "Oxford’s Voices" which proposes that many publications from the era were actually written by Edward de Vere in his you...

      published: 15 Jun 2022
    • Saints Talk: Staging Revenge - Transforming the Odyssey in Early Modern by Dr Emma Buckley

      In this lecture Dr Buckley will explore the world of academic drama via the Ulysses Redux (or ‘Ulysses Returning’) by William Gager. This play marks a fascinating turning-point in English literary history, as a close reworking of Homer’s Odyssey, and as a document which offers fascinating insights into the intersection of education, court culture and state power in early modern England.

      published: 15 Dec 2021
    • will.i.am - T.H.E. (The Hardest Ever) ft. Mick Jagger, Jennifer Lopez

      Sign up for Will.i.am news here: http://smarturl.it/will.i.am.News Music video by will.i.am performing T.H.E. (The Hardest Ever) feat. Mick Jagger & Jennifer Lopez. Buy now! http://smarturl.it/williamTHE © 2011 Interscope

      published: 12 Dec 2011
    • Carry On by Robert William Service narrated by Kemiesha Gager

      Enjoy!

      published: 28 Oct 2017
    • 242: This Is... 1583: A Year in Theatre

      This Is... 1583 is a pilot for an occasional series looking at theatre history on year at a time, with a focus on plays premiering or in rep at the time, and significant events in the realm. With Helen Good, Stephen Longstaffe, Daniel Yabut and host Robert Crighton. If you'd like to hear more of this kind of thing, get in touch, suggest a year, suggest topics... though it might be a while before you hear more of this kind of thing. The plays covered in this episode, which have been explored on our YouTube channel, are... Fedele and Fortunio by Anthony Munday - https://youtube.com/playlist?list=PLflmEwgdfKoJO9HEXXT-czQMP_RSzb4a7 Campaspe by John Lyly - https://youtube.com/playlist?list=PLflmEwgdfKoJ6Gad4JC0QeGMBXzf33XfV Another confirmed play from that year includes a Latin play of D...

      published: 03 May 2024
    • 3/14/24, William Orem/Virtual Thursdays Dire Literary Series, plus Q and A with Timothy Gager

      William Orem writes about spiritual quest and philosophical questions. His stories, poems and short plays have been published in over 100 literary journals, including The Princeton Arts Review, Alaska Quarterly Review, Sou'wester and The New Formalist. His first story collection, Zombi, You My Love, won the GLCA New Writers Award, previously given to Louise Erdrich, Sherman Alexie, Richard Ford and Alice Munro. His second story collection, Across the River, won the Clay Reynolds Novella Prize. His first novel, Killer of Crying Deer, won the Eric Hoffer Award and has been optioned for film. His second novel, Miss Lucy, won the Gival Press Novel Award. Kirkus listed it as one of the Best Books of the Year. His first collection of poems, Our Purpose in Speaking, won the Wheelbarrow Boo...

      published: 15 Mar 2024
    • Famous People We've Lost in 1880 - Obituary in 1880

      Famous People We've Lost in 1880 - Obituary in 1880 Copyright Disclaimer: No copyright infringement is intended. This video is for educational purposes only. @obituarypedia

      published: 22 Aug 2024
    • Was Christopher Marlowe Shakespeare's servant?

      New evidence suggests that William Shakespeare was the patron of Christopher Marlowe.

      published: 14 Jun 2021
    • George Harrison, Bruce Springsteen, Mick Jagger & more - "I Saw Her Standing There" | 1988 Induction

      George Harrison, Bruce Springsteen, Mick Jagger, Bob Dylan and others perform "I Saw Her Standing There" at the 1988 Hall of Fame Inductions. http://rockhall.com/ Visit us! http://rockhall.com/ Subscribe to RockHall : http://www.youtube.com/subscription_center?add_user=rockhall Facebook: http://www.facebook.com/rockandrollhalloffame Twitter: http://twitter.com/rockhall Check out all the inductees: http://rockhall.com/inductees/ Upcoming events: http://rockhall.com/events/

      published: 10 Apr 2012
    WIlliam GAGER  an early  penname of the  real or true Shakespeare (MARLOWE) ? A THESIS
    40:23

    WIlliam GAGER an early penname of the real or true Shakespeare (MARLOWE) ? A THESIS

    • Order:
    • Duration: 40:23
    • Uploaded Date: 01 Sep 2021
    • views: 409
    A substantiated 'working Hypothesis' None of the 'N A M E S' of the 2 allegedly greatest (coeval) poet genius' of their age: MA R L O W E' and 'S H A K E S P E A R E' were printed on their(?) works, before they had reached the 30iest year of life! ____________ W H Y T H E W O R K S (of BOTH ?) R E M A I N E D UN P R I N T E D for 3 decades ? The Degree of Concordances (s.30 Arguments) between William GAGER and Christopher MARLOWE (here seen as the ''only true'' SHAKESPEARE is massive and hardly purely coincidental: 1 Birth date 2 Canterbury Kings school 3 Oxford Study 4 Study of Law (DCL) 5 Reputation as Dramatist 6 Ranking 7 Unconditional Question 8 'D I D O' 9 'H E R O & LE A N D E R 10 GAGER / Chapman 11 MELEAGER (Boas) 12 MELEAGER (Dido&Tamburlaine) 13 MELEAGER (Essex) 14 LUCRECE (Shakespeare) 15 ULYSSES Mary Sidney 16 Handwriting 17 BRETON / Gager 18 Handwriting (Raynold) 19 Oedipus (Basse) 20 Oedipus (Wither) 21 Abrupt End of Dramatist 22 OXFORD's other POETs 23 POLIMANTEIA 24 T. BASTARD 25 R. BARNFIELD 26 CHRESTOLEROS(1) 27 CHRESTOLEROS(2) 28 PEELE /GAGER 29 King EDWARD I play 30 etc. etc.
    https://wn.com/William_Gager_An_Early_Penname_Of_The_Real_Or_True_Shakespeare_(Marlowe)_A_Thesis
    George Peele, His Only Surviving Letter, and its Connection to the Earl of Oxford and Shakespeare.
    47:15

    George Peele, His Only Surviving Letter, and its Connection to the Earl of Oxford and Shakespeare.

    • Order:
    • Duration: 47:15
    • Uploaded Date: 15 Jun 2022
    • views: 9876
    Since giving his talk in May of this year, Robert has some new information he would like to share. Please follow this link AFTER you have watched his video. https://www.youtube.com/watch?v=SLRB71vQ6vU We are excited to welcome Robert Prechter to the Shakespeare Authorship Roundtable. Mr. Prechter is known for his work in financial prediction using the Elliott Wave Theory, but in this video, he will talk about George Peele, one of the University Wits, and possibly a literary persona for the Earl of Oxford. His analysis of the only surviving letter written by George Peele is fascinating and well thought out. Robert has recently completed a 24 volume digital book called "Oxford’s Voices" which proposes that many publications from the era were actually written by Edward de Vere in his youth. Access to the online book is available for purchase here: https://oxfordsvoices.com/
    https://wn.com/George_Peele,_His_Only_Surviving_Letter,_And_Its_Connection_To_The_Earl_Of_Oxford_And_Shakespeare.
    Saints Talk: Staging Revenge - Transforming the Odyssey in Early Modern by Dr Emma Buckley
    56:03

    Saints Talk: Staging Revenge - Transforming the Odyssey in Early Modern by Dr Emma Buckley

    • Order:
    • Duration: 56:03
    • Uploaded Date: 15 Dec 2021
    • views: 114
    In this lecture Dr Buckley will explore the world of academic drama via the Ulysses Redux (or ‘Ulysses Returning’) by William Gager. This play marks a fascinating turning-point in English literary history, as a close reworking of Homer’s Odyssey, and as a document which offers fascinating insights into the intersection of education, court culture and state power in early modern England.
    https://wn.com/Saints_Talk_Staging_Revenge_Transforming_The_Odyssey_In_Early_Modern_By_Dr_Emma_Buckley
    will.i.am - T.H.E. (The Hardest Ever) ft. Mick Jagger, Jennifer Lopez
    4:44

    will.i.am - T.H.E. (The Hardest Ever) ft. Mick Jagger, Jennifer Lopez

    • Order:
    • Duration: 4:44
    • Uploaded Date: 12 Dec 2011
    • views: 66801859
    Sign up for Will.i.am news here: http://smarturl.it/will.i.am.News Music video by will.i.am performing T.H.E. (The Hardest Ever) feat. Mick Jagger & Jennifer Lopez. Buy now! http://smarturl.it/williamTHE © 2011 Interscope
    https://wn.com/Will.I.Am_T.H.E._(The_Hardest_Ever)_Ft._Mick_Jagger,_Jennifer_Lopez
    Carry On by Robert William Service narrated by Kemiesha Gager
    2:46

    Carry On by Robert William Service narrated by Kemiesha Gager

    • Order:
    • Duration: 2:46
    • Uploaded Date: 28 Oct 2017
    • views: 679
    Enjoy!
    https://wn.com/Carry_On_By_Robert_William_Service_Narrated_By_Kemiesha_Gager
    242: This Is... 1583: A Year in Theatre
    49:02

    242: This Is... 1583: A Year in Theatre

    • Order:
    • Duration: 49:02
    • Uploaded Date: 03 May 2024
    • views: 2
    This Is... 1583 is a pilot for an occasional series looking at theatre history on year at a time, with a focus on plays premiering or in rep at the time, and significant events in the realm. With Helen Good, Stephen Longstaffe, Daniel Yabut and host Robert Crighton. If you'd like to hear more of this kind of thing, get in touch, suggest a year, suggest topics... though it might be a while before you hear more of this kind of thing. The plays covered in this episode, which have been explored on our YouTube channel, are... Fedele and Fortunio by Anthony Munday - https://youtube.com/playlist?list=PLflmEwgdfKoJO9HEXXT-czQMP_RSzb4a7 Campaspe by John Lyly - https://youtube.com/playlist?list=PLflmEwgdfKoJ6Gad4JC0QeGMBXzf33XfV Another confirmed play from that year includes a Latin play of Dido by William Gager Also discussed are the Queen's Men, their wider repertoire can be found on this expansive playlist - https://youtube.com/playlist?list=PLflmEwgdfKoKW-TB_TKM1Frf3bGqzvd_n The Beyond Shakespeare Podcast is supported by its patrons – become a patron and you get to choose the plays we work on next. Go to www.patreon.com/beyondshakespeare (https://patreon.com/beyondshakespeare) - or if you'd like to buy us a coffee at ko-fi https://ko-fi.com/beyondshakespeare - or if you want to give us some feedback, email us at admin@beyondshakespeare.org, follow us on Twitter, Facebook & Instagram @BeyondShakes or go to our website: https://beyondshakespeare.org (https://beyondshakespeare.org/) You can also subscribe to our YouTube channel where (most of) our exploring sessions live - https://www.youtube.com/channel/UCLa4pXxGZFwTX4QSaB5XNdQ The Beyond Shakespeare Podcast is hosted and produced by Robert Crighton
    https://wn.com/242_This_Is..._1583_A_Year_In_Theatre
    3/14/24, William Orem/Virtual Thursdays Dire Literary Series, plus Q and A with Timothy Gager
    33:37

    3/14/24, William Orem/Virtual Thursdays Dire Literary Series, plus Q and A with Timothy Gager

    • Order:
    • Duration: 33:37
    • Uploaded Date: 15 Mar 2024
    • views: 26
    William Orem writes about spiritual quest and philosophical questions. His stories, poems and short plays have been published in over 100 literary journals, including The Princeton Arts Review, Alaska Quarterly Review, Sou'wester and The New Formalist. His first story collection, Zombi, You My Love, won the GLCA New Writers Award, previously given to Louise Erdrich, Sherman Alexie, Richard Ford and Alice Munro. His second story collection, Across the River, won the Clay Reynolds Novella Prize. His first novel, Killer of Crying Deer, won the Eric Hoffer Award and has been optioned for film. His second novel, Miss Lucy, won the Gival Press Novel Award. Kirkus listed it as one of the Best Books of the Year. His first collection of poems, Our Purpose in Speaking, won the Wheelbarrow Books Poetry Prize and the Rubery International Book Award in poetry. His first full-length play, The Seabirds, won the Maxim Mazumdar New Play Competition and was staged at Alleyway Theater in Buffalo. It has subsequently been performed in Boston, Lafayette (LA), and, as a staged reading, at Urban Stages in Manhattan. His shorter plays have been performed in Miami, Ft. Lauderdale, Louisville, San Diego, Charlottesville, Durango, Salem, and eight times in Boston. They have won both the Critics' Choice and Audience Favorite Awards at TheaterFest Colorado, and have three times been nominated for the Heideman Award at Actors Theater. Overseas, they have been seen in Canberra (Australia) and Manipal (Dubai). He has been five times nominated for the Pushcart Prize: once in poetry, twice in fiction, once in creative nonfiction, and once by general invitation of the committee. Currently he is a Senior Writer-In-Residence at Emerson College. ================================ Number One Bestselling Author, Timothy Gager has published 18 books of fiction and poetry, which includes his latest novel, Joe the Salamander. He hosted the successful Dire Literary Series in Cambridge, MA from 2001 to 2018, and started a weekly virtual series in 2020.
    https://wn.com/3_14_24,_William_Orem_Virtual_Thursdays_Dire_Literary_Series,_Plus_Q_And_A_With_Timothy_Gager
    Famous People We've Lost in 1880 - Obituary in 1880
    24:25

    Famous People We've Lost in 1880 - Obituary in 1880

    • Order:
    • Duration: 24:25
    • Uploaded Date: 22 Aug 2024
    • views: 2425
    Famous People We've Lost in 1880 - Obituary in 1880 Copyright Disclaimer: No copyright infringement is intended. This video is for educational purposes only. @obituarypedia
    https://wn.com/Famous_People_We've_Lost_In_1880_Obituary_In_1880
    Was Christopher Marlowe Shakespeare's servant?
    49:57

    Was Christopher Marlowe Shakespeare's servant?

    • Order:
    • Duration: 49:57
    • Uploaded Date: 14 Jun 2021
    • views: 26719
    New evidence suggests that William Shakespeare was the patron of Christopher Marlowe.
    https://wn.com/Was_Christopher_Marlowe_Shakespeare's_Servant
    George Harrison, Bruce Springsteen, Mick Jagger & more - "I Saw Her Standing There" | 1988 Induction
    2:56

    George Harrison, Bruce Springsteen, Mick Jagger & more - "I Saw Her Standing There" | 1988 Induction

    • Order:
    • Duration: 2:56
    • Uploaded Date: 10 Apr 2012
    • views: 20776539
    George Harrison, Bruce Springsteen, Mick Jagger, Bob Dylan and others perform "I Saw Her Standing There" at the 1988 Hall of Fame Inductions. http://rockhall.com/ Visit us! http://rockhall.com/ Subscribe to RockHall : http://www.youtube.com/subscription_center?add_user=rockhall Facebook: http://www.facebook.com/rockandrollhalloffame Twitter: http://twitter.com/rockhall Check out all the inductees: http://rockhall.com/inductees/ Upcoming events: http://rockhall.com/events/
    https://wn.com/George_Harrison,_Bruce_Springsteen,_Mick_Jagger_More_I_Saw_Her_Standing_There_|_1988_Induction
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    WIlliam GAGER an early penname of the real or true Shakespeare (MARLOWE) ? A THESIS

    A substantiated 'working Hypothesis' None of the 'N A M E S' of the 2 allegedly greatest (coeval) poet genius' of their age: MA R L O W E' and 'S H A K E S P E A R E' were printed on their(?) works, before they had reached the 30iest year of life! ____________ W H Y T H E W O R K S (of BOTH ?) R E M A I N E D UN P R I N T E D for 3 decades ? The Degree of Concordances (s.30 Arguments) between William GAGER and Christopher MARLOWE (here seen as the ''only true'' SHAKESPEARE is massive and hardly purely coincidental: 1 Birth date 2 Canterbury Kings school 3 Oxford Study 4 Study of Law (DCL) 5 Reputation as Dramatist 6 Ranking 7 Unconditional Question 8 'D I D O' 9 'H E R O & LE A N D E R 10 GAGER / Chapman 11 MELEAGER (Boas) 12 MELEAGER (Dido&Tamburlaine) 13 MELEAGER (Essex) 14 LUCRECE (Shakespeare) 15 ULYSSES Mary Sidney 16 Handwriting 17 BRETON / Gager 18 Handwriting (Raynold) 19 Oedipus (Basse) 20 Oedipus (Wither) 21 Abrupt End of Dramatist 22 OXFORD's other POETs 23 POLIMANTEIA 24 T. BASTARD 25 R. BARNFIELD 26 CHRESTOLEROS(1) 27 CHRESTOLEROS(2) 28 PEELE /GAGER 29 King EDWARD I play 30 etc. etc.
    40:23
    WIlliam GAGER an early penname of the real or true Shakespeare (MARLOWE) ? A THESIS
    A substantiated 'working Hypothesis' None of the 'N A M E S' of the 2 allegedly greate...
    published: 01 Sep 2021
    Play in Full Screen
    47:15
    George Peele, His Only Surviving Letter, and its Connection to the Earl of Oxford and Shakespeare.
    Since giving his talk in May of this year, Robert has some new information he would like t...
    published: 15 Jun 2022
    Play in Full Screen
    56:03
    Saints Talk: Staging Revenge - Transforming the Odyssey in Early Modern by Dr Emma Buckley
    In this lecture Dr Buckley will explore the world of academic drama via the Ulysses Redux ...
    published: 15 Dec 2021
    Play in Full Screen
    4:44
    will.i.am - T.H.E. (The Hardest Ever) ft. Mick Jagger, Jennifer Lopez
    Sign up for Will.i.am news here: http://smarturl.it/will.i.am.News Music video by will.i....
    published: 12 Dec 2011
    Play in Full Screen
    2:46
    Carry On by Robert William Service narrated by Kemiesha Gager
    Enjoy!
    published: 28 Oct 2017
    Play in Full Screen
    49:02
    242: This Is... 1583: A Year in Theatre
    This Is... 1583 is a pilot for an occasional series looking at theatre history on year at ...
    published: 03 May 2024
    Play in Full Screen
    33:37
    3/14/24, William Orem/Virtual Thursdays Dire Literary Series, plus Q and A with Timothy Gager
    William Orem writes about spiritual quest and philosophical questions. His stories, poems ...
    published: 15 Mar 2024
    Play in Full Screen
    24:25
    Famous People We've Lost in 1880 - Obituary in 1880
    Famous People We've Lost in 1880 - Obituary in 1880 Copyright Disclaimer: No copyright ...
    published: 22 Aug 2024
    Play in Full Screen
    49:57
    Was Christopher Marlowe Shakespeare's servant?
    New evidence suggests that William Shakespeare was the patron of Christopher Marlowe.
    published: 14 Jun 2021
    Play in Full Screen
    2:56
    George Harrison, Bruce Springsteen, Mick Jagger & more - "I Saw Her Standing There" | 1988 Induction
    George Harrison, Bruce Springsteen, Mick Jagger, Bob Dylan and others perform "I Saw Her S...
    published: 10 Apr 2012
    Play in Full Screen

    William Gager

    William Gager (1555–1622) was an English jurist, now known for his Latin dramas.

    He was educated at Westminster School and Christ Church, Oxford.

    His works were produced at the University of Oxford, from 1582 to 1592. He was considered one of the major dramatists of the late sixteenth century. Apart from one comedy, Rivales, which has not survived, his works were all Latin tragedies. They include Meleager (1582), Dido (1583) and Ulysses Redux (1592). He stayed closer to the model of Senecan tragedy than other contemporaries, and adapted Seneca's Hippolytus in 1592, with the addition of scenes.

    He was also a neo-Latin poet.

    Notes

    External links

  • Review of William Gager: The Complete Works
  • Hypertext edition of The Complete Works
  • '); } 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)); } }); }); }); // -->
    ×