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

Podcasts:

  • Common Sense by Thomas Paine

    In 1776, Colonial America and Great Britain were at a breaking point. Enter Thomas Paine: the ultimate influencer of 1776 when his pamphlet, Common Sense, hit the cobblestone streets of Colonial America. In this video, you'll learn about why Thomas Paine believed that independence from Great Britain was necessary as you dive into the pages of his famous document. ___ Thanks for watching! If you liked this video and/or learned something new, go ahead and hit the "thumbs up" button. Subscribe to the channel to stay up-to-date on new videos, too! Let's keep pursuing history together. :) ___ Music (all copyright free in YouTube Audio Library): Twilight Train - Dan Lebowitz The Plan's Working - Cooper Cannell The Long Night - Quincas Moreira ___ Copyright: Please do not reupload this vid...

    published: 13 Nov 2021
  • The Forgotten Father of Western Democracy: Thomas Paine

    Thomas Paine was a plain talking, big thinking common man - self educated in matters of science, philosophy, activism and political theory. His pamphlets and books inspired ordinary people throughout the colonies of America to stand up for their rights and throw off the yoke of British domination. Soon after, these books were smuggled into France, where they inspired the Third Estate to agitate for the guarantee of their natural rights. Eventually, this grass roots activism would lead to the overthrow of the French Monarchy in the French Revolution, where Paine would be granted honorary citizenship, a seat in its parliament and a voice in the drafting of the French Republic's constitution. He would eventually go on to write on many issues of social justice, including abolition, universal s...

    published: 16 Apr 2022
  • Thomas Paine and "Common Sense"

    Shortly after the Battle of Bunker Hill in 1775, Thomas Paine writes an anonymous pamphlet titled, "Common Sense," that helps persuade Americans to push for full independence from Britain.

    published: 01 May 2020
  • The Fall of Thomas Paine: The Rights of Man and The Age of Reason

    In the first video Christian Murray examined Thomas Paine's rise to fame. Here he looks at Paine's activities after the American Revolution, his troubles in England, his exile, and nearly losing his life for being too moderate during the French Revolution.

    published: 25 Apr 2022
  • Thomas Paine Biography

    In this episode of 5 Minute Biographies, we take a quick look at the interesting life of the writer of Common Sense, the Age of Reason and the Rights of Man - Thomas Paine. Check out Thomas Paine's political writings at Amazon: https://geni.us/o2mpTA Thanks for watching. If you would like to support the show, by say, buying me a coffee, please head on over to http://www.5minutebiographies.com/coffee to see how. And don't forget to check out 5 Minute History at http://www.5minutehistory.com/youtube Subscribe: http://bt.ly/5minutebios Website: http://www.5minutebiographies.com Podcast: http://www.5minutebiographies.com/podcast/ Facebook: http://www.5minutebiographies.com/facebook/ Twitter: http://www.5minutebiographies.com/twitter/ Instagram: http://www.5minutebiographies.com/instagram...

    published: 18 Feb 2017
  • The roads of Thomas Paine and Common Sense....

    Beau of The Fifth Column main channel: https://www.youtube.com/c/BeauoftheFifthColumn Patreon: https://www.patreon.com/beautfc Teespring: https://teespring.com/stores/beau-of-the-fifth-column All images in the public domain via The Smithsonian, The National Archives, and Wikimedia. If you're looking for public domain historical images, definitely check out the Smithsonian open access project. https://www.si.edu/openaccess

    published: 26 Jan 2021
  • Thomas Paine: The Revolutionary War in Four Minutes

    Jim Percoco of the American Battlefield Trust sheds light on one of the overlooked figures of the American Revolution, Thomas Paine. https://bit.ly/3gMrdnl Paine was born in England and had a great disdain for the British Aristocracy. Known as an enlightenment thinker, Paine would later move to the American Colonies and play a major role in the push for independence.

    published: 28 Nov 2018
Common Sense by Thomas Paine
4:28

Common Sense by Thomas Paine

  • Order:
  • Duration: 4:28
  • Uploaded Date: 13 Nov 2021
  • views: 221527
In 1776, Colonial America and Great Britain were at a breaking point. Enter Thomas Paine: the ultimate influencer of 1776 when his pamphlet, Common Sense, hit the cobblestone streets of Colonial America. In this video, you'll learn about why Thomas Paine believed that independence from Great Britain was necessary as you dive into the pages of his famous document. ___ Thanks for watching! If you liked this video and/or learned something new, go ahead and hit the "thumbs up" button. Subscribe to the channel to stay up-to-date on new videos, too! Let's keep pursuing history together. :) ___ Music (all copyright free in YouTube Audio Library): Twilight Train - Dan Lebowitz The Plan's Working - Cooper Cannell The Long Night - Quincas Moreira ___ Copyright: Please do not reupload this video on YouTube or other social media websites or apps. You do not have permission to translate it into other languages or reupload the images, designs or narration to other YouTube channels or social media platforms.
https://wn.com/Common_Sense_By_Thomas_Paine
The Forgotten Father of Western Democracy: Thomas Paine
1:26:31

The Forgotten Father of Western Democracy: Thomas Paine

  • Order:
  • Duration: 1:26:31
  • Uploaded Date: 16 Apr 2022
  • views: 198214
Thomas Paine was a plain talking, big thinking common man - self educated in matters of science, philosophy, activism and political theory. His pamphlets and books inspired ordinary people throughout the colonies of America to stand up for their rights and throw off the yoke of British domination. Soon after, these books were smuggled into France, where they inspired the Third Estate to agitate for the guarantee of their natural rights. Eventually, this grass roots activism would lead to the overthrow of the French Monarchy in the French Revolution, where Paine would be granted honorary citizenship, a seat in its parliament and a voice in the drafting of the French Republic's constitution. He would eventually go on to write on many issues of social justice, including abolition, universal suffrage, aged care, education, welfare, healthcare and anti-corruption in government. This occasionally made him a target of powerful people, and despite his heroic status, he was eventually marginalised and forgotten. Overshadowed by the major players who used his tireless campaigning to their advantage, Paine died in obscurity and poverty, having transformed the landscape of democracy across three continents, and was the source of many of our greatest achievements in civil discourse and progress over the last 250 years. #thomaspaine, #americanhero, #democracy, #frenchrevolution, #documentary All footage used in this montage is for educational purposes. It remains the property of its respective creators, and is gratefully acknowledged in the end credits of the full length video. Copyright Disclaimer- under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use. Please contact us on info@heroesandlegends.com.au if you have any concerns about its use. A few viewers had said they would prefer no music in the video, so I've uploaded a version minus the music here: https://youtu.be/qgBafhZojOE If you enjoy my content, leave your suggestions and comments below, and please consider making a donation via PayPal or sign up as a Patreon supporter to help me continue making these unfunded educational videos: https://www.paypal.com/donate/?hosted_button_id=4D958V58PAVDU https://www.patreon.com/heroesandlegends https://buymeacoffee.com/infoQh Or visit my Heroes and Legends website: https://heroesandlegends.com.au ERRATA / CORRIGENDA: Please see below for any errors picked up by viewers post production: 1. Washington crossed the Delaware River, not the Potomac on Christmas night 1776. 2. At about 1:06:00 I write that Paine was against the execution of Louis XIV. It should have been Louis XVI. 3. Thomas Paine's cottage in New Rochelle is in New York, not New Jersey For downloads of his major works, please visit the resources section on the Heroes and Legends Website at www.heroesandlegends.com.au (All rights to the providers of the documents). For resources, links to my other videos, merchandise, the latest social media posts and podcast links, please visit my Heroes and Legends Website: www.heroesandlegends.com.au
https://wn.com/The_Forgotten_Father_Of_Western_Democracy_Thomas_Paine
Thomas Paine and "Common Sense"
1:42

Thomas Paine and "Common Sense"

  • Order:
  • Duration: 1:42
  • Uploaded Date: 01 May 2020
  • views: 56393
Shortly after the Battle of Bunker Hill in 1775, Thomas Paine writes an anonymous pamphlet titled, "Common Sense," that helps persuade Americans to push for full independence from Britain.
https://wn.com/Thomas_Paine_And_Common_Sense
The Fall of Thomas Paine: The Rights of Man and The Age of Reason
15:17

The Fall of Thomas Paine: The Rights of Man and The Age of Reason

  • Order:
  • Duration: 15:17
  • Uploaded Date: 25 Apr 2022
  • views: 9047
In the first video Christian Murray examined Thomas Paine's rise to fame. Here he looks at Paine's activities after the American Revolution, his troubles in England, his exile, and nearly losing his life for being too moderate during the French Revolution.
https://wn.com/The_Fall_Of_Thomas_Paine_The_Rights_Of_Man_And_The_Age_Of_Reason
Thomas Paine Biography
9:33

Thomas Paine Biography

  • Order:
  • Duration: 9:33
  • Uploaded Date: 18 Feb 2017
  • views: 42335
In this episode of 5 Minute Biographies, we take a quick look at the interesting life of the writer of Common Sense, the Age of Reason and the Rights of Man - Thomas Paine. Check out Thomas Paine's political writings at Amazon: https://geni.us/o2mpTA Thanks for watching. If you would like to support the show, by say, buying me a coffee, please head on over to http://www.5minutebiographies.com/coffee to see how. And don't forget to check out 5 Minute History at http://www.5minutehistory.com/youtube Subscribe: http://bt.ly/5minutebios Website: http://www.5minutebiographies.com Podcast: http://www.5minutebiographies.com/podcast/ Facebook: http://www.5minutebiographies.com/facebook/ Twitter: http://www.5minutebiographies.com/twitter/ Instagram: http://www.5minutebiographies.com/instagram/
https://wn.com/Thomas_Paine_Biography
The roads of Thomas Paine and Common Sense....
24:17

The roads of Thomas Paine and Common Sense....

  • Order:
  • Duration: 24:17
  • Uploaded Date: 26 Jan 2021
  • views: 98541
Beau of The Fifth Column main channel: https://www.youtube.com/c/BeauoftheFifthColumn Patreon: https://www.patreon.com/beautfc Teespring: https://teespring.com/stores/beau-of-the-fifth-column All images in the public domain via The Smithsonian, The National Archives, and Wikimedia. If you're looking for public domain historical images, definitely check out the Smithsonian open access project. https://www.si.edu/openaccess
https://wn.com/The_Roads_Of_Thomas_Paine_And_Common_Sense....
Thomas Paine: The Revolutionary War in Four Minutes
3:51

Thomas Paine: The Revolutionary War in Four Minutes

  • Order:
  • Duration: 3:51
  • Uploaded Date: 28 Nov 2018
  • views: 67720
Jim Percoco of the American Battlefield Trust sheds light on one of the overlooked figures of the American Revolution, Thomas Paine. https://bit.ly/3gMrdnl Paine was born in England and had a great disdain for the British Aristocracy. Known as an enlightenment thinker, Paine would later move to the American Colonies and play a major role in the push for independence.
https://wn.com/Thomas_Paine_The_Revolutionary_War_In_Four_Minutes
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Common Sense by Thomas Paine
    4:28
    Common Sense by Thomas Paineremove from playlist
  • The Forgotten Father of Western Democracy: Thomas Paine
    1:26:31
    The Forgotten Father of Western Democracy: Thomas Paineremove from playlist
  • Thomas Paine and
    1:42
    Thomas Paine and "Common Sense"remove from playlist
  • The Fall of Thomas Paine: The Rights of Man and The Age of Reason
    15:17
    The Fall of Thomas Paine: The Rights of Man and The Age of Reasonremove from playlist
  • Thomas Paine Biography
    9:33
    Thomas Paine Biographyremove from playlist
  • The roads of Thomas Paine and Common Sense....
    24:17
    The roads of Thomas Paine and Common Sense....remove from playlist
  • Thomas Paine: The Revolutionary War in Four Minutes
    3:51
    Thomas Paine: The Revolutionary War in Four Minutesremove from playlist
PLAYLIST TIME: 0:00 / 2:25:39

Common Sense by Thomas Paine

In 1776, Colonial America and Great Britain were at a breaking point. Enter Thomas Paine: the ultimate influencer of 1776 when his pamphlet, Common Sense, hit the cobblestone streets of Colonial America. In this video, you'll learn about why Thomas Paine believed that independence from Great Britain was necessary as you dive into the pages of his famous document. ___ Thanks for watching! If you liked this video and/or learned something new, go ahead and hit the "thumbs up" button. Subscribe to the channel to stay up-to-date on new videos, too! Let's keep pursuing history together. :) ___ Music (all copyright free in YouTube Audio Library): Twilight Train - Dan Lebowitz The Plan's Working - Cooper Cannell The Long Night - Quincas Moreira ___ Copyright: Please do not reupload this video on YouTube or other social media websites or apps. You do not have permission to translate it into other languages or reupload the images, designs or narration to other YouTube channels or social media platforms.
4:28
Common Sense by Thomas Paine
In 1776, Colonial America and Great Britain were at a breaking point. Enter Thomas Paine: ...
published: 13 Nov 2021
Play in Full Screen
1:26:31
The Forgotten Father of Western Democracy: Thomas Paine
Thomas Paine was a plain talking, big thinking common man - self educated in matters of sc...
published: 16 Apr 2022
Play in Full Screen
1:42
Thomas Paine and "Common Sense"
Shortly after the Battle of Bunker Hill in 1775, Thomas Paine writes an anonymous pamphlet...
published: 01 May 2020
Play in Full Screen
15:17
The Fall of Thomas Paine: The Rights of Man and The Age of Reason
In the first video Christian Murray examined Thomas Paine's rise to fame. Here he looks at...
published: 25 Apr 2022
Play in Full Screen
9:33
Thomas Paine Biography
In this episode of 5 Minute Biographies, we take a quick look at the interesting life of t...
published: 18 Feb 2017
Play in Full Screen
24:17
The roads of Thomas Paine and Common Sense....
Beau of The Fifth Column main channel: https://www.youtube.com/c/BeauoftheFifthColumn Pat...
published: 26 Jan 2021
Play in Full Screen
3:51
Thomas Paine: The Revolutionary War in Four Minutes
Jim Percoco of the American Battlefield Trust sheds light on one of the overlooked figures...
published: 28 Nov 2018
Play in Full Screen
'); } 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: thomas paine

Edit

Trial of ex-high school basketball coach who conducted naked fat tests comes to a close

Times Union 09 May 2025
Aaron Thomas, 57, who coached at North Kingstown High School from the 1990s until he resigned in 2021, has pleaded not guilty to second-degree child molestation and second-degree sexual assault ... Thomas was the last witness to take the stand.
Edit

In Aaron Thomas 'naked fat test' trial, expert says coach's tests were not useful. What to know.

The Providence Journal 09 May 2025
Aaron Thomas arrives at court ahead of his trial. Former North Kingstown basketball coach Aaron Thomas arrives at his trial on April 7, 2025 ... Thomas testified he continued to test students, even as school tried to stop him.
Edit

Providence Community Health Centers is laying off more than 70 staff members. This is why.

The Providence Journal 09 May 2025
Merrill Thomas, president and CEO of PCHC, said the layoffs were a painful but necessary measure for the nonprofit to survive ... Thomas pointed to the same two culprits that PCHC cited for its earlier round of layoffs.
Edit

'Like a prison': Students in revolt at posh Auckland school, principal caught on secret recording

NewstalkZB 09 May 2025
Last Saturday, the Herald revealed principal Brenda McNaughton shared the name and confidential details of a former student who complained about disgraced music teacher Peter Thomas with another student’s father.&nbsp;.
Edit

The Presidency and the Media

The Liberty Beacon 09 May 2025
Pamphleteer Thomas Paine, known for his writing of Common Sense, and once a staunch supporter of Washington, turned against him for not helping to rescue him from a foreign prison.
Edit

Why 50+ are saying yes to the running challenge

The Times of India 08 May 2025
Bye-bye knee caps at 60 Driving trucks long distances across the country was taking a toll on P Thomas' health. By 50, he had developed lower back pain, knee pain and ever-spiking cholesterol levels.
Edit

Washington governor signs rent-control bill into law

Newsday 08 May 2025
“Forty percent of the people in the state of Washington are renters or manufactured homeowners and before today they had no protections over how high the rent can go, leading to pain and to devastating destabilization of families and communities.”.
Edit

How Trump just turned America into crime syndicate

Alternet 08 May 2025
... earth, or have only a casual existence, were we callous to the touches of affection.” —Thomas Paine“Common interest may always be reckoned upon as the surest bond of sympathy.” —Alexander Hamilton.
Edit

The Return of The Stranger’s SIFF Notes

The Stranger 08 May 2025
The complexity of love, the intimacy of caretaking, and the fragility of “normal” come together in a quiet, painful dance in this unflinching Danish drama. Ane and Thomas, on the brink of ...
Edit

Trial of ex-high school basketball coach who conducted naked fat tests comes to close

Toronto Sun 07 May 2025
Aaron Thomas, 57, who coached at North Kingstown High School from the 1990s until he resigned in 2021, has pleaded not guilty to second-degree child molestation and second-degree sexual assault ... Thomas was the last witness to take the stand.
Edit

This single Trump deficiency has caused the horror of today's America

Raw Story 07 May 2025
As so many of our nation’s Founders noted.“The social compact would dissolve, and justice be extirpated from the earth, or have only a casual existence, were we callous to the touches of affection.” —Thomas Paine ...Pain.
Edit

'A foolish thing': Aaron Thomas admits he lied to police in naked fat test trial. What to know.

The Providence Journal 06 May 2025
Aaron Thomas arrives at court ahead of his trial. Former North Kingstown basketball coach Aaron Thomas arrives at his trial on April 7, 2025 ... Thomas repeatedly denied the allegations ... I’m truly sorry that it occurred the way it occurred,” said Thomas.
Edit

I borrowed £8k to get a dazzling smile in Turkey - but now my botched ...

The Daily Mail 06 May 2025
... teeth have left her 'drowning' in debt and in constant pain ... Marsha Thomas from Wrexham said she's 'drowning' in debt and in constant pain due to her botched Turkey teeth (pictured with her new teeth).
Edit

The rule of law is cast aside by the Trump administration [column]

Lancaster Online 04 May 2025
In America the law is King,” political philosopher and American revolutionary Thomas Paine wrote in his pamphlet, “Common Sense. “For as in absolute governments the King is law, so in free countries the law ought to be King; and there ... .
Edit

The Destruction of the Department of Justice

The Atlantic 04 May 2025
When Thomas Paine asked what made America different from England, he had a ready answer. “In America, the law is king.” America has not always upheld that ideal, but, taking the long view, it has made great progress toward that principle ... [Read ... [Read ... .
×