- published: 17 May 2019
- views: 16163
'+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; })); }); -->
Herman Northrop Frye, CC FRSC (July 14, 1912 – January 23, 1991) was a Canadian literary critic and literary theorist, considered one of the most influential of the 20th century.
Frye gained international fame with his first book, Fearful Symmetry (1947), which led to the reinterpretation of the poetry of William Blake. His lasting reputation rests principally on the theory of literary criticism that he developed in Anatomy of Criticism (1957), one of the most important works of literary theory published in the twentieth century. The American critic Harold Bloom commented at the time of its publication that Anatomy established Frye as "the foremost living student of Western literature." Frye's contributions to cultural and social criticism spanned a long career during which he earned widespread recognition and received many honours.
Born in Sherbrooke, Quebec but raised in Moncton, New Brunswick, Frye was the third child of Herman Edward Frye and of Catherine Maud Howard. His much older brother, Howard, died in World War I; he also had a sister, Vera. Frye went to Toronto to compete in a national typing contest in 1929. He studied for his undergraduate degree at Victoria College in the University of Toronto, where he edited the college literary journal, Acta Victoriana. He then studied theology at Emmanuel College (like Victoria College, a constituent part of the University of Toronto). After a brief stint as a student minister in Saskatchewan, he was ordained to the ministry of the United Church of Canada. He then studied at Merton College, Oxford, before returning to Victoria College, where he spent the remainder of his professional career.
Lecture 1 - Introduction: An Approach: 00:00 Lecture 2 - The Shape of the Bible: 00:48:59 Lecture 3 - Images of Paradise: Trees and Water: 01:36:27 Lecture 4 - Parody and Manifest Demonic: 02:23:17 Lecture 5 - Sexual Imagery: 03:08:22 Lecture 6 - Pastoral and Agricultural Imagery: 03:57:06 Lecture 7 - The World of Angels: 04:45:19 Lecture 8 - The Hero from Across the Sea: 05:36:58 Lecture 9 - The Double Mirror: Exodus and the Gospel: 06:27:26 Lecture 10 - The Metaphor of Kingship: 07:13:49 Lecture 11 - King, Priest and Prophet: 08:01:22 Lecture 12 - The Question of Primogeniture: 08:47:54 Lecture 13 - Revelation: After the Ego Disappears: 09:37:49 Lecture 14-25: https://youtu.be/v4Swyk_ZRy8 The Great Code: The Bible and Literature by Northrop Frye: https://amzn.to/2HlIlj3 The New Testam...
Canadian literary critic Northrop Frye offers the only alternative to the New Critics' pattern of the 'close reading' of a text in the twentieth century that does not either deny a common humanity or mount a war on the word. Frye's 1953 masterpiece Anatomy of Criticism actually suggests four legitimate means of reading literature, but it is the archetypal criticism for which he is most famous. Following Carl Jung, Frye offers a mode of reading that understands human experience in universal terms, seeing primal, general, and universal themes in the great works of literature, and the 'great code' of art in the Bible. Dr. Jordan Peterson has to some degree repopularised Frye's approach with his psychological readings of literature and the idea of a 'collective unconscious' common to all hu...
This essay gives an introduction to archetypes and archetypal criticism. Feel free to mention your suggestions and doubts ◘ YouTube channel - http://www.youtube.com/c/IreneFrancisEnglishLiterature Happy Learning ♥
Canada's great literary critic analyses how Christianity transmuted the best of paganism. To mythology. fragments already absorbed, albeit transformed, in the Old Testament, Christianity added the ethical and transcendent weight of Judaism. The messianic light of the prophets, even the sometimes dazzling but refracted flashes of ancient mythology, came into focus and literal flesh in the person of Jesus Christ. The new faith, combining the best of then existing cultures, became the world's largest religion. In large part because Christianity took over the discipline of Judaism, as well as its Scriptures, the new faith even conquered the Roman Empire in 3 centuries. In these ways, paganism and the great ancient empires prepared the world and paved the Way of Christianity
Video made by Dheepthi (Batch 2019 - 21)
In the 1962 Massey Lectures, Northrop Frye writes: "What good is the study of literature? Does it help us to think more clearly or feel more sensitively or live a better life than we would without it? What is the function of the teacher and scholar or the person who calls himself, as I do, a literary critic? What difference does the study of literature make in our social or political or religious attitude? "In my early days, I thought very little about such questions, not because I had any of the answers but because I assumed that anybody who asked them was naïve. I think now that the simplest questions are not only the hardest to answer but the most important to ask..." Part 1 – THE MOTIVE FOR METAPHOR Part 2 – THE SINGING SCHOOL Part 3 – GIANTS IN TIME Part 4 – THE KEYS TO DREAMLAND ...
Click to Join our Premium Channel - https://rigi.club/jcp/N4HQRAxvRc Click to Join our Telegram Channel - https://t.me/englishstudypoint236 Hi Friends Welcome to English Study Point . In this video we are going to talk about Northrop Frye Archetypes of Literature. Gears in Use With me -: Best Smartphone (Realme 6i) - https://amzn.to/3AlYdKZ Cheapest & the Best Mic (BOYA BYM1 Mic) - https://amzn.to/3lrWjnI Best Laptop with great specifications - https://amzn.to/2YAQ1cB realme Buds Wireless 2 Neo (Black) Earphones with Type-C Fast Charge, Bass Boost+ & Magnetic Instant Connection - https://amzn.to/3uVrVoV Book Shelve -: NTA UGC NET/JRF/SET Teaching & Research Aptitude Paper 1 2021 (Arihant Publications) - https://amzn.to/2YANSO4 NTA UGC NET English Paper 2 (Arihant Publications) - ht...
Between 1980 and 1981 Prof. Northrop Frye held 25 lectures under the title ‘The Bible and Literature’. Each of these lectures was recorded and for each of them a transcript was provided. Later excerpts of these 25 lectures (each 50 minutes long) were made into 30 programs (each about 30 minutes). That means in some cases 1 lecture supplied material for 2 programs or the other way around https://heritage.utoronto.ca/frye/full-lectures
In the 1962 Massey Lectures, Northrop Frye writes: "What good is the study of literature? Does it help us to think more clearly or feel more sensitively or live a better life than we would without it? What is the function of the teacher and scholar or the person who calls himself, as I do, a literary critic? What difference does the study of literature make in our social or political or religious attitude? "In my early days, I thought very little about such questions, not because I had any of the answers but because I assumed that anybody who asked them was naïve. I think now that the simplest questions are not only the hardest to answer but the most important to ask..." Part 1 – THE MOTIVE FOR METAPHOR Part 2 – THE SINGING SCHOOL Part 3 – GIANTS IN TIME Part 4 – THE KEYS TO DREAMLAN...
FULL PROGRAM (PART2): http://www.cbc.ca/player/play/2250408862
UNIT-10, TOPIC- ARCHETYPE OF LITERATURE BY NORTHROP FRYE ( EXPLAIN IN TAMIL) ESHWAR TRB ENGLISH ACADEMY *Pg trb English * uni-10 * Archetype of literature by Northrop Frye explain in Tamil *Archetype of literature explain in Tamil * Eshwar trb english academy Archetype of literature explain in Tamil *Archetype of literature in Tamil.
"A imaginação educada", de Northrop Frye, é uma coletânea de seis palestras sobre o valor da literatura e a importância da imaginação na sociedade. Uma obra incrível, que explica de maneira simples conceitos complexos e necessários. ✨Links da Amazon Ajude o canal adquirindo livros pelo meus links da Amazon. A imaginação educada, de Northrop Frye https://amzn.to/3BeVX9n Reflexões cristãs, de C.S Lewis https://amzn.to/3Dhm6VE ✨ Siga o Penúltimo Capítulo https://www.instagram.com/penultimocapitulo #NorthropFrye #Literatura #Imaginação
Lecture 1 - Introduction: An Approach: 00:00 Lecture 2 - The Shape of the Bible: 00:48:59 Lecture 3 - Images of Paradise: Trees and Water: 01:36:27 Lecture 4 - Parody and Manifest Demonic: 02:23:17 Lecture 5 - Sexual Imagery: 03:08:22 Lecture 6 - Pastoral and Agricultural Imagery: 03:57:06 Lecture 7 - The World of Angels: 04:45:19 Lecture 8 - The Hero from Across the Sea: 05:36:58 Lecture 9 - The Double Mirror: Exodus and the Gospel: 06:27:26 Lecture 10 - The Metaphor of Kingship: 07:13:49 Lecture 11 - King, Priest and Prophet: 08:01:22 Lecture 12 - The Question of Primogeniture: 08:47:54 Lecture 13 - Revelation: After the Ego Disappears: 09:37:49 Lecture 14-25: https://youtu.be/v4Swyk_ZRy8 The Great Code: The Bible and Literature by Northrop Frye: https://amzn.to/2HlIlj3 The New Testam...
"I would listen to audiobooks but it’s too much money” I hear a lot of people say this so I decided to show you how you can get just about any audiobook for free. Audio books are a huge time saver, you can listen to them in the car, at the gym, at work, etc. But, most of the time they cost money and that can be a problem for some people. You can cram a huge amount of reading, learning and if you’re really into books, fun, without taking extra time out of your day to sit there, and do nothing while reading that book someone told you to check out. I do have a few totally free books at 4:09 that I highly suggest trying out.
A IMAGINAÇÃO EDUCADA - NORTHROP FRYE (AUDIOLIVRO/AUDIOBOOK). Para me ajudar, compre o livro pelo link de afiliado do canal: https://amzn.to/3hcfT5T Confira alguns cursos recomendados: Curso de escrita criativa: https://go.hotmart.com/G53283368Q Curso de Criação Literária: https://go.hotmart.com/X53283406N Livros interessantes: As Provas Da Ressurreição De Jesus: https://go.hotmart.com/Q53283441P A História da Igreja: https://go.hotmart.com/U53283481O Escute o audiolivro/audiobook completo e em português de A Imaginação Educada de Northrop Frye. Este livro é uma transcrição de seis palestras dadas pelo autor a uma emissora de rádio canadense na década de 1960. Nele, Northrop Frye – um dos mais notáveis, aclamados e influentes teóricos da literatura do século XX – discorre sobre o que é ...
In the 1962 Massey Lectures, Northrop Frye writes: "What good is the study of literature? Does it help us to think more clearly or feel more sensitively or live a better life than we would without it? What is the function of the teacher and scholar or the person who calls himself, as I do, a literary critic? What difference does the study of literature make in our social or political or religious attitude? "In my early days, I thought very little about such questions, not because I had any of the answers but because I assumed that anybody who asked them was naïve. I think now that the simplest questions are not only the hardest to answer but the most important to ask..." Part 1 – THE MOTIVE FOR METAPHOR Part 2 – THE SINGING SCHOOL Part 3 – GIANTS IN TIME Part 4 – THE KEYS TO DREAMLAND...
Canadian literary critic Northrop Frye offers the only alternative to the New Critics' pattern of the 'close reading' of a text in the twentieth century that does not either deny a common humanity or mount a war on the word. Frye's 1953 masterpiece Anatomy of Criticism actually suggests four legitimate means of reading literature, but it is the archetypal criticism for which he is most famous. Following Carl Jung, Frye offers a mode of reading that understands human experience in universal terms, seeing primal, general, and universal themes in the great works of literature, and the 'great code' of art in the Bible. Dr. Jordan Peterson has to some degree repopularised Frye's approach with his psychological readings of literature and the idea of a 'collective unconscious' common to all hu...
No episódio de hoje, Miguel e Guilherme conversam sobre o livro "O Grande Código", de Northrop Frye, recém lançado pela editora SétimoSelo Abaixo, os links para adquirir as obras citadas no programa. OBS: Ao adquirir quaisquer itens a partir dos links, você ajuda o canal! Muito obrigado :) O Grande Código: https://amzn.to/2P2U7G2 A Imaginação Educada: https://amzn.to/3lUKc0X Anatomia da Crítica: https://amzn.to/3rqKspy
In the 1962 Massey Lectures, Northrop Frye writes: "What good is the study of literature? Does it help us to think more clearly or feel more sensitively or live a better life than we would without it? What is the function of the teacher and scholar or the person who calls himself, as I do, a literary critic? What difference does the study of literature make in our social or political or religious attitude? "In my early days, I thought very little about such questions, not because I had any of the answers but because I assumed that anybody who asked them was naïve. I think now that the simplest questions are not only the hardest to answer but the most important to ask..." Part 1 – THE MOTIVE FOR METAPHOR Part 2 – THE SINGING SCHOOL Part 3 – GIANTS IN TIME Part 4 – THE KEYS TO DREAMLAN...
In the 1962 Massey Lectures, Northrop Frye writes: "What good is the study of literature? Does it help us to think more clearly or feel more sensitively or live a better life than we would without it? What is the function of the teacher and scholar or the person who calls himself, as I do, a literary critic? What difference does the study of literature make in our social or political or religious attitude? "In my early days, I thought very little about such questions, not because I had any of the answers but because I assumed that anybody who asked them was naïve. I think now that the simplest questions are not only the hardest to answer but the most important to ask..." Part 1 – THE MOTIVE FOR METAPHOR Part 2 – THE SINGING SCHOOL Part 3 – GIANTS IN TIME Part 4 – THE KEYS TO DREAMLAND ...
THE GOLDEN BOUGH by James George Frazer ABOUT THE BOOK: The Golden Bough: A Study in Comparative Religion (retitled The Golden Bough: A Study in Magic and Religion in its second edition) is a wide-ranging, comparative study of mythology and religion, written by the Scottish anthropologist Sir James George Frazer. The Golden Bough was first published in two volumes in 1890; in three volumes in 1900; and in twelve volumes in the third edition, published 1906-1915. It has also been published in several different one-volume abridgments. The work was aimed at a wide literate audience raised on tales as told in such publications as Thomas Bulfinch's The Age of Fable, or Stories of Gods and Heroes (1855). The influence of The Golden Bough on contemporary European literature and thought was subst...
~~~ Anatomy of Criticism ~~~ Title: What is Anatomy of Criticism?, Explain Anatomy of Criticism, Define Anatomy of Criticism Created on: 2018-10-16 Source Link: https://en.wikipedia.org/wiki/Anatomy_of_Criticism ------ Description: Anatomy of Criticism: Four Essays is a book by Canadian literary critic and theorist, Northrop Frye, which attempts to formulate an overall view of the scope, theory, principles, and techniques of literary criticism derived exclusively from literature. Frye consciously omits all specific and practical criticism, instead offering classically inspired theories of modes, symbols, myths and genres, in what he termed "an interconnected group of suggestions." The literary approach proposed by Frye in Anatomy was highly influential in the decades before deconstructi...
In the 1962 Massey Lectures, Northrop Frye writes: "What good is the study of literature? Does it help us to think more clearly or feel more sensitively or live a better life than we would without it? What is the function of the teacher and scholar or the person who calls himself, as I do, a literary critic? What difference does the study of literature make in our social or political or religious attitude? "In my early days, I thought very little about such questions, not because I had any of the answers but because I assumed that anybody who asked them was naïve. I think now that the simplest questions are not only the hardest to answer but the most important to ask..." Part 1 – THE MOTIVE FOR METAPHOR Part 2 – THE SINGING SCHOOL Part 3 – GIANTS IN TIME Part 4 – THE KEYS TO DREAMLAN...
Canadian literary critic Northrop Frye offers the only alternative to the New Critics' pattern of the 'close reading' of a text in the twentieth century that does not either deny a common humanity or mount a war on the word. Frye's 1953 masterpiece Anatomy of Criticism actually suggests four legitimate means of reading literature, but it is the archetypal criticism for which he is most famous. Following Carl Jung, Frye offers a mode of reading that understands human experience in universal terms, seeing primal, general, and universal themes in the great works of literature, and the 'great code' of art in the Bible. Dr. Jordan Peterson has to some degree repopularised Frye's approach with his psychological readings of literature and the idea of a 'collective unconscious' common to all hu...
This essay gives an introduction to archetypes and archetypal criticism. Feel free to mention your suggestions and doubts ◘ YouTube channel - http://www.youtube.com/c/IreneFrancisEnglishLiterature Happy Learning ♥
~~~ Anatomy of Criticism ~~~ Title: What is Anatomy of Criticism?, Explain Anatomy of Criticism, Define Anatomy of Criticism Created on: 2018-10-16 Source Link: https://en.wikipedia.org/wiki/Anatomy_of_Criticism ------ Description: Anatomy of Criticism: Four Essays is a book by Canadian literary critic and theorist, Northrop Frye, which attempts to formulate an overall view of the scope, theory, principles, and techniques of literary criticism derived exclusively from literature. Frye consciously omits all specific and practical criticism, instead offering classically inspired theories of modes, symbols, myths and genres, in what he termed "an interconnected group of suggestions." The literary approach proposed by Frye in Anatomy was highly influential in the decades before deconstructi...
#ArchetypalCriticismInLiterature | #EnglishSahityaRoom | #EnglishLiterature | #NorthropFrye | #LiteraryCriticsm | #LiteraryTheory | #MythCriticism | Archetypal Criticism Lecture 1 https://youtu.be/j4OpWnl7gy4 Archetypal Criticism lecture 2 https://youtu.be/6IfzoxJgTuw Whatsapp - 7319074100
Northrop,Frye Herman,Northrop,Frye,CC,FRSC,July,14,,1912,–,January,23,,1991,was,a,Canadian,literary,critic,and,literary,theorist,,considered,one,of,the,most,influential,of,the,20th,century Frye,gained,international,fame,with,his,first,book,,Fearful,Symmetry,1947,,which,led,to,the,reinterpretation,of,the,poetry,of,William,Blake,His,lasting,reputation,rests,principally,on,the,theory,of,literary,criticism,that,he,developed,in,Anatomy,of,Criticism,1957,,one,of,the,most,important,works,of,literary,theory,published,in,the,twentieth,century,The,American,critic,Harold,Bloom,commented,at,the,time,of,its,publication,that,Anatomy,established,Frye,as,"the,foremost,living,student,of,Western,literature"1,Fryes,contributions,to,cultural,and,social,criticism,spanned,a,long,career,during,which,he,earned,wi...
Click to Join our Premium Channel - https://rigi.club/jcp/N4HQRAxvRc Click to Join our Telegram Channel - https://t.me/englishstudypoint236 Hi Friends Welcome to English Study Point . In this video we are going to talk about Northrop Frye Archetypes of Literature. Gears in Use With me -: Best Smartphone (Realme 6i) - https://amzn.to/3AlYdKZ Cheapest & the Best Mic (BOYA BYM1 Mic) - https://amzn.to/3lrWjnI Best Laptop with great specifications - https://amzn.to/2YAQ1cB realme Buds Wireless 2 Neo (Black) Earphones with Type-C Fast Charge, Bass Boost+ & Magnetic Instant Connection - https://amzn.to/3uVrVoV Book Shelve -: NTA UGC NET/JRF/SET Teaching & Research Aptitude Paper 1 2021 (Arihant Publications) - https://amzn.to/2YANSO4 NTA UGC NET English Paper 2 (Arihant Publications) - ht...
Video made by Dheepthi (Batch 2019 - 21)
THE ARCHETYPES OF LITERATURE NORTHROP FRYE SUMMARY ARCHETYPAL CRITICISM UGC NTA NET English THEORY #archetypes #northropfrye #literarycriticism
Get British History Notes for UGC NET/SET/PGT Click here: - https://rzp.io/l/ZqaTGShq8 Get my Self-Prepared NOTES of LITERARY THEORY. Click on the link given below: https://rzp.io/l/z8MpAJI9 Description:-- Total Pages: 160 Topics Covered: 21 Major Works in Chronological Order. Major Writers and their Terms/Ideas Explained one by one in brief. IMPORTANT:- When you pay, come back to the original page and wait for 1-2 seconds, you will be directed to another page and a PDF will open to download. If you do not get the PDF after you pay, or any other problem, contact me [email protected]. NOTES' PREVIEW VIDEO:- https://youtu.be/mKkIfTfW0fY FOLLOW ME :- https://www.instagram.com/DANA_multitasker https://www.facebook.com/profile.php?id=10000 NTA UGC NET ENGLISH LITERATURE literary th...
Books mentioned: Anatomy of Criticism by Northrop Frye Dionysos by Karl Kerenyi Carthage by David Soren et al Ancient Technology by Henry Hodges China and the World by Timothy Brook
In 1957 Northrop Frye published the influential Anatomy of Criticism. In his works Frye noted that some critics tend to embrace an ideology, and to judge literary pieces on the basis of their adherence to such ideology. This has been a highly influential viewpoint among modern conservative thinkers. E. Michael Jones, for example, argues in his Degenerate Moderns that Stanley Fish was influenced by his adulterous affairs to reject classic literature that condemned adultery.[5] Jürgen Habermas in Erkenntnis und Interesse [1968] (Knowledge and Human Interests), described literary critical theory in literary studies as a form of hermeneutics: knowledge via interpretation to understand the meaning of human texts and symbolic expressions—including the interpretation of texts which themselves int...
Lecture 1 - Introduction: An Approach: 00:00 Lecture 2 - The Shape of the Bible: 00:48:59 Lecture 3 - Images of Paradise: Trees and Water: 01:36:27 Lecture 4 - Parody and Manifest Demonic: 02:23:17 Lecture 5 - Sexual Imagery: 03:08:22 Lecture 6 - Pastoral and Agricultural Imagery: 03:57:06 Lecture 7 - The World of Angels: 04:45:19 Lecture 8 - The Hero from Across the Sea: 05:36:58 Lecture 9 - The Double Mirror: Exodus and the Gospel: 06:27:26 Lecture 10 - The Metaphor of Kingship: 07:13:49 Lecture 11 - King, Priest and Prophet: 08:01:22 Lecture 12 - The Question of Primogeniture: 08:47:54 Lecture 13 - Revelation: After the Ego Disappears: 09:37:49 Lecture 14-25: https://youtu.be/v4Swyk_ZRy8 The Great Code: The Bible and Literature by Northrop Frye: https://amzn.to/2HlIlj3 The New Testam...
Lecture 1 - Introduction: An Approach: 00:00 Lecture 2 - The Shape of the Bible: 00:48:59 Lecture 3 - Images of Paradise: Trees and Water: 01:36:27 Lecture 4 - Parody and Manifest Demonic: 02:23:17 Lecture 5 - Sexual Imagery: 03:08:22 Lecture 6 - Pastoral and Agricultural Imagery: 03:57:06 Lecture 7 - The World of Angels: 04:45:19 Lecture 8 - The Hero from Across the Sea: 05:36:58 Lecture 9 - The Double Mirror: Exodus and the Gospel: 06:27:26 Lecture 10 - The Metaphor of Kingship: 07:13:49 Lecture 11 - King, Priest and Prophet: 08:01:22 Lecture 12 - The Question of Primogeniture: 08:47:54 Lecture 13 - Revelation: After the Ego Disappears: 09:37:49 Lecture 14-25: https://youtu.be/v4Swyk_ZRy8 The Great Code: The Bible and Literature by Northrop Frye: https://amzn.to/2HlIlj3 The New Testam...
Canadian literary critic Northrop Frye offers the only alternative to the New Critics' pattern of the 'close reading' of a text in the twentieth century that does not either deny a common humanity or mount a war on the word. Frye's 1953 masterpiece Anatomy of Criticism actually suggests four legitimate means of reading literature, but it is the archetypal criticism for which he is most famous. Following Carl Jung, Frye offers a mode of reading that understands human experience in universal terms, seeing primal, general, and universal themes in the great works of literature, and the 'great code' of art in the Bible. Dr. Jordan Peterson has to some degree repopularised Frye's approach with his psychological readings of literature and the idea of a 'collective unconscious' common to all hu...
Video made by Dheepthi (Batch 2019 - 21)
Canada's great literary critic analyses how Christianity transmuted the best of paganism. To mythology. fragments already absorbed, albeit transformed, in the Old Testament, Christianity added the ethical and transcendent weight of Judaism. The messianic light of the prophets, even the sometimes dazzling but refracted flashes of ancient mythology, came into focus and literal flesh in the person of Jesus Christ. The new faith, combining the best of then existing cultures, became the world's largest religion. In large part because Christianity took over the discipline of Judaism, as well as its Scriptures, the new faith even conquered the Roman Empire in 3 centuries. In these ways, paganism and the great ancient empires prepared the world and paved the Way of Christianity
Quinto incontro del ciclo di Seminari "Progetto Archetypon" svoltosi il 30 marzo 2021. Relatore: Luigi Marfè https://www.facebook.com/events/241357847726263/ Una “grammatica dell’espressione letteraria”: a questo mirava la critica archetipica di Northrop Frye, teorico della letteratura tanto originale quanto schivo, diviso tra un’attitudine spiccatamente innovatrice e il richiamo della tradizione. Le sue ricerche esplorano gli elementi di continuità – le “fearful symmetries” già evocate nel saggio su Blake (1947) – che legano il linguaggio letterario alla mitologia classica e biblica, per definire le forme universali dell’immaginario poetico. Nelle complesse tassonomie di Anatomy of Criticism (1957), il “sistema” di Frye si pone sul piano dell’“antropologia letteraria”: l’archetipo vi s...
Reflexões
I welcome questions, comments, or concerns about the material contained in this video. Rating: ***** (out of *****) You can purchase this book at: http://www.amazon.com/The-Great-Code-Bible-Literature/dp/0156027801/ref=sr_1_1?ie=UTF8&qid=1378243552&sr=8-1&keywords=the+great+code
Harold Bloom (born July 11, 1930) is an American literary critic and Sterling Professor of Humanities at Yale University. His books: https://www.amazon.com/Harold-Bloom/e/B000AQ4LU4/ref=sr_tc_2_0?qid=1514508692&sr=1-2-ent&_encoding=UTF8&tag=tra0c7-20&linkCode=ur2&linkId=07ac22401bc33a7a79d4c737e1952d2d&camp=1789&creative=9325 Since the publication of his first book in 1959, Bloom has written more than forty books, including twenty books of literary criticism, several books discussing religion, and a novel. He has edited hundreds of anthologies concerning numerous literary and philosophical figures for the Chelsea House publishing firm. Bloom's books have been translated into more than 40 languages. Bloom came to public attention in the United States as a commentator during the canon ...
This essay gives an introduction to archetypes and archetypal criticism. Feel free to mention your suggestions and doubts ◘ YouTube channel - http://www.youtube.com/c/IreneFrancisEnglishLiterature Happy Learning ♥
From Plato to Postmodernism
Herman Northrop Frye, CC FRSC (July 14, 1912 – January 23, 1991) was a Canadian literary critic and literary theorist, considered one of the most influential of the 20th century.
Frye gained international fame with his first book, Fearful Symmetry (1947), which led to the reinterpretation of the poetry of William Blake. His lasting reputation rests principally on the theory of literary criticism that he developed in Anatomy of Criticism (1957), one of the most important works of literary theory published in the twentieth century. The American critic Harold Bloom commented at the time of its publication that Anatomy established Frye as "the foremost living student of Western literature." Frye's contributions to cultural and social criticism spanned a long career during which he earned widespread recognition and received many honours.
Born in Sherbrooke, Quebec but raised in Moncton, New Brunswick, Frye was the third child of Herman Edward Frye and of Catherine Maud Howard. His much older brother, Howard, died in World War I; he also had a sister, Vera. Frye went to Toronto to compete in a national typing contest in 1929. He studied for his undergraduate degree at Victoria College in the University of Toronto, where he edited the college literary journal, Acta Victoriana. He then studied theology at Emmanuel College (like Victoria College, a constituent part of the University of Toronto). After a brief stint as a student minister in Saskatchewan, he was ordained to the ministry of the United Church of Canada. He then studied at Merton College, Oxford, before returning to Victoria College, where he spent the remainder of his professional career.