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

Puritans

The Puritans were a group of English Reformed Protestants in the 16th and 17th centuries who sought to "purify" the Church of England from all Roman Catholic practices, maintaining that the Church of England was "only partially reformed". Puritanism in this sense was founded by some of the returning clergy exiled under Mary I shortly after the accession of Elizabeth I of England in 1558 as an activist movement within the Church of England.

Puritanism played a major role in English history during the first half of the 17th century, but is still a matter of debate. The English Civil War was first defined as a "Puritan Revolution" by Samuel Rawson Gardiner in the 19th century. Anti-Catholic feeling was stoked by John Pym, a significant and alarmist politician at the time of the Grand Remonstrance of 1641; but revisionist historians such as Kevin Sharpe have cast doubt on the simple outlines of this description.

Overview

Puritans were blocked from changing the established church from within and were severely restricted in England by laws controlling the practice of religion. Their beliefs, however, were transported by the emigration of congregations to the Netherlands (and later to New England in North America) and by evangelical clergy to Ireland (and later to Wales), and were spread into lay society and parts of the educational system, particularly certain colleges of the University of Cambridge. They took on distinctive beliefs about clerical dress and in opposition to the episcopal system, particularly after the 1619 conclusions of the Synod of Dort were resisted by the English bishops. They largely adopted Sabbatarianism in the 17th century, and were influenced by millennialism.

Podcasts:

  • Puritans (The Killjoys of History)

    The Puritans were a group behind the religious ideology known as “Puritanism”, a type of early modern Reformed Protestantism that was born within the Church of England. They started as a movement for religious reform in the late-16th century and lasted until the late-17th century in England and around the 1730s in North America. Become a Simple History member: https://www.youtube.com/simplehistory/join Support us on Patreon: https://www.patreon.com/simplehistory Copyright: DO NOT translate and re-upload our content on Youtube or other social media. SIMPLE HISTORY MERCHANDISE Get the Simple History books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://teespring.com/stores/simple-history-official-merch Simple history gives you the facts, simple! ...

    published: 05 Jul 2022
  • Why Did the Puritans Leave England?

    Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook You can get the audiobook version of The Puritans here: https://www.amazon.com/Puritans-Captivating-Protestants-Established-Massachusetts/dp/B096VW6LWY You can get the paperback version of The Puritans here: https://www.amazon.com/Puritans-Captivating-Protestants-Established-Massachusetts/dp/1637163037 And the ebook version of The Puritans here: https://www.amazon.com/Puritans-Captivating-Protestants-Established-Massachusetts-ebook/dp/B093DTWYZY For most, the first few things that might come to mind are Pilgrims, turkeys, and the Mayflower. Yes, the Pilgrims who landed in Plymouth back in 1620 were...

    published: 06 May 2022
  • In Defense of Puritanism

    Many of us think of 17th century Puritans as dour, conservative theocrats – nothing could be further from the truth. This video will argue that Puritanism was, in fact, a radically progressive social justice movement that directly inspired the principles of the Enlightenment, and first articulated foundational modern democratic beliefs about human rights, civil liberties, and individual freedom. Featuring narration by @StefanMilo, @Embracehistoria, @TheHistocrat, @VoicesofthePast, @BrandonF, @HistoryTime, and @CatherineWarr. Support Atun-Shei Films on Patreon ► https://www.patreon.com/atunsheifilms Leave a Tip via Paypal ► https://www.paypal.me/atunsheifilms Buy Merch ► https://teespring.com/stores/atun-shei-films Official Website ► https://www.atunsheifilms.com/ Original Music by Di...

    published: 11 Sep 2021
  • Don't Dress Like A Puritan l Paul Washer #1689 #reformedbaptist #paulwasher #paulwashersermon

    Original Sermon: https://www.youtube.com/watch?v=i5c-Ml4P5wI&list=PLjSIFDZIs-qeMc_da70-95mmDWyH13fhq&index=3 Join this channel to support our work: https://www.youtube.com/channel/UC64LSY9kgiMC4hOAbCwcuYg/join #paulwasher #paulwashersermon #1689 #reformedbaptist #reformedbaptistchurch paul washer,paul washer sermons,paul washer the gospel,church planting,church planting strategies,church planting 101,church planting sermon,paul washer sermons shocking,paul washer sermons 2023,paul washer shocking message,paul washer sharing the gospel,paul washer the true gospel,paul washer the power of the gospel,paul washer the gospel of jesus christ,paul washer sermon jam,paul washer prayer,paul washer sermons prayer,paul washer sermons on sin #1689 #reformedbaptist #paulwasher #paulwashersermon

    published: 03 Feb 2023
  • Puritanism (an overview)

    Support the channel on Patreon: https://patreon.com/user?u=23593673 My books (affiliate links): "How We Got Our Bible" (Zondervan, 2018): https://amzn.to/2MtmSYY "Story of Creeds and Confessions" (Baker Academic, 2019): https://amzn.to/3OVDyGQ

    published: 02 Jun 2015
  • Charting the Mayflower: Pilgrim Fathers' Brave Voyage |Parable

    For many Americans, the journey of the Mayflower in 1620 symbolizes the birth of their nation. Led by William Bradford, the Pilgrim Fathers traversed the Atlantic to Plymouth, Massachussetts, in search of religious freedom. To this day, the Pilgrim Fathers are a glorified symbol of American virtue and Thanksgiving. In this film, we delve into the significance of their story for America and wider religious history, as well as their conflict and eventual treaty with the Native Americans. It's like Netflix for history... 📺 Sign up to History Hit, the world's best history documentary service and get 50% off using the code 'PARABLE' http://bit.ly/3e2c2Xs Follow Parable for more Religious History documentaries! This channel is part of the History Hit Network. Any queries, please contact us at...

    published: 20 Apr 2021
  • Who were the Puritans? | American History Homeschool Curriculum

    Excerpt from Dave Raymond's American History homeschool curriculum, available at http://bit.ly/americanhistorycc Who were the Puritans? What were they really like? The answers might surprise you. See American History taught with a unique storytelling style in this sample video from Compass Classroom. With this online history curriculum, students can join instructor Dave Raymond as he takes them on a journey through American history. What makes this homeschool history curriculum so different? First, the unique teaching style immerses students in the study of US History. By studying not only events and dates but also digging more in-depth to examine the motives and the thoughts behind the events, students gain a new appreciation for American history. Next, this course is taught with a Chr...

    published: 29 Nov 2018
  • Who were the Puritans ? English Reformation & civil war explained in less than 4 minutes (reupload)

    Who were the Puritans ? English Reformation & civil war explained in less than 4 minutes (reupload) This is an early video were I tried a different art style/much quicker narration.

    published: 06 Feb 2021
  • The Dominion of New England Explained

    I discuss why Charles II and James II thought it necessary to form the Dominion of New England, which was designed to centralise government of several English colonies--Massachusetts Bay, Rhode Island, New Hampshire and others-- under one banner. Sir Edmund Andros attempted to wrangle harmonise the Puritan colonies with the Cavalier ones... get my free booklet on the Jacobites: https://justinebrown.gumroad.com/

    published: 09 Jul 2023
  • How Have the Puritans Shaped Your Life and Ministry? I John Piper & John MacArthur

    Watch the entire conversation: https://youtu.be/WHdb1kdSlN4

    published: 31 Oct 2022
Puritans (The Killjoys of History)
8:13

Puritans (The Killjoys of History)

  • Order:
  • Duration: 8:13
  • Uploaded Date: 05 Jul 2022
  • views: 550699
The Puritans were a group behind the religious ideology known as “Puritanism”, a type of early modern Reformed Protestantism that was born within the Church of England. They started as a movement for religious reform in the late-16th century and lasted until the late-17th century in England and around the 1730s in North America. Become a Simple History member: https://www.youtube.com/simplehistory/join Support us on Patreon: https://www.patreon.com/simplehistory Copyright: DO NOT translate and re-upload our content on Youtube or other social media. SIMPLE HISTORY MERCHANDISE Get the Simple History books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://teespring.com/stores/simple-history-official-merch Simple history gives you the facts, simple! See the book collection here: Amazon USA http://www.amazon.com/Daniel-Turner/e/B00H5TYLAE/ Amazon UK http://www.amazon.co.uk/Daniel-Turner/e/B00H5TYLAE/ https://www.facebook.com/Simple-History-549437675141192/ https://twitter.com/SimpleHistoryYT Credit: Created by Daniel Turner (B.A. (Hons) in History, University College London) Narrator: Bryan 'Lazlo' Beauregard Sincerely grateful to Dr. Graeme Murdock for looking over an earlier draft of the script. Bibliography: Bremer, Francis J. Puritanism: A Very Short Introduction. Oxford University Press, 2009. Coffey, John, and Paul C. H. Lim, eds. The Cambridge Companion to Puritanism. Cambridge Companions to Religion. Cambridge: Cambridge University Press, 2008. Daniels, R. Balfour. “Shakespeare and the Puritans” The Shakespeare Association Bulletin 13, no. 1 (1938): 40–53. Pederson, Randall J. Unity in Diversity: English Puritans and the Puritan Reformation, 1603-1689. BRILL, 2014. Shepard, Paul and C. L. Rawlins. “The Puritans.” In Nature and Madness, 75–92. University of Georgia Press, 1982.
https://wn.com/Puritans_(The_Killjoys_Of_History)
Why Did the Puritans Leave England?
12:08

Why Did the Puritans Leave England?

  • Order:
  • Duration: 12:08
  • Uploaded Date: 06 May 2022
  • views: 74804
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundle ebook covering Greek, Norse, and Egyptian mythology here: http://www.captivatinghistory.com/ebook You can get the audiobook version of The Puritans here: https://www.amazon.com/Puritans-Captivating-Protestants-Established-Massachusetts/dp/B096VW6LWY You can get the paperback version of The Puritans here: https://www.amazon.com/Puritans-Captivating-Protestants-Established-Massachusetts/dp/1637163037 And the ebook version of The Puritans here: https://www.amazon.com/Puritans-Captivating-Protestants-Established-Massachusetts-ebook/dp/B093DTWYZY For most, the first few things that might come to mind are Pilgrims, turkeys, and the Mayflower. Yes, the Pilgrims who landed in Plymouth back in 1620 were indeed subscribers to Puritan ideals, but the story of the Puritans runs much deeper than that. The Puritans were a direct result of the backlash created by England’s pseudo-Reformation in the 1500s. The English Reformation was initially not sprung from religious zeal but rather the selfish wants of Britain’s king, Henry VIII. King Henry VIII wanted a new wife, and the pope wouldn’t allow him to use the machinery of the Catholic Church to dissolve his marriage. So, King Henry broke with the Catholic Church, defied the pope, and declared himself the head of the Church of England. The Church of England was largely reformed in name only, as it held onto much of the traditions and rituals of Catholicism. See all captivating history books here: https://www.amazon.com/author/captivatinghistory Follow us on Facebook: https://www.facebook.com/captivatinghistory Follow us on Twitter: @CaptivHistory
https://wn.com/Why_Did_The_Puritans_Leave_England
In Defense of Puritanism
1:01:37

In Defense of Puritanism

  • Order:
  • Duration: 1:01:37
  • Uploaded Date: 11 Sep 2021
  • views: 501149
Many of us think of 17th century Puritans as dour, conservative theocrats – nothing could be further from the truth. This video will argue that Puritanism was, in fact, a radically progressive social justice movement that directly inspired the principles of the Enlightenment, and first articulated foundational modern democratic beliefs about human rights, civil liberties, and individual freedom. Featuring narration by @StefanMilo, @Embracehistoria, @TheHistocrat, @VoicesofthePast, @BrandonF, @HistoryTime, and @CatherineWarr. Support Atun-Shei Films on Patreon ► https://www.patreon.com/atunsheifilms Leave a Tip via Paypal ► https://www.paypal.me/atunsheifilms Buy Merch ► https://teespring.com/stores/atun-shei-films Official Website ► https://www.atunsheifilms.com/ Original Music by Dillon DeRosa ► http://dillonderosa.com/ ~REFERENCES~ [1] Diane Purkiss. The English Civil War: A People’s History (2006). Harper Collins, Page 512-524 [2] Francis J. Bremer. First Founders: American Puritans and Puritanism in an Atlantic World (2012). University of New Hampshire Press, Page 3-9 [3] Andrew Thrush & John P. Ferris. “Rous, Francis [1588-1659]” (2010). History of Parliament Online https://www.historyofparliamentonline.org/volume/1604-1629/member/rous-francis-1581-1659 [4] Purkiss, Page 100 [5] “Future Pres. Kennedy Talks Faith on Face the Nation” (2012). CBS News https://youtu.be/lVTgEgUuDGM [6] Rachel Foxley. The Levellers: Radical Political Thought in the English Revolution (2013). Manchester University Press, Page 126 [7] Purkiss, Page 465 [8] Richard C. Jebb. Milton: Areopagitica, with Commentary by Sir Richard C. Jebb and Supplementary Material (1918). Cambridge University Press, Page 21 [9] Foxley, Page 24 [10] Purkiss, Page 476-479 [11] Foxley, Page 92-98 [12] Mary Overton. “The Humble Appeal and Petition of Mary Overton, Prisoner in Bridewell” (1647). Early English Books Online https://quod.lib.umich.edu/e/eebo2/A90224.0001.001/1:1?rgn=div1;view=fulltext [13] Foxley, Page 171 [14] Purkiss, Page 491-496 [15] Sumner Chilton Powell. Puritan Village: The Formation of a New England Town (1963). Wesleyan University Press, Page 83-91 [16] Bremer, Page 27-28 [17] Bremer, Page 62, 78 [18] Kyle Zelner. A Rabble in Arms: Massachusetts Towns and Militiamen during King Philip’s War (2009). New York University Press, Page 154-155 [19] Bremer, Page 197-209 [20] “A Massachusetts Minister Calls For Stricter Indian Policy After King Philip’s War.” Terry Bouton, Associate Professor of History UMBC, Personal Blog https://terrybouton.wordpress.com/a-massachusetts-minister-calls-for-stricter-indian-policy-after-king-philips-war/ [21] Bremer, Page 52 [22] Purkiss, Page 385-386 [23] Cotton Mather & Others. “The Declaration of the Gentlemen, Merchants, and Inhabitants of Boston, and the Country Adjacent” (1689). Early English Books Online https://quod.lib.umich.edu/e/eebo/A50116.0001.001/1:1?rgn=div1;view=fulltext [24] Frank Pomeroy. The Colors of Witchcraft: Ideas of Race in the Puritan Theory of Witchcraft (2016). Texas State University, Page 29 [25] Increase Mather. “Cases of Conscience Concerning Evil Spirits” (1693). Evans Early American Imprint Collection https://quod.lib.umich.edu/e/evans/N00531.0001.001/1:1?rgn=div1;view=fulltext [26] Robert Calef. “More Wonders of the Invisible World” (1700). Early English Books https://quod.lib.umich.edu/e/eebo/A32160.0001.001/1:7?rgn=div1;view=fulltext [27] Benjamin Franklin. “Silence Dogood #9” (1722). The Electric Ben Franklin https://www.ushistory.org/franklin/courant/silencedogood9.htm [28] Thomas Jefferson. “Query XVII: Excerpt from Notes on the State of Virginia” (1784). Encyclopedia Virginia https://encyclopediavirginia.org/entries/query-xvii-an-excerpt-from-notes-on-the-state-of-virginia-by-thomas-jefferson-1784/ [29] John Adams. “A Dissertation on the Canon and the Feudal Law, No. I” (1765) Massachusetts Historical Society https://www.masshist.org/publications/adams-papers/index.php/volume/PJA01/pageid/PJA01p115
https://wn.com/In_Defense_Of_Puritanism
Don't Dress Like A Puritan   l   Paul Washer #1689 #reformedbaptist  #paulwasher #paulwashersermon
1:00

Don't Dress Like A Puritan l Paul Washer #1689 #reformedbaptist #paulwasher #paulwashersermon

  • Order:
  • Duration: 1:00
  • Uploaded Date: 03 Feb 2023
  • views: 510241
Original Sermon: https://www.youtube.com/watch?v=i5c-Ml4P5wI&list=PLjSIFDZIs-qeMc_da70-95mmDWyH13fhq&index=3 Join this channel to support our work: https://www.youtube.com/channel/UC64LSY9kgiMC4hOAbCwcuYg/join #paulwasher #paulwashersermon #1689 #reformedbaptist #reformedbaptistchurch paul washer,paul washer sermons,paul washer the gospel,church planting,church planting strategies,church planting 101,church planting sermon,paul washer sermons shocking,paul washer sermons 2023,paul washer shocking message,paul washer sharing the gospel,paul washer the true gospel,paul washer the power of the gospel,paul washer the gospel of jesus christ,paul washer sermon jam,paul washer prayer,paul washer sermons prayer,paul washer sermons on sin #1689 #reformedbaptist #paulwasher #paulwashersermon
https://wn.com/Don't_Dress_Like_A_Puritan_L_Paul_Washer_1689_Reformedbaptist_Paulwasher_Paulwashersermon
Puritanism (an overview)
27:23

Puritanism (an overview)

  • Order:
  • Duration: 27:23
  • Uploaded Date: 02 Jun 2015
  • views: 295819
Support the channel on Patreon: https://patreon.com/user?u=23593673 My books (affiliate links): "How We Got Our Bible" (Zondervan, 2018): https://amzn.to/2MtmSYY "Story of Creeds and Confessions" (Baker Academic, 2019): https://amzn.to/3OVDyGQ
https://wn.com/Puritanism_(An_Overview)
Charting the Mayflower: Pilgrim Fathers' Brave Voyage |Parable
51:16

Charting the Mayflower: Pilgrim Fathers' Brave Voyage |Parable

  • Order:
  • Duration: 51:16
  • Uploaded Date: 20 Apr 2021
  • views: 182523
For many Americans, the journey of the Mayflower in 1620 symbolizes the birth of their nation. Led by William Bradford, the Pilgrim Fathers traversed the Atlantic to Plymouth, Massachussetts, in search of religious freedom. To this day, the Pilgrim Fathers are a glorified symbol of American virtue and Thanksgiving. In this film, we delve into the significance of their story for America and wider religious history, as well as their conflict and eventual treaty with the Native Americans. It's like Netflix for history... 📺 Sign up to History Hit, the world's best history documentary service and get 50% off using the code 'PARABLE' http://bit.ly/3e2c2Xs Follow Parable for more Religious History documentaries! This channel is part of the History Hit Network. Any queries, please contact us at: owned-enquiries@littledotstudios.com #Parable #PilgrimFathers #Mayflower #ReligiousHistoryDocumentary
https://wn.com/Charting_The_Mayflower_Pilgrim_Fathers'_Brave_Voyage_|Parable
Who were the Puritans? | American History Homeschool Curriculum
4:42

Who were the Puritans? | American History Homeschool Curriculum

  • Order:
  • Duration: 4:42
  • Uploaded Date: 29 Nov 2018
  • views: 154702
Excerpt from Dave Raymond's American History homeschool curriculum, available at http://bit.ly/americanhistorycc Who were the Puritans? What were they really like? The answers might surprise you. See American History taught with a unique storytelling style in this sample video from Compass Classroom. With this online history curriculum, students can join instructor Dave Raymond as he takes them on a journey through American history. What makes this homeschool history curriculum so different? First, the unique teaching style immerses students in the study of US History. By studying not only events and dates but also digging more in-depth to examine the motives and the thoughts behind the events, students gain a new appreciation for American history. Next, this course is taught with a Christian Worldview, meaning that every aspect of history is looked at through a Biblical lens. This course is perfect for students in middle school and high school. High school students can even earn a full one-hour history credit upon completion of this course. When purchasing this course, you will receive over 30 hours of online history lectures, a student reader, weekly exams, four projects, and details for a student history notebook that will be completed throughout the year. This comprehensive program is not only engaging for students but also easy for parents. Don't just take our word for it, find more product information, plus parent reviews on the Compass Classroom website. Check it out today! http://bit.ly/americanhistorycc
https://wn.com/Who_Were_The_Puritans_|_American_History_Homeschool_Curriculum
Who were the Puritans ?  English Reformation & civil war explained in less than 4 minutes (reupload)
3:56

Who were the Puritans ? English Reformation & civil war explained in less than 4 minutes (reupload)

  • Order:
  • Duration: 3:56
  • Uploaded Date: 06 Feb 2021
  • views: 25422
Who were the Puritans ? English Reformation & civil war explained in less than 4 minutes (reupload) This is an early video were I tried a different art style/much quicker narration.
https://wn.com/Who_Were_The_Puritans_English_Reformation_Civil_War_Explained_In_Less_Than_4_Minutes_(Reupload)
The Dominion of New England Explained
20:15

The Dominion of New England Explained

  • Order:
  • Duration: 20:15
  • Uploaded Date: 09 Jul 2023
  • views: 204
I discuss why Charles II and James II thought it necessary to form the Dominion of New England, which was designed to centralise government of several English colonies--Massachusetts Bay, Rhode Island, New Hampshire and others-- under one banner. Sir Edmund Andros attempted to wrangle harmonise the Puritan colonies with the Cavalier ones... get my free booklet on the Jacobites: https://justinebrown.gumroad.com/
https://wn.com/The_Dominion_Of_New_England_Explained
How Have the Puritans Shaped Your Life and Ministry? I John Piper & John MacArthur
11:20

How Have the Puritans Shaped Your Life and Ministry? I John Piper & John MacArthur

  • Order:
  • Duration: 11:20
  • Uploaded Date: 31 Oct 2022
  • views: 6786
Watch the entire conversation: https://youtu.be/WHdb1kdSlN4
https://wn.com/How_Have_The_Puritans_Shaped_Your_Life_And_Ministry_I_John_Piper_John_Macarthur
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Puritans (The Killjoys of History)
    8:13
    Puritans (The Killjoys of History)remove from playlist
  • Why Did the Puritans Leave England?
    12:08
    Why Did the Puritans Leave England?remove from playlist
  • In Defense of Puritanism
    1:01:37
    In Defense of Puritanismremove from playlist
  • Don't Dress Like A Puritan   l   Paul Washer #1689 #reformedbaptist  #paulwasher #paulwashersermon
    1:00
    Don't Dress Like A Puritan l Paul Washer #1689 #reformedbaptist #paulwasher #paulwashersermonremove from playlist
  • Puritanism (an overview)
    27:23
    Puritanism (an overview)remove from playlist
  • Charting the Mayflower: Pilgrim Fathers' Brave Voyage |Parable
    51:16
    Charting the Mayflower: Pilgrim Fathers' Brave Voyage |Parableremove from playlist
  • Who were the Puritans? | American History Homeschool Curriculum
    4:42
    Who were the Puritans? | American History Homeschool Curriculumremove from playlist
  • Who were the Puritans ?  English Reformation & civil war explained in less than 4 minutes (reupload)
    3:56
    Who were the Puritans ? English Reformation & civil war explained in less than 4 minutes (reupload)remove from playlist
  • The Dominion of New England Explained
    20:15
    The Dominion of New England Explainedremove from playlist
PLAYLIST TIME: 0:00 / 3:21:50

Puritans (The Killjoys of History)

The Puritans were a group behind the religious ideology known as “Puritanism”, a type of early modern Reformed Protestantism that was born within the Church of England. They started as a movement for religious reform in the late-16th century and lasted until the late-17th century in England and around the 1730s in North America. Become a Simple History member: https://www.youtube.com/simplehistory/join Support us on Patreon: https://www.patreon.com/simplehistory Copyright: DO NOT translate and re-upload our content on Youtube or other social media. SIMPLE HISTORY MERCHANDISE Get the Simple History books on Amazon: https://www.amazon.com/Daniel-Turner-%60/e/B00H5TYLAE/ T-Shirts https://teespring.com/stores/simple-history-official-merch Simple history gives you the facts, simple! See the book collection here: Amazon USA http://www.amazon.com/Daniel-Turner/e/B00H5TYLAE/ Amazon UK http://www.amazon.co.uk/Daniel-Turner/e/B00H5TYLAE/ https://www.facebook.com/Simple-History-549437675141192/ https://twitter.com/SimpleHistoryYT Credit: Created by Daniel Turner (B.A. (Hons) in History, University College London) Narrator: Bryan 'Lazlo' Beauregard Sincerely grateful to Dr. Graeme Murdock for looking over an earlier draft of the script. Bibliography: Bremer, Francis J. Puritanism: A Very Short Introduction. Oxford University Press, 2009. Coffey, John, and Paul C. H. Lim, eds. The Cambridge Companion to Puritanism. Cambridge Companions to Religion. Cambridge: Cambridge University Press, 2008. Daniels, R. Balfour. “Shakespeare and the Puritans” The Shakespeare Association Bulletin 13, no. 1 (1938): 40–53. Pederson, Randall J. Unity in Diversity: English Puritans and the Puritan Reformation, 1603-1689. BRILL, 2014. Shepard, Paul and C. L. Rawlins. “The Puritans.” In Nature and Madness, 75–92. University of Georgia Press, 1982.
8:13
Puritans (The Killjoys of History)
The Puritans were a group behind the religious ideology known as “Puritanism”, a type of e...
published: 05 Jul 2022
Play in Full Screen
12:08
Why Did the Puritans Leave England?
Join the Captivating History Book Club: https://bit.ly/3TMmpU2 Get a FREE mythology bundl...
published: 06 May 2022
Play in Full Screen
1:01:37
In Defense of Puritanism
Many of us think of 17th century Puritans as dour, conservative theocrats – nothing could ...
published: 11 Sep 2021
Play in Full Screen
1:00
Don't Dress Like A Puritan l Paul Washer #1689 #reformedbaptist #paulwasher #paulwashersermon
Original Sermon: https://www.youtube.com/watch?v=i5c-Ml4P5wI&list=PLjSIFDZIs-qeMc_da70-95m...
published: 03 Feb 2023
Play in Full Screen
27:23
Puritanism (an overview)
Support the channel on Patreon: https://patreon.com/user?u=23593673 My books (affiliate ...
published: 02 Jun 2015
Play in Full Screen
51:16
Charting the Mayflower: Pilgrim Fathers' Brave Voyage |Parable
For many Americans, the journey of the Mayflower in 1620 symbolizes the birth of their nat...
published: 20 Apr 2021
Play in Full Screen
4:42
Who were the Puritans? | American History Homeschool Curriculum
Excerpt from Dave Raymond's American History homeschool curriculum, available at http://bi...
published: 29 Nov 2018
Play in Full Screen
3:56
Who were the Puritans ? English Reformation & civil war explained in less than 4 minutes (reupload)
Who were the Puritans ? English Reformation & civil war explained in less than 4 minutes ...
published: 06 Feb 2021
Play in Full Screen
20:15
The Dominion of New England Explained
I discuss why Charles II and James II thought it necessary to form the Dominion of New Eng...
published: 09 Jul 2023
Play in Full Screen
11:20
How Have the Puritans Shaped Your Life and Ministry? I John Piper & John MacArthur
Watch the entire conversation: https://youtu.be/WHdb1kdSlN4
published: 31 Oct 2022
Play in Full Screen

Puritans

The Puritans were a group of English Reformed Protestants in the 16th and 17th centuries who sought to "purify" the Church of England from all Roman Catholic practices, maintaining that the Church of England was "only partially reformed". Puritanism in this sense was founded by some of the returning clergy exiled under Mary I shortly after the accession of Elizabeth I of England in 1558 as an activist movement within the Church of England.

Puritanism played a major role in English history during the first half of the 17th century, but is still a matter of debate. The English Civil War was first defined as a "Puritan Revolution" by Samuel Rawson Gardiner in the 19th century. Anti-Catholic feeling was stoked by John Pym, a significant and alarmist politician at the time of the Grand Remonstrance of 1641; but revisionist historians such as Kevin Sharpe have cast doubt on the simple outlines of this description.

Overview

Puritans were blocked from changing the established church from within and were severely restricted in England by laws controlling the practice of religion. Their beliefs, however, were transported by the emigration of congregations to the Netherlands (and later to New England in North America) and by evangelical clergy to Ireland (and later to Wales), and were spread into lay society and parts of the educational system, particularly certain colleges of the University of Cambridge. They took on distinctive beliefs about clerical dress and in opposition to the episcopal system, particularly after the 1619 conclusions of the Synod of Dort were resisted by the English bishops. They largely adopted Sabbatarianism in the 17th century, and were influenced by millennialism.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: puritans

Edit

Prospectus by Investment Company (Form 497) (Fidelity Puritan Trust)

Public Technologies 31 Mar 2025
Funds of Fidelity Puritan Trust and Fidelity Securities Fund ... Advani served as a Member of the Advisory Board of Fidelity Puritan Trust and Fidelity Securities Fund from August 1, 2023 through July 15, 2024.
Edit

Donald Trump’s America Echoes Our Puritan Past

Vanity Fair 21 Mar 2025
Us-versus-them thinking. High-control habits. An obsession with punishment. Some aspects of the MAGA movement are a lot older than you might think ....
Edit

‘We put all of life into the mincer’: These New Puritans on their kaleidoscopic new album

The Guardian 18 Mar 2025
We meet the Barnett twins among the Southend amusement arcades ... It turns out this chimes with the creation of Crooked Wing, the fifth album from their band These New Puritans.
Edit

The Puritans

Bitchute 14 Mar 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Additional Proxy Soliciting Materials (Form DEFA14A) (Fidelity Puritan Trust)

Public Technologies 14 Mar 2025
) SCHEDULE 14A INFORMATION. PROXY STATEMENT PURSUANT TO SECTION 14(a) ... Filed by the Registrant ☒ ... FIDELITY PURITAN TRUST ... * ... Fidelity Puritan Trust published this content on March 14, 2025, and is solely responsible for the information contained therein.
Edit

These New Puritans Return with New Album, 'Crooked Wing'

The Quietus 12 Mar 2025
These New Puritans have shared details of a new album, titled Crooked Wing ... The record was produced by the group’s Jack Barnett together with Bark PsychosisGraham Sutton ... In a statement, the duo’s George Barnett said ... ....
Edit

These New Puritans announce fifth album ‘Crooked Wing’ with gothic Caroline Polachek collaboration ‘Industrial Love Song’

NME 11 Mar 2025
These New Puritans have announced their new album ‘Crooked Wing’ and shared its lead single ‘Industrial Love Song’, featuring Caroline Polachek ... These New Puritans – ‘Inside The Rose’ review.
Edit

These New Puritans Announce New Album Crooked Wing: Hear “Bells” & “Industrial Love Song” (Feat. Caroline Polachek)

Stereogum 11 Mar 2025
We haven’t heard from These New Puritans since before the pandemic, but the UK art-rock duo is finally back today with the announcement of Crooked Wing. It’s their first new album in six years, following 2019’s Inside The Rose ... 0 ... 0 ... 0.
  • 1
×