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

Nat Turner

Nat Turner (October 2, 1800 – November 11, 1831) was an African-American slave who led a rebellion of slaves and free blacks in Southampton County, Virginia on August 21, 1831, that resulted in the deaths of at least fifty white people and at least 200 black people.

Turner led a group of slaves carrying farm implements in a rebellion against slavery. As they went from plantation to plantation they gathered horses, guns, freed other slaves along the way, and recruited other blacks that wanted to join their revolt. During the rebellion, Virginia legislators targeted free blacks with a colonization bill, which allocated new funding to remove them, and a police bill that denied free blacks trials by jury and made any free blacks convicted of a crime subject to sale and relocation. Whites organized militias and called out regular troops to suppress the rising. In addition, white militias and mobs attacked blacks in the area, killing an estimated 200, many of whom were not involved in the revolt.

Nat Turner (wrestler)

Nat Turner is the in-ring name of semi-retired professional wrestler and musician Nat Peterson. Described best as enhancement talent, Turner wrestled exclusively for NECW.

Professional wrestling career

New England Championship Wrestling (2006-?)

Turner began his wrestling career as a valet to TJ Richter.

While in NECW, Turner lost to such notable wrestlers as NXT standout Max Bauer on June 10, 2006 and former WCW wrestler Rick Fuller on July 16, 2006.

As a stipulation of the match, after a May 19, 2006 loss to Evan Siks, Turner has to act as Siks servant for 30 days.

References


Podcasts:

Famous quotes by Nat Turner:

"I heard a loud noise in the heavens, and the Spirit was loosened, and Christ had laid down the yoke he had borne for the sins of men, and that I should take it on and fight against the Serpent, for the time was fast approaching when the first should be last and the last should be first."
"Having soon discovered to be great, I must appear so, and therefore studiously avoided mixing in society, and wrapped myself in mystery, devoting my time to fasting and prayer."
"Being at play with other children, when three or four years old, I was telling them something, which my mother overhearing, said it had happened before I was born... others being called on were greatly astonished...and caused them to say in my hearing, I surely would be a prophet."
  • Looking at Nat Turner's Legacy | Explorer

    Though he was sentenced to death, Nat Turner's resistance to slavery remains relevant to this day. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Watch all clips of Explorer here: http://bit.ly/WatchExplorer ➡ Get More Explorer: https://on.natgeo.com/2kjK3ZO About Explorer: Explorer, the longest-running documentary series in cable television history, honored with nearly 60 Emmys and hundreds of other awards, continues as a series of major specials on the National Geographic Channel. In the course of more than two thousand films, Explorer has taken viewers to more than 120 countries, opening a window on hidden parts of the world, unlocking mysteries both ancient and modern, and investigating stories of science, nature, and culture. Get More National Geographic: Official Site: http://bit.ly...

    published: 14 May 2017
  • Nat Turner & The Rebellion That Shook the South

    In 1831, a slave rebellion led by #NatTurner shook the South to its core. In its wake, the grip of the slaveholders tightened even further. But who was Nat Turner, how did his #rebellion start, and how should this horrible event be viewed in history? MrBettsClass MERCH - http://bit.ly/MBCtshirt SUPPORT MrBettsClass - http://bit.ly/MBC_Patreon Historical Parody/Skits every Thursday Follow on Twitter: http://twitter.com/MrBettsClass Instagram: http://instagram.com/MrBettsClass Like on FaceBook: http://facebook.com/MrBettsClass August 1831. Southampton County, Virginia. The fears of the slaveholding South were realized. Rebellion. Over 70 slaves, armed with knives, hatchets, and bludgeoning objects swept the pastoral countryside, killing all in their path. Their leader was a slave named Nat...

    published: 06 Dec 2018
  • The impact of Nat Turner's rebellion still felt today

    With freedom on his mind, Turner lead a group of slave through Southhampton to liberate themselves. WAVY 10's Tom Schaad reports.

    published: 25 Feb 2020
  • Nat Turner's Rebellion

    Nat Turner was an educated and religious African American slave who claimed to hear commandments from God. Nat Turner's Rebellion was a violent insurrection against white slave owners, killing between 55 and 65 white people, but ultimately resulting in the death of three times as many slaves. The Daily Dose provides microlearning history documentaries like this one delivered to your inbox daily: https://dailydosenow.com Learn more: https://dailydosenow.com/nat-turners-rebellion/ Subscribe for daily emails: https://subscribe.dailydosenow.com/ Become a Patron: https://patreon.com/dailydosenow Follow us on social media: Twitter: https://twitter.com/TheDailyDose18 Facebook: https://www.facebook.com/thedailydosenow Click to subscribe on YouTube: https://www.youtube.com/channel/UCuYZAnKoZYX...

    published: 03 Dec 2021
  • Nat Turner's Slave Rebellion

    Nat Turner - known as the prophet in his enslaved community, led a violent uprising that changed everything. Untold is a free collection of short, compelling, history videos and animations designed to engage new audiences in a new conversation and shine a light on the stories that don’t always make it into the classroom and question what we think we know about those that do. Untold is here to fill in the gaps and bring new stories to life. Check out untoldhistory.org Follow Untold on Instagram: https://www.instagram.com/untoldedu/ Facebook: https://www.facebook.com/UntoldEdu Twitter: https://twitter.com/UntoldEdu

    published: 15 Dec 2021
  • "Possession" - Nat Turner's Slave Rebellion 1831 - Short Film HD

    Our Movie “The Red Badge of Courage” on Kickstarter! Just CLICK! https://www.kickstarter.com/projects/lionheartfilmworks/the-red-badge-of-courage-motion-picture Short film produced as part of the Richmond 48 Hour Film Festival. A short dramatic interpretation and moment of Nat Turner during his 1831 Slave Rebellion. An original short film starring Tyhm Kennedy as the legendary Virginian Nat Turner, this story touches on the brutal reality of the 1831 Southampton, Virginia Slave Revolt. https://www.facebook.com/Possession-the-Film-138238199529745/ Directed & Produced by: Kevin R. Hershberger Written by: Baron Blakley Costumes by: Historical Wardrobe Sound by: William Britt - Midnite Sound 🇺🇸👕🎖️** Find All Of Our Exclusive Patriotic & History-Oriented Merchandise Here - Every Sale Su...

    published: 16 Jun 2018
  • The true story of Nat Turner || STEVE HARVEY

    Steve talks with Nate Parker, the man who wrote, directed, produced and starred in one of the most critically acclaimed and most powerful films of the year, “The Birth of a Nation.” Subscribe now to the STEVE HARVEY YouTube channel: http://bit.ly/1K5UsMy Find out where to watch in your city here: http://steveharveytv.com/watch/ Get more Steve Harvey! Facebook: http://www.facebook.com/SteveHarveyTV Instagram: http://www.instagram.com/iamsteveharveytv Twitter: http://www.twitter.com/IAmSteveHarvey Hulu: http://www.hulu.com/steve-harvey

    published: 05 Oct 2016
  • Live Chat With Nat Turner CEO Of PSA Grading.

    Nat's Instagram https://www.instagram.com/natsturner_cards/ *When you click on links to various merchants on this site and make a purchase, this can result in this site earning a commission. Affiliate programs and affiliations include, but are not limited to, the eBay Partner Network.* https://www.ebay.com/usr/pokeknowledge?mkcid=1&mkrid=711-53200-19255-0&siteid=0&campid=5338966018&customid=PokeKnowledge&toolid=10001&mkevt=1 Follow my Instagram or to contact me https://www.instagram.com/pokeknowledge/?igshid=YmMyMTA2M2Y%3D

    published: 18 Jul 2023
  • The Birth of a Nation 'Nat Turner American Revolutionary' Featurette (2016)

    The Birth of a Nation - Featurette 'Nat Turner, American Revolutionary' Nat Turner, a literate slave and preacher in the antebellum South, orchestrates an uprising. Some of the best and most funniest movie moments happen behind the scenes. FilmIsNow Movie Extras channel gives you the latest and best behind the scenes footage, bloopers, interviews, featurettes, deleted/alternate scenes. We give you the before, during and after that goes into making movies.

    published: 18 Sep 2016
  • The Israelites: NAT TURNER DOCUMENTARY [OFFICIAL]

    Israel United in Christ is a Biblical Organization that teaches the Gospel of Repentance from Sin to Our People scattered around the world as a Result of Disobedience to God’s Commandments. When you consider the plight of our people, it is one of turmoil and trauma. Our People, the Israelites suffer from a wide range of issues from Self Hatred, and Domestic Violence, to Mass Incarceration and Economic Exploitation... However, The Bible has the Solution to Our People’s Problems. For more information: https://israelunite.org/ Contact # (855) 484-4842Ext. 723 Contact Person: Deacon Asaph Address: 44 South West, Mount Vernon NY 10550 For more videos go to: http://israelunite.org/videos Facebook: https://www.facebook.com/israelunited.inchrist/ Podcast: http://www.iuicpodcast.com/ Instagram: h...

    published: 20 May 2017
developed with YouTube
Looking at Nat Turner's Legacy | Explorer
2:21

Looking at Nat Turner's Legacy | Explorer

  • Order:
  • Duration: 2:21
  • Uploaded Date: 14 May 2017
  • views: 231488
Though he was sentenced to death, Nat Turner's resistance to slavery remains relevant to this day. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Watch all clips of Explorer here: http://bit.ly/WatchExplorer ➡ Get More Explorer: https://on.natgeo.com/2kjK3ZO About Explorer: Explorer, the longest-running documentary series in cable television history, honored with nearly 60 Emmys and hundreds of other awards, continues as a series of major specials on the National Geographic Channel. In the course of more than two thousand films, Explorer has taken viewers to more than 120 countries, opening a window on hidden parts of the world, unlocking mysteries both ancient and modern, and investigating stories of science, nature, and culture. Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram: http://bit.ly/NatGeoInsta About National Geographic National Geographic is the world's premium destination for science, exploration, and adventure. Through their world-class scientists, photographers, journalists, and filmmakers, Nat Geo gets you closer to the stories that matter and past the edge of what's possible. Looking at Nat Turner's Legacy | Explorer https://youtu.be/ZrRBGGVTM38 National Geographic https://www.youtube.com/natgeo
https://wn.com/Looking_At_Nat_Turner's_Legacy_|_Explorer
Nat Turner & The Rebellion That Shook the South
6:14

Nat Turner & The Rebellion That Shook the South

  • Order:
  • Duration: 6:14
  • Uploaded Date: 06 Dec 2018
  • views: 256066
In 1831, a slave rebellion led by #NatTurner shook the South to its core. In its wake, the grip of the slaveholders tightened even further. But who was Nat Turner, how did his #rebellion start, and how should this horrible event be viewed in history? MrBettsClass MERCH - http://bit.ly/MBCtshirt SUPPORT MrBettsClass - http://bit.ly/MBC_Patreon Historical Parody/Skits every Thursday Follow on Twitter: http://twitter.com/MrBettsClass Instagram: http://instagram.com/MrBettsClass Like on FaceBook: http://facebook.com/MrBettsClass August 1831. Southampton County, Virginia. The fears of the slaveholding South were realized. Rebellion. Over 70 slaves, armed with knives, hatchets, and bludgeoning objects swept the pastoral countryside, killing all in their path. Their leader was a slave named Nat Turner. Born in the year 1800, Nat’s mother had been kidnapped and brought from Africa, his father, a slave who later escaped. Nat was quickly seen as a gifted, intelligent child. He was taught to read and found his purpose in the Holy Bible. He would preach to fellow slaves and even some whites, earning him the nickname “Prophet,” and even claimed to receive visions. When he was 22, he escaped and fled, only to return to the plantation voluntarily. When asked why, he claimed “the Spirit appeared to me and said I had my wishes directed to the things of this world, and not to the kingdom of heaven, and that I should return to the service of my earthly master.” But Nat was not back to subserviently serve in bondage. He knew his purpose was to avenge those that suffered under the chains of slavery. At age 27, while working in his master’s field, an intense vision befell him. “The Serpent is loosened. Christ laid down the yoke for the sins of man. You shall take it to fight against the Serpent. The time is near when the first should be last and the last shall be first.” Nat began to prepare, at first confiding only in those closest to him. (4 men) Then, in 1831, a solar eclipse appear in the sky like a black fist blotting out the sun. They planned the uprising for July 4th, Independence Day. But illness befell Nat, and the insurrection was called off. That was until August of the same year, when another solar eclipse occured, and the air turned a ghastly grayish-blue. This was the sign Nat was waiting for. The rebellion began a week later. It started the night of August 21st. The small band of slaves killed Nat’s owner Joseph Travis, his wife, and son, as well as a hired worker, in their beds as they slept. After the group left, they recalled that there was one more member of the Travis family. So two slaves returned to kill the infant in its cradle. Nat felt that this violence was necessary to finally bring about the change needed to awaken abolitionist allies and shake the foundation of slavery to pieces. Also, to Nat, this wasn’t about anger, it was holy retribution. Over the next two days, the rebellion brought Old Testament carnage to the Southampton countryside, killing more than 60 whites in their path, sparing the poorest who it was believed “thought no better of themselves than they did of negroes.” Hundreds of federal troops and thousands of white militiamen intercepted the rebellion on its way to the center of the county’s government, a town named Jerusalem. Nat managed to escape, hiding himself in the woods for over two months until he was found. Once captured, he was quickly tried, convicted, and hanged. His body was desecrated, flayed, and decapitated, with his headless remains buried in an unmarked grave. 30 other slaves, and 1 free black would also be convicted, 19 of them being hanged and the others sold to places far away. This punishment paled in comparison to those African Americans that were murdered by paranoid, vengeful whites. Upwards of 200 blacks were killed by mobs during and following the rebellion. In the aftermath, some whites, including Thomas Jefferson Randolph, grandson to the third President, called for gradual emancipation to remove slavery. Instead, what followed in Virginia were even harsher codes for blacks; no jury trials for African-Americans, free blacks found guilty of crimes could be sold into slavery, and it was now illegal to teach any black to read. Many other southern states followed suit. Nat Turner’s Rebellion was a product of over two centuries of oppression in Virginia. While the concentrated horror committed by those in the insurrection cannot be denied, the horrors inflicted upon them and their ancestors must remembered to begin to understand the event. It was a violent, abominable response to a violent, abominable system and it proved the age-old truth... Evil begets evil.
https://wn.com/Nat_Turner_The_Rebellion_That_Shook_The_South
The impact of Nat Turner's rebellion still felt today
4:05

The impact of Nat Turner's rebellion still felt today

  • Order:
  • Duration: 4:05
  • Uploaded Date: 25 Feb 2020
  • views: 51973
With freedom on his mind, Turner lead a group of slave through Southhampton to liberate themselves. WAVY 10's Tom Schaad reports.
https://wn.com/The_Impact_Of_Nat_Turner's_Rebellion_Still_Felt_Today
Nat Turner's Rebellion
3:08

Nat Turner's Rebellion

  • Order:
  • Duration: 3:08
  • Uploaded Date: 03 Dec 2021
  • views: 18423
Nat Turner was an educated and religious African American slave who claimed to hear commandments from God. Nat Turner's Rebellion was a violent insurrection against white slave owners, killing between 55 and 65 white people, but ultimately resulting in the death of three times as many slaves. The Daily Dose provides microlearning history documentaries like this one delivered to your inbox daily: https://dailydosenow.com Learn more: https://dailydosenow.com/nat-turners-rebellion/ Subscribe for daily emails: https://subscribe.dailydosenow.com/ Become a Patron: https://patreon.com/dailydosenow Follow us on social media: Twitter: https://twitter.com/TheDailyDose18 Facebook: https://www.facebook.com/thedailydosenow Click to subscribe on YouTube: https://www.youtube.com/channel/UCuYZAnKoZYXAKKpsi_-90Tg?sub_confirmation=1 #NatTurner #SlaveRebellion #Documentary #History #Biography Today's Daily Dose short history film covers Nat Turner's Rebellion, which led to the death of an estimated 55 to 65 whites and 160 black slaves. The filmmaker has included the original voice over script to further assist your understanding: Today on The Daily Dose, Nat Turner’s Rebellion. Born in 1800 on the Southampton Virginia plantation of Benjamin Turner, in a county where the number of slaves outnumbered white people, enslaved African American Nat Turner was allowed to be instructed in reading, writing and Christianity from an early age, where he was quickly assessed as having "natural intelligence and quickness of apprehension." As he grew older, Turner became a deeply religious man, often seen fasting, praying and studying the Bible. Sold three time during his childhood, by the age of twenty, Turner had become a local firebrand preacher and standout leader of his fellow slaves, claiming to have visions which he interpreted as direct messages from God. At age 21, he escaped from his current owner, Samuel Turner, returning a month later after becoming delirious from hunger, at the same time claiming that a second commandment from God had instructed him to "return to the service of my earthly master.” By the age of 30, Turner was convinced that he was chosen by God to lead his fellow slaves out of bondage, and after an eclipse of the sun convinced him that the time was now, he first enlisted four other slaves to conduct a violent insurrection, until they were forced to abort their attempt for a planned second try on August 21st, 1831. This time, Turner and six others killed the slave-owning Travis family, securing arms and horses before enlisting 75 additional slaves into a bloody insurrection that resulted in the murder of an estimated 55 to 65 white people. After the two-day killing spree was put down at Belmont Plantation, Turner managed to evade authorities for six weeks, during which time, militias and angry white mobs killed an estimated 160 slaves. After his capture, Turner was tried and hanged at Jerusalem Virginia, along with 16 of his followers. The bloody rebellion evoked swift action from state legislators, who passed strict laws prohibiting education for free and enslaved blacks alike, while requiring white ministers to be present at all black worship services held in the state. Turner’s rebellion put such fear in the hearts of Virginians, that it effectively extinguished any and all organized emancipation groups in the region, further deepening the divide between slave-holders and abolitionists, until the issue came to a head with the onset of Civil War. And there you have it, Nat Turner’s Rebellion, today on The Daily Dose.
https://wn.com/Nat_Turner's_Rebellion
Nat Turner's Slave Rebellion
1:58

Nat Turner's Slave Rebellion

  • Order:
  • Duration: 1:58
  • Uploaded Date: 15 Dec 2021
  • views: 29885
Nat Turner - known as the prophet in his enslaved community, led a violent uprising that changed everything. Untold is a free collection of short, compelling, history videos and animations designed to engage new audiences in a new conversation and shine a light on the stories that don’t always make it into the classroom and question what we think we know about those that do. Untold is here to fill in the gaps and bring new stories to life. Check out untoldhistory.org Follow Untold on Instagram: https://www.instagram.com/untoldedu/ Facebook: https://www.facebook.com/UntoldEdu Twitter: https://twitter.com/UntoldEdu
https://wn.com/Nat_Turner's_Slave_Rebellion
"Possession" - Nat Turner's Slave Rebellion 1831 - Short Film HD
8:49

"Possession" - Nat Turner's Slave Rebellion 1831 - Short Film HD

  • Order:
  • Duration: 8:49
  • Uploaded Date: 16 Jun 2018
  • views: 82384
Our Movie “The Red Badge of Courage” on Kickstarter! Just CLICK! https://www.kickstarter.com/projects/lionheartfilmworks/the-red-badge-of-courage-motion-picture Short film produced as part of the Richmond 48 Hour Film Festival. A short dramatic interpretation and moment of Nat Turner during his 1831 Slave Rebellion. An original short film starring Tyhm Kennedy as the legendary Virginian Nat Turner, this story touches on the brutal reality of the 1831 Southampton, Virginia Slave Revolt. https://www.facebook.com/Possession-the-Film-138238199529745/ Directed & Produced by: Kevin R. Hershberger Written by: Baron Blakley Costumes by: Historical Wardrobe Sound by: William Britt - Midnite Sound 🇺🇸👕🎖️** Find All Of Our Exclusive Patriotic & History-Oriented Merchandise Here - Every Sale Supports The Channel And Keeps Us "On The Air": https://teespring.com/stores/lionheart-filmworks ☕ If you appreciate our content and want to support us further, direct donations are always welcome at: https://www.buymeacoffee.com/lionheart PLEASE SUBSCRIBE, CLICK THE 'BELL' ICON FOR ALERTS ON NEW CONTENT - AND SHARE THIS VIDEO TO HELP US GROW AND KEEP HISTORY HAPPENING! http://www.lionheart-filmworks.com/store Some other videos you might like on our Channel: "Civil War Uniforms of Blue & Grey - The Evolution" Volume 2: https://www.youtube.com/watch?v=LqeT6g4iLew&t=29s "Civil War Uniforms of Blue & Grey - The Evolution" Volume 1: https://www.youtube.com/watch?v=n8MAlu2NEps&t=25s Battles For Atlanta Pt. 2 "Kennesaw Mountain”: https://www.youtube.com/watch?v=aulQvs3ZKqs 400 Evolution of the United States Army Uniform: https://www.youtube.com/watch?v=n3Q6RyDFAJI&t=21s Civil War - 1861 Col. Gilham's Confederate Musket Drill HD: https://www.youtube.com/watch?v=L9mADbpSWJs&t=4s Lt. Robert T. Waugh - 1944 Medal Of Honor Moment: https://www.youtube.com/watch?v=HwpJnAfoHCU&t=407s Civil War - 1862 U.S. Army Musket Drill HD: https://www.youtube.com/watch?v=KvFMzZ-mczE Medal of Honor Moment - Sergeant York: https://www.youtube.com/watch?v=ad9FWugOIyM #lionheartfilmworks #militaryhistory
https://wn.com/Possession_Nat_Turner's_Slave_Rebellion_1831_Short_Film_Hd
The true story of Nat Turner || STEVE HARVEY
1:40

The true story of Nat Turner || STEVE HARVEY

  • Order:
  • Duration: 1:40
  • Uploaded Date: 05 Oct 2016
  • views: 55092
Steve talks with Nate Parker, the man who wrote, directed, produced and starred in one of the most critically acclaimed and most powerful films of the year, “The Birth of a Nation.” Subscribe now to the STEVE HARVEY YouTube channel: http://bit.ly/1K5UsMy Find out where to watch in your city here: http://steveharveytv.com/watch/ Get more Steve Harvey! Facebook: http://www.facebook.com/SteveHarveyTV Instagram: http://www.instagram.com/iamsteveharveytv Twitter: http://www.twitter.com/IAmSteveHarvey Hulu: http://www.hulu.com/steve-harvey
https://wn.com/The_True_Story_Of_Nat_Turner_||_Steve_Harvey
Live Chat With Nat Turner CEO Of PSA Grading.
57:10

Live Chat With Nat Turner CEO Of PSA Grading.

  • Order:
  • Duration: 57:10
  • Uploaded Date: 18 Jul 2023
  • views: 4583
Nat's Instagram https://www.instagram.com/natsturner_cards/ *When you click on links to various merchants on this site and make a purchase, this can result in this site earning a commission. Affiliate programs and affiliations include, but are not limited to, the eBay Partner Network.* https://www.ebay.com/usr/pokeknowledge?mkcid=1&mkrid=711-53200-19255-0&siteid=0&campid=5338966018&customid=PokeKnowledge&toolid=10001&mkevt=1 Follow my Instagram or to contact me https://www.instagram.com/pokeknowledge/?igshid=YmMyMTA2M2Y%3D
https://wn.com/Live_Chat_With_Nat_Turner_Ceo_Of_Psa_Grading.
The Birth of a Nation 'Nat Turner  American Revolutionary' Featurette (2016)
4:02

The Birth of a Nation 'Nat Turner American Revolutionary' Featurette (2016)

  • Order:
  • Duration: 4:02
  • Uploaded Date: 18 Sep 2016
  • views: 261661
The Birth of a Nation - Featurette 'Nat Turner, American Revolutionary' Nat Turner, a literate slave and preacher in the antebellum South, orchestrates an uprising. Some of the best and most funniest movie moments happen behind the scenes. FilmIsNow Movie Extras channel gives you the latest and best behind the scenes footage, bloopers, interviews, featurettes, deleted/alternate scenes. We give you the before, during and after that goes into making movies.
https://wn.com/The_Birth_Of_A_Nation_'Nat_Turner_American_Revolutionary'_Featurette_(2016)
The Israelites: NAT TURNER DOCUMENTARY  [OFFICIAL]
1:19:59

The Israelites: NAT TURNER DOCUMENTARY [OFFICIAL]

  • Order:
  • Duration: 1:19:59
  • Uploaded Date: 20 May 2017
  • views: 93337
Israel United in Christ is a Biblical Organization that teaches the Gospel of Repentance from Sin to Our People scattered around the world as a Result of Disobedience to God’s Commandments. When you consider the plight of our people, it is one of turmoil and trauma. Our People, the Israelites suffer from a wide range of issues from Self Hatred, and Domestic Violence, to Mass Incarceration and Economic Exploitation... However, The Bible has the Solution to Our People’s Problems. For more information: https://israelunite.org/ Contact # (855) 484-4842Ext. 723 Contact Person: Deacon Asaph Address: 44 South West, Mount Vernon NY 10550 For more videos go to: http://israelunite.org/videos Facebook: https://www.facebook.com/israelunited.inchrist/ Podcast: http://www.iuicpodcast.com/ Instagram: https://www.instagram.com/israelunitedinchrist/ Twitter: https://twitter.com/iuicofficial?lang=en Periscope: https://www.periscope.tv/IsraelUnitedInChrist/1YpJkNByDQEGj Music: https://originalroyaltyrecordings.com/ Merchandise: http://OriginalRoyalty.com/
https://wn.com/The_Israelites_Nat_Turner_Documentary_Official
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Looking at Nat Turner's Legacy | Explorer
    2:21
    Looking at Nat Turner's Legacy | Explorerremove from playlist
  • Nat Turner & The Rebellion That Shook the South
    6:14
    Nat Turner & The Rebellion That Shook the Southremove from playlist
  • The impact of Nat Turner's rebellion still felt today
    4:05
    The impact of Nat Turner's rebellion still felt todayremove from playlist
  • Nat Turner's Rebellion
    3:08
    Nat Turner's Rebellionremove from playlist
  • Nat Turner's Slave Rebellion
    1:58
    Nat Turner's Slave Rebellionremove from playlist
  • 8:49
    "Possession" - Nat Turner's Slave Rebellion 1831 - Short Film HDremove from playlist
  • The true story of Nat Turner || STEVE HARVEY
    1:40
    The true story of Nat Turner || STEVE HARVEYremove from playlist
  • Live Chat With Nat Turner CEO Of PSA Grading.
    57:10
    Live Chat With Nat Turner CEO Of PSA Grading.remove from playlist
  • The Birth of a Nation 'Nat Turner  American Revolutionary' Featurette (2016)
    4:02
    The Birth of a Nation 'Nat Turner American Revolutionary' Featurette (2016)remove from playlist
  • The Israelites: NAT TURNER DOCUMENTARY  [OFFICIAL]
    1:19:59
    The Israelites: NAT TURNER DOCUMENTARY [OFFICIAL]remove from playlist
developed with YouTube
PLAYLIST TIME:

Looking at Nat Turner's Legacy | Explorer

Though he was sentenced to death, Nat Turner's resistance to slavery remains relevant to this day. ➡ Subscribe: http://bit.ly/NatGeoSubscribe ➡ Watch all clips of Explorer here: http://bit.ly/WatchExplorer ➡ Get More Explorer: https://on.natgeo.com/2kjK3ZO About Explorer: Explorer, the longest-running documentary series in cable television history, honored with nearly 60 Emmys and hundreds of other awards, continues as a series of major specials on the National Geographic Channel. In the course of more than two thousand films, Explorer has taken viewers to more than 120 countries, opening a window on hidden parts of the world, unlocking mysteries both ancient and modern, and investigating stories of science, nature, and culture. Get More National Geographic: Official Site: http://bit.ly/NatGeoOfficialSite Facebook: http://bit.ly/FBNatGeo Twitter: http://bit.ly/NatGeoTwitter Instagram: http://bit.ly/NatGeoInsta About National Geographic National Geographic is the world's premium destination for science, exploration, and adventure. Through their world-class scientists, photographers, journalists, and filmmakers, Nat Geo gets you closer to the stories that matter and past the edge of what's possible. Looking at Nat Turner's Legacy | Explorer https://youtu.be/ZrRBGGVTM38 National Geographic https://www.youtube.com/natgeo
2:21
Looking at Nat Turner's Legacy | Explorer
Though he was sentenced to death, Nat Turner's resistance to slavery remains relevant to t...
published: 14 May 2017
Play in Full Screen
6:14
Nat Turner & The Rebellion That Shook the South
In 1831, a slave rebellion led by #NatTurner shook the South to its core. In its wake, the...
published: 06 Dec 2018
Play in Full Screen
4:05
The impact of Nat Turner's rebellion still felt today
With freedom on his mind, Turner lead a group of slave through Southhampton to liberate th...
published: 25 Feb 2020
Play in Full Screen
3:08
Nat Turner's Rebellion
Nat Turner was an educated and religious African American slave who claimed to hear comman...
published: 03 Dec 2021
Play in Full Screen
1:58
Nat Turner's Slave Rebellion
Nat Turner - known as the prophet in his enslaved community, led a violent uprising that ...
published: 15 Dec 2021
Play in Full Screen
8:49
"Possession" - Nat Turner's Slave Rebellion 1831 - Short Film HD
Our Movie “The Red Badge of Courage” on Kickstarter! Just CLICK! https://www.kickstarter.c...
published: 16 Jun 2018
Play in Full Screen
1:40
The true story of Nat Turner || STEVE HARVEY
Steve talks with Nate Parker, the man who wrote, directed, produced and starred in one of ...
published: 05 Oct 2016
Play in Full Screen
57:10
Live Chat With Nat Turner CEO Of PSA Grading.
Nat's Instagram https://www.instagram.com/natsturner_cards/ *When you click on links to ...
published: 18 Jul 2023
Play in Full Screen
4:02
The Birth of a Nation 'Nat Turner American Revolutionary' Featurette (2016)
The Birth of a Nation - Featurette 'Nat Turner, American Revolutionary' Nat Turner, a lite...
published: 18 Sep 2016
Play in Full Screen
1:19:59
The Israelites: NAT TURNER DOCUMENTARY [OFFICIAL]
Israel United in Christ is a Biblical Organization that teaches the Gospel of Repentance f...
published: 20 May 2017
Play in Full Screen

Nat Turner

Nat Turner (October 2, 1800 – November 11, 1831) was an African-American slave who led a rebellion of slaves and free blacks in Southampton County, Virginia on August 21, 1831, that resulted in the deaths of at least fifty white people and at least 200 black people.

Turner led a group of slaves carrying farm implements in a rebellion against slavery. As they went from plantation to plantation they gathered horses, guns, freed other slaves along the way, and recruited other blacks that wanted to join their revolt. During the rebellion, Virginia legislators targeted free blacks with a colonization bill, which allocated new funding to remove them, and a police bill that denied free blacks trials by jury and made any free blacks convicted of a crime subject to sale and relocation. Whites organized militias and called out regular troops to suppress the rising. In addition, white militias and mobs attacked blacks in the area, killing an estimated 200, many of whom were not involved in the revolt.

'); } 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: nat turner

Edit

Christmas: The Good, the Bad and the Ugly

The Philadelphia Tribune 20 Dec 2024
At the outset, I must mention that, although I am not a Christian, I respect Christianity. I also respect Christians, primarily because the rebel Nat Turner was one as was the agitator MLK. In other words, I respect what “pro-Black” ....
Edit

Berlin Conference 140 Years Later

GlobalResearch 05 Dec 2024
notable rebellions such as on the Louisiana German Coast of 1811; Denmark Vessey in Charleston, South Carolina during 1822; Nat Turner and his comrades in South Hampton County, Virginia in 1831; John ...
Edit

Mini-concert review: Talib Kweli powerful, topical at Lark Hall

Times Union 24 Nov 2024
He showed that his political edge remains intact, prefacing the global liberation anthem “Nat Turner” with a dedication to “all the oppressed people, because we elected a fascist racist for ...
Edit

‘Decolonization’ Is Not About Equality, by Gregory Hood

The Unz Review 22 Nov 2024
From Chicano activists in the Southwest celebrating the savage Aztec heritage, to blacks putting up monuments to Nat Turner, to the behavior of many Muslims in Europe, non-whites always seem to be at ...
Edit

FOX45: Baltimore reparations committee appointee won’t celebrate Thanksgiving, once blamed white women for perpetuating white supremacy

Baltimore Sun 21 Nov 2024
Winbush wrote on X that he refuses to celebrate what he calls “Thankstaking,” claiming white people need to celebrate the Nat Turner slave rebellion before he considers celebrating the holiday.
Edit

Juan Soto finally got what he wanted from Hal Steinbrenner in Yankees free agency meeting

New York Post 21 Nov 2024
4. The Yankees met with Juan Soto this week. Robert Sabo for NY Post ... ESPN insider Adam Schefter's wife 'didn't appreciate' breaking news sex story ... 4 ... 1 ... Soto likes hitting coach Kevin Long, Bryce Harper and Trea Turner from Nats days.
Edit

GameStop Appoints Nat Turner to Board of Directors

Nasdaq Globe Newswire 18 Nov 2024
GRAPEVINE, Texas, Nov. 18, 2024 (GLOBE NEWSWIRE) -- GameStop Corp. (NYSE. GME) (“GameStop” or the “Company”) today announced that Nat Turner, Chairman and CEO of Collectors Holdings, Inc., has been appointed to the Company’s Board of Directors ... .
Edit

BIBLE VERSE

Evening Times 11 Nov 2024
On This Day in. ... The compact called for 'just and equal laws.'. 1831 – Nat Turner, a slave and educated minister, was hanged in Jerusalem, VA, after inciting a violent slave uprising ... Merriman ... President Harding ... 1966 – The U.S ... .
Edit

NAT’L WINNER!

HT 30 Oct 2024
Simpson is a cousin of Meeker native Molly Turner and the rest of ...
Edit

UVA professor and historian to deliver lunchtime talk at William & Mary

Daily Press 30 Oct 2024
on his research on the Blow Family Papers and the 1831 revolt of Nat Turner ... At the lunch, Taylor will speak “briefly about Nat Turner, but will primarily talk about some of the enslaved people at ...
Edit

TODAY IN HISTORY

Evening Times 30 Oct 2024
On this day in. ... His son became the sixth President of the U.S ... 1831 – Escaped slave Nat Turner was apprehended in Southampton County, VA, several weeks after leading the bloodiest slave uprising in American history ... 1893 – The U.S ... 1945 – The U.S ... .
Edit

Yankees superstar urged to cut ties in NY to sign mega deal with Phillies

Sportingnews 29 Oct 2024
"In fact, so were Trea Turner and Kyle Schwarber. The Philadelphia Phillies have made a habit of poaching former Nats and winning big as a result ... "With Harper and Turner on the recruitment front and a ...
Edit

Report: Green Party candidate Jill Stein’s running mate celebrated the Oct. 7 attack on Israel

Jewish Telegraph Agency 29 Oct 2024
7 attack, he posted a video of himself characterizing Hamas’ invasion of Israel, in which about 1,200 people were killed and more than 250 abducted, as “the modern equivalent of Nat Turner’s ...
Edit

Why Many Black Americans Feel Solidarity With Palestinians

The Atlantic 29 Oct 2024
Given all this, when Black folks who were raised on stories of lynchings and the threat of obliteration—stories of the Tulsa Massacre, of the quelling of Nat Turner’s Rebellion, of the Red Summer—look ...
Edit

New Haven rejected plans for a Black college in 1831. Generations later, it's considering an apology

Times Union 27 Oct 2024
He died suddenly at his home on Oct ... Around the time of Jocelyn's speech at the church, the news of Nat Turner's violent slave rebellion in Virginia had reached the city ... Scores of Black people were killed in retribution, and Turner was later executed.

Most Viewed

×