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

Bushrod Washington

Bushrod Washington (June 5, 1762 – November 26, 1829) was an attorney and politician, appointed as Associate Justice of the Supreme Court of the United States, where he served for more than 30 years. He was among the founders of the American Colonization Society in 1816, intended to promote emigration of freed slaves and free blacks to a colony in Africa, and served as its president. The nephew of American founding father and President George Washington, he inherited his papers and Mount Vernon, taking possession in 1802 after the death of widow Martha Washington.

Early life

Bushrod Washington was born on June 5, 1762, at Bushfield Manor, a plantation home located at Mount Holly in Westmoreland County, Virginia. He was a son of John Augustine Washington (1730-1787), the brother of George Washington, and John's wife, Hannah Bushrod (1735-1801).

Washington graduated from the College of William & Mary in 1778 and as an alumnus became in 1780 the 41st member of Phi Beta Kappa. After beginning with John Marshall the study of law under George Wythe in 1780, he joined the Continental Army during 1781 and served as a private in the army until 1782.

Podcasts:

  • Bushrod Washington and the American Colonization Society

    Bushrod Washington was the only OTHER member of the Washington Family to have a significant impact on the Federal Government. Here is an article I wrote about Bushrod: https://www.founderoftheday.com/founder-of-the-day/bushrod-washington Patron: https://www.patreon.com/FounderoftheDay PayPal: https://www.paypal.com/paypalme/founderoftheday Merch: https://www.founderoftheday.com/shop Facebook: https://www.facebook.com/founderoftheday/ Twitter: https://twitter.com/founderoftheday/ Instagram: https://www.instagram.com/founderoftheday/ Email me at jason@founderoftheday.com

    published: 15 Nov 2021
  • Washington's Heir: The Life of Justice Bushrod Washington

    A talk by author and professor of law Gerard N. Magliocca on the first published biography of Bushrod Washington, the nephew of Founding Father George Washington and an attorney and politician who served on the Supreme Court of the United States. In "Washington's Heir: The Life of Justice Bushrod Washington," Magliocca draws on his research as a fellow at the Washington Library at Mount Vernon to tell the story of Justice Washington, through which new perspectives on George Washington and Chief Justice John Marshall also emerge.

    published: 19 May 2022
  • Bushrod Washington | Wikipedia audio article

    This is an audio version of the Wikipedia Article: Bushrod Washington 00:00:42 1 Early life 00:01:48 2 Political and judicial career 00:03:18 3 Residences 00:04:32 4 Society memberships 00:05:21 5 Death and interment 00:05:51 6 Legacy and honors 00:06:11 7 Notes 00:06:19 8 Further reading 00:08:41 9 External links Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You ...

    published: 05 Dec 2018
  • Unrealestate - Bushrod Washington

    An outtake of Eli Elkus of Bushrod Washington performing "Unrealestate" at Rocking Horse Studios.

    published: 18 Feb 2013
  • Bushrod Washington

    If you find our videos helpful you can support us by buying something from amazon. https://www.amazon.com/?tag=wiki-audio-20 Bushrod Washington Bushrod Washington (June 5, 1762 – November 26, 1829) was an attorney and politician, appointed as Associate Justice of the Supreme Court of the United States, where he served for more than 30 years.He was among the founders of the American Colonization Society in 1816, intended to promote emigration of freed slaves and free blacks to a colony in Africa, and served as its president. =======Image-Copyright-Info======= Image is in public domainImage Source: https://en.wikipedia.org/wiki/File:BushrodWashington.jpg =======Image-Copyright-Info======== -Video is targeted to blind users Attribution: Article text available under CC-BY-SA image sou...

    published: 22 Jan 2016
  • Richard Brookhiser on John Marshall and George Washington

    Author Richard Brookhiser sits down with the executive director of the Washington library, Kevin Butterfield, to discuss his latest book "John Marshall: The Man Who Made The Supreme Court". In addition, Brookhiser talks about the unique relationship between John Marshall and George Washington, and the impact Washington had on his life.

    published: 30 Nov 2018
  • Bushrod Washington Class Valedictorian | Rita Jackman | Cooley Law School

    Thomas M. Cooley Law School September 2012 Graduation The Bushrod Washington Class commencement was Sept. 23, 2012 at the Breslin Center, East Lansing, MI.

    published: 04 Oct 2012
  • Washington's Heir: The Life of Justice Bushrod… by Gerard N. Magliocca · Audiobook preview

    PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAECCFChUuM Washington's Heir: The Life of Justice Bushrod Washington Authored by Gerard N. Magliocca Narrated by Paul Heitsch 0:00 Intro 0:03 0:34 6:32 25:03 49:08 Outro #gerardnmagliocca #washingtonsheirthelifeofjusticebushrodwashington — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION The first biography of George Washington's extraordinary nephew, who inherited Mount Vernon and was Chief Justice John Marshall's right-hand man on the Su...

    published: 21 Feb 2024
  • A Supreme Court Justice in Philadelphia: 1782-1829

    Bushrod Washington served on the United States Supreme Court for over thirty years. As George Washington's nephew, he lived at Mount Vernon, though Philadelphia was his second home. He studied law in Philadelphia during the 1780s and stayed in the city for a few months each year from 1800 until 1829, conducting trials and hearing appeals. During those visits Washington forged deep friendships with Philadelphia’s leading figures, including Elizabeth Powel, who was one of the most politically active women of her time. In this webinar, Gerard Magliocca, Samuel R. Rosen Professor at the Indiana University Robert H. McKinney School of Law and author of Washington’s Heir: The Life of Justice Bushrod Washington, discusses Washington's noteworthy life and about a trial over which he presided: Unit...

    published: 06 Jun 2022
  • Washington's Heir: The Life of Justice Bushrod Washington by Gerard N. Magliocca

    Please visit https://thebookvoice.com/podcasts/1/audiobook/594978 to listen full audiobooks. Title: Washington's Heir: The Life of Justice Bushrod Washington Author: Gerard N. Magliocca Narrator: Paul Heitsch Format: Unabridged Audiobook Length: 8 hours 10 minutes Release date: August 16, 2022 Genres: Current Affairs, Law, & Politics Publisher's Summary: The first biography of George Washington's extraordinary nephew, who inherited Mount Vernon and was Chief Justice John Marshall's right-hand man on the Supreme Court for nearly thirty years. In Washington's Heir, Gerard N. Magliocca gives us the first published biography of Bushrod Washington, one of the most underrated Founding Fathers. Born in 1762, Justice Washington fought in the Revolutionary War, served in Virginia's ratifying conve...

    published: 14 Dec 2024
Bushrod Washington and the American Colonization Society
9:49

Bushrod Washington and the American Colonization Society

  • Order:
  • Duration: 9:49
  • Uploaded Date: 15 Nov 2021
  • views: 283
Bushrod Washington was the only OTHER member of the Washington Family to have a significant impact on the Federal Government. Here is an article I wrote about Bushrod: https://www.founderoftheday.com/founder-of-the-day/bushrod-washington Patron: https://www.patreon.com/FounderoftheDay PayPal: https://www.paypal.com/paypalme/founderoftheday Merch: https://www.founderoftheday.com/shop Facebook: https://www.facebook.com/founderoftheday/ Twitter: https://twitter.com/founderoftheday/ Instagram: https://www.instagram.com/founderoftheday/ Email me at jason@founderoftheday.com
https://wn.com/Bushrod_Washington_And_The_American_Colonization_Society
Washington's Heir: The Life of Justice Bushrod Washington
59:22

Washington's Heir: The Life of Justice Bushrod Washington

  • Order:
  • Duration: 59:22
  • Uploaded Date: 19 May 2022
  • views: 364
A talk by author and professor of law Gerard N. Magliocca on the first published biography of Bushrod Washington, the nephew of Founding Father George Washington and an attorney and politician who served on the Supreme Court of the United States. In "Washington's Heir: The Life of Justice Bushrod Washington," Magliocca draws on his research as a fellow at the Washington Library at Mount Vernon to tell the story of Justice Washington, through which new perspectives on George Washington and Chief Justice John Marshall also emerge.
https://wn.com/Washington's_Heir_The_Life_Of_Justice_Bushrod_Washington
Bushrod Washington | Wikipedia audio article
9:02

Bushrod Washington | Wikipedia audio article

  • Order:
  • Duration: 9:02
  • Uploaded Date: 05 Dec 2018
  • views: 199
This is an audio version of the Wikipedia Article: Bushrod Washington 00:00:42 1 Early life 00:01:48 2 Political and judicial career 00:03:18 3 Residences 00:04:32 4 Society memberships 00:05:21 5 Death and interment 00:05:51 6 Legacy and honors 00:06:11 7 Notes 00:06:19 8 Further reading 00:08:41 9 External links Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone. You can find other Wikipedia audio articles too at: https://www.youtube.com/channel/UCuKfABj2eGyjH3ntPxp4YeQ You can upload your own Wikipedia articles through: https://github.com/nodef/wikipedia-tts "The only true wisdom is in knowing you know nothing." - Socrates SUMMARY ======= Bushrod Washington (June 5, 1762 – November 26, 1829) was an attorney and politician who served as Associate Justice of the Supreme Court of the United States from 1798 to 1829. On the Supreme Court, he was a staunch ally of Chief Justice John Marshall. Washington was also a co-founder and the president of the American Colonization Society, which intended to promote emigration of freed slaves and free blacks to Africa. The nephew of American founding father and President George Washington, he inherited his uncle's papers and Mount Vernon, taking possession in 1802 after the death of Martha Washington, his uncle's widow.
https://wn.com/Bushrod_Washington_|_Wikipedia_Audio_Article
Unrealestate - Bushrod Washington
3:36

Unrealestate - Bushrod Washington

  • Order:
  • Duration: 3:36
  • Uploaded Date: 18 Feb 2013
  • views: 712
An outtake of Eli Elkus of Bushrod Washington performing "Unrealestate" at Rocking Horse Studios.
https://wn.com/Unrealestate_Bushrod_Washington
Bushrod Washington
6:05

Bushrod Washington

  • Order:
  • Duration: 6:05
  • Uploaded Date: 22 Jan 2016
  • views: 191
If you find our videos helpful you can support us by buying something from amazon. https://www.amazon.com/?tag=wiki-audio-20 Bushrod Washington Bushrod Washington (June 5, 1762 – November 26, 1829) was an attorney and politician, appointed as Associate Justice of the Supreme Court of the United States, where he served for more than 30 years.He was among the founders of the American Colonization Society in 1816, intended to promote emigration of freed slaves and free blacks to a colony in Africa, and served as its president. =======Image-Copyright-Info======= Image is in public domainImage Source: https://en.wikipedia.org/wiki/File:BushrodWashington.jpg =======Image-Copyright-Info======== -Video is targeted to blind users Attribution: Article text available under CC-BY-SA image source in video https://www.youtube.com/watch?v=WsgtN1AOxWs
https://wn.com/Bushrod_Washington
Richard Brookhiser on John Marshall and George Washington
4:51

Richard Brookhiser on John Marshall and George Washington

  • Order:
  • Duration: 4:51
  • Uploaded Date: 30 Nov 2018
  • views: 1010
Author Richard Brookhiser sits down with the executive director of the Washington library, Kevin Butterfield, to discuss his latest book "John Marshall: The Man Who Made The Supreme Court". In addition, Brookhiser talks about the unique relationship between John Marshall and George Washington, and the impact Washington had on his life.
https://wn.com/Richard_Brookhiser_On_John_Marshall_And_George_Washington
Bushrod Washington Class Valedictorian | Rita Jackman | Cooley Law School
7:36

Bushrod Washington Class Valedictorian | Rita Jackman | Cooley Law School

  • Order:
  • Duration: 7:36
  • Uploaded Date: 04 Oct 2012
  • views: 676
Thomas M. Cooley Law School September 2012 Graduation The Bushrod Washington Class commencement was Sept. 23, 2012 at the Breslin Center, East Lansing, MI.
https://wn.com/Bushrod_Washington_Class_Valedictorian_|_Rita_Jackman_|_Cooley_Law_School
Washington's Heir: The Life of Justice Bushrod… by Gerard N. Magliocca · Audiobook preview
49:29

Washington's Heir: The Life of Justice Bushrod… by Gerard N. Magliocca · Audiobook preview

  • Order:
  • Duration: 49:29
  • Uploaded Date: 21 Feb 2024
  • views: 19
PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAECCFChUuM Washington's Heir: The Life of Justice Bushrod Washington Authored by Gerard N. Magliocca Narrated by Paul Heitsch 0:00 Intro 0:03 0:34 6:32 25:03 49:08 Outro #gerardnmagliocca #washingtonsheirthelifeofjusticebushrodwashington — GOOGLE PLAY BOOKS Find your next great read with Google Play Books. Google Play Books is a global digital bookstore offering ebooks, audiobooks, comics, and manga. Discover book recommendations personalized just for you. Get the iOS app: https://goo.gle/books-ios Get the Android app: https://goo.gle/books-android — BOOK DESCRIPTION The first biography of George Washington's extraordinary nephew, who inherited Mount Vernon and was Chief Justice John Marshall's right-hand man on the Supreme Court for nearly thirty years. In Washington's Heir, Gerard N. Magliocca gives us the first published biography of Bushrod Washington, one of the most underrated Founding Fathers. Born in 1762, Justice Washington fought in the Revolutionary War, served in Virginia's ratifying convention for the Constitution, and was Chief Justice John Marshall's partner in establishing the authority of the Supreme Court. Though he could only see from one eye, Justice Washington wrote many landmark decisions defining the fundamental rights of citizens and the structure of the Constitution, including Corfield v. Coryell-an influential source for the Congress that proposed the Fourteenth Amendment. As George Washington's personal heir, Bushrod inherited both Mount Vernon and the family legacy of owning other people, one of whom was almost certainly his half-brother or nephew. Yet Justice Washington alone among the Founders was criticized by journalists for selling enslaved people and, in turn, issued a public defense of his actions that laid bare the hypocrisy and cruelty of slavery. — ABOUT THE AUTHOR Gerard N. Magliocca is the Samuel R. Rosen Professor at the Indiana University Robert H. McKinney School of Law. He received his undergraduate degree at Stanford, his law degree at Yale, and spent one year as a law clerk for Judge Guido Calabresi on the United States Court of Appeals for the Second Circuit. Paul Heitsch has been narrating audiobooks since 2011, after having worked as a pianist, composer, recording engineer, producer, and sound designer for many years. His work is often cited for the authenticity he brings to the narrative and characters he portrays, as well as his versatility, and clear, smooth delivery. — AUDIOBOOK DETAILS Purchase on Google Play Books ►► https://g.co/booksYT/AQAAAECCFChUuM Language: English Publisher: Tantor Media Inc Published on: August 16, 2022 ISBN: 9798765036761 Duration: 8 hr, 11 min Genres: Biography & Autobiography / Lawyers & Judges, History / United States / Revolutionary Period (1775-1800), Law / Legal History
https://wn.com/Washington's_Heir_The_Life_Of_Justice_Bushrod…_By_Gerard_N._Magliocca_·_Audiobook_Preview
A Supreme Court Justice in Philadelphia: 1782-1829
1:00:50

A Supreme Court Justice in Philadelphia: 1782-1829

  • Order:
  • Duration: 1:00:50
  • Uploaded Date: 06 Jun 2022
  • views: 102
Bushrod Washington served on the United States Supreme Court for over thirty years. As George Washington's nephew, he lived at Mount Vernon, though Philadelphia was his second home. He studied law in Philadelphia during the 1780s and stayed in the city for a few months each year from 1800 until 1829, conducting trials and hearing appeals. During those visits Washington forged deep friendships with Philadelphia’s leading figures, including Elizabeth Powel, who was one of the most politically active women of her time. In this webinar, Gerard Magliocca, Samuel R. Rosen Professor at the Indiana University Robert H. McKinney School of Law and author of Washington’s Heir: The Life of Justice Bushrod Washington, discusses Washington's noteworthy life and about a trial over which he presided: United States v. Bright. This case sharply divided Philadelphia and threatened to shake the Constitutional foundations of the Union long before the Civil War.
https://wn.com/A_Supreme_Court_Justice_In_Philadelphia_1782_1829
Washington's Heir: The Life of Justice Bushrod Washington by Gerard N. Magliocca
30:05

Washington's Heir: The Life of Justice Bushrod Washington by Gerard N. Magliocca

  • Order:
  • Duration: 30:05
  • Uploaded Date: 14 Dec 2024
  • views: 1
Please visit https://thebookvoice.com/podcasts/1/audiobook/594978 to listen full audiobooks. Title: Washington's Heir: The Life of Justice Bushrod Washington Author: Gerard N. Magliocca Narrator: Paul Heitsch Format: Unabridged Audiobook Length: 8 hours 10 minutes Release date: August 16, 2022 Genres: Current Affairs, Law, & Politics Publisher's Summary: The first biography of George Washington's extraordinary nephew, who inherited Mount Vernon and was Chief Justice John Marshall's right-hand man on the Supreme Court for nearly thirty years. In Washington's Heir, Gerard N. Magliocca gives us the first published biography of Bushrod Washington, one of the most underrated Founding Fathers. Born in 1762, Justice Washington fought in the Revolutionary War, served in Virginia's ratifying convention for the Constitution, and was Chief Justice John Marshall's partner in establishing the authority of the Supreme Court. Though he could only see from one eye, Justice Washington wrote many landmark decisions defining the fundamental rights of citizens and the structure of the Constitution, including Corfield v. Coryell—an influential source for the Congress that proposed the Fourteenth Amendment. As George Washington's personal heir, Bushrod inherited both Mount Vernon and the family legacy of owning other people, one of whom was almost certainly his half-brother or nephew. Yet Justice Washington alone among the Founders was criticized by journalists for selling enslaved people and, in turn, issued a public defense of his actions that laid bare the hypocrisy and cruelty of slavery.
https://wn.com/Washington's_Heir_The_Life_Of_Justice_Bushrod_Washington_By_Gerard_N._Magliocca
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Bushrod Washington and the American Colonization Society
    9:49
    Bushrod Washington and the American Colonization Societyremove from playlist
  • Washington's Heir: The Life of Justice Bushrod Washington
    59:22
    Washington's Heir: The Life of Justice Bushrod Washingtonremove from playlist
  • Bushrod Washington | Wikipedia audio article
    9:02
    Bushrod Washington | Wikipedia audio articleremove from playlist
  • Unrealestate - Bushrod Washington
    3:36
    Unrealestate - Bushrod Washingtonremove from playlist
  • Bushrod Washington
    6:05
    Bushrod Washingtonremove from playlist
  • Richard Brookhiser on John Marshall and George Washington
    4:51
    Richard Brookhiser on John Marshall and George Washingtonremove from playlist
  • Bushrod Washington Class Valedictorian | Rita Jackman | Cooley Law School
    7:36
    Bushrod Washington Class Valedictorian | Rita Jackman | Cooley Law Schoolremove from playlist
  • Washington's Heir: The Life of Justice Bushrod… by Gerard N. Magliocca · Audiobook preview
    49:29
    Washington's Heir: The Life of Justice Bushrod… by Gerard N. Magliocca · Audiobook previewremove from playlist
  • A Supreme Court Justice in Philadelphia: 1782-1829
    1:00:50
    A Supreme Court Justice in Philadelphia: 1782-1829remove from playlist
  • Washington's Heir: The Life of Justice Bushrod Washington by Gerard N. Magliocca
    30:05
    Washington's Heir: The Life of Justice Bushrod Washington by Gerard N. Maglioccaremove from playlist
PLAYLIST TIME: 0:00 / 4:00:45

Bushrod Washington and the American Colonization Society

Bushrod Washington was the only OTHER member of the Washington Family to have a significant impact on the Federal Government. Here is an article I wrote about Bushrod: https://www.founderoftheday.com/founder-of-the-day/bushrod-washington Patron: https://www.patreon.com/FounderoftheDay PayPal: https://www.paypal.com/paypalme/founderoftheday Merch: https://www.founderoftheday.com/shop Facebook: https://www.facebook.com/founderoftheday/ Twitter: https://twitter.com/founderoftheday/ Instagram: https://www.instagram.com/founderoftheday/ Email me at jason@founderoftheday.com
9:49
Bushrod Washington and the American Colonization Society
Bushrod Washington was the only OTHER member of the Washington Family to have a significan...
published: 15 Nov 2021
Play in Full Screen
59:22
Washington's Heir: The Life of Justice Bushrod Washington
A talk by author and professor of law Gerard N. Magliocca on the first published biography...
published: 19 May 2022
Play in Full Screen
9:02
Bushrod Washington | Wikipedia audio article
This is an audio version of the Wikipedia Article: Bushrod Washington 00:00:42 1 Ear...
published: 05 Dec 2018
Play in Full Screen
3:36
Unrealestate - Bushrod Washington
An outtake of Eli Elkus of Bushrod Washington performing "Unrealestate" at Rocking Horse S...
published: 18 Feb 2013
Play in Full Screen
6:05
Bushrod Washington
If you find our videos helpful you can support us by buying something from amazon. https:/...
published: 22 Jan 2016
Play in Full Screen
4:51
Richard Brookhiser on John Marshall and George Washington
Author Richard Brookhiser sits down with the executive director of the Washington library,...
published: 30 Nov 2018
Play in Full Screen
7:36
Bushrod Washington Class Valedictorian | Rita Jackman | Cooley Law School
Thomas M. Cooley Law School September 2012 Graduation The Bushrod Washington Class commenc...
published: 04 Oct 2012
Play in Full Screen
49:29
Washington's Heir: The Life of Justice Bushrod… by Gerard N. Magliocca · Audiobook preview
PURCHASE ON GOOGLE PLAY BOOKS ►► https://g.co/booksYT/AQAAAECCFChUuM Washington's Heir: T...
published: 21 Feb 2024
Play in Full Screen
1:00:50
A Supreme Court Justice in Philadelphia: 1782-1829
Bushrod Washington served on the United States Supreme Court for over thirty years. As Geo...
published: 06 Jun 2022
Play in Full Screen
30:05
Washington's Heir: The Life of Justice Bushrod Washington by Gerard N. Magliocca
Please visit https://thebookvoice.com/podcasts/1/audiobook/594978 to listen full audiobook...
published: 14 Dec 2024
Play in Full Screen

Bushrod Washington

Bushrod Washington (June 5, 1762 – November 26, 1829) was an attorney and politician, appointed as Associate Justice of the Supreme Court of the United States, where he served for more than 30 years. He was among the founders of the American Colonization Society in 1816, intended to promote emigration of freed slaves and free blacks to a colony in Africa, and served as its president. The nephew of American founding father and President George Washington, he inherited his papers and Mount Vernon, taking possession in 1802 after the death of widow Martha Washington.

Early life

Bushrod Washington was born on June 5, 1762, at Bushfield Manor, a plantation home located at Mount Holly in Westmoreland County, Virginia. He was a son of John Augustine Washington (1730-1787), the brother of George Washington, and John's wife, Hannah Bushrod (1735-1801).

Washington graduated from the College of William & Mary in 1778 and as an alumnus became in 1780 the 41st member of Phi Beta Kappa. After beginning with John Marshall the study of law under George Wythe in 1780, he joined the Continental Army during 1781 and served as a private in the army until 1782.

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