- published: 25 Mar 2023
- views: 881413
'+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; })); }); -->
John Adams (October 30 [O.S. October 19] 1735 – July 4, 1826) was an American lawyer, author, statesman, and diplomat. He served as the second President of the United States (1797–1801), the first Vice President (1789–97), and as a Founding Father was a leader of American independence from Great Britain. Adams was a political theorist in the Age of Enlightenment who promoted republicanism and a strong central government. His innovative ideas were frequently published. He was also a dedicated diarist and correspondent, particularly with his wife and key advisor Abigail.
He collaborated with his cousin, revolutionary leader Samuel Adams, but he established his own prominence prior to the American Revolution. After the Boston Massacre, despite severe local anti-British sentiment, he provided a successful though unpopular legal defense of the accused British soldiers, driven by his devotion to the right to counsel and the "protect[ion] of innocence". As a delegate from Massachusetts to the Continental Congress, Adams played a leading role in persuading Congress to declare independence. He assisted Thomas Jefferson in drafting the Declaration of Independence in 1776, and was its foremost advocate in the Congress. As a diplomat in Europe, he helped negotiate the eventual peace treaty with Great Britain, and acquired vital governmental loans from Amsterdam bankers. Adams was the primary author of the Massachusetts Constitution in 1780 which influenced American political theory, as did his earlier Thoughts on Government.
John Adams is a 2008 American television miniseries chronicling most of U.S. President John Adams' political life and his role in the founding of the United States. Paul Giamatti portrays John Adams. The miniseries was directed by Tom Hooper. Kirk Ellis wrote the screenplay based on the book John Adams by David McCullough. The biopic of John Adams and the story of the first fifty years of the United States was broadcast in seven parts by HBO between March 16 and April 20, 2008. John Adams received widespread critical acclaim, and many prestigious awards. The show won four Golden Globe awards and thirteen Emmy awards, more than any other miniseries in history.
Emeritus Professor John Adams (born 1938) of University College London, is a professor of geography and leading theorist on risk compensation. His book Risk is an analysis of how humans assess and respond to perceived risks.
Adams spoke at the Shared Space conference held in Ipswich in June, 2005, where in his talk titled "Risk Compensation versus the obedient automaton theory of human behaviour" he discussed how understanding risk compensation was essential to the understanding of why shared space principles work for the design of public spaces such as road layouts in towns.
He has also coined the term and written extensively on the phenomenon of hypermobility.
Adams has been critical of the Intergovernmental Panel on Climate Change (IPCC) and has praised "reputable scientists who react sceptically to the “hockey stick” peddled by Sir John Houghton and the IPCC."
Adams was a member of the advisory committee to the Anti-Concorde Project.
The Blessed John Adams was an English Catholic priest and martyr.
He was born at Winterborne St Martin in Dorset at an unknown date (ca. 1543?) and became a Protestant minister. He later entered the Catholic Church and travelled to the English College then at Rheims, arriving on 7 December 1579. He was ordained a priest at Soissons on 17 December 1580. He set out for the mission in England on 29 March 1581.
He is known to have worked in Hampshire but details of his later, as of his earlier life, are patchy. It may be that he was taken prisoner at Rye only a short time after landing in England and that he escaped. In 1583 he was described as a man of "about forty years of age, of average height, with a dark beard, a sprightly look and black eyes. He was a very good controversialist, straightforward, very pious, and pre-eminently a man of hard work. He laboured very strenuously at Winchester and in Hampshire, where he helped many, especially of the poorer classes."
John William "Tree" Adams (September 22, 1921 – August 20, 1969) was an American football offensive lineman in the National Football League (NFL) for the Washington Redskins from 1945 to 1949. He played college football at the University of Notre Dame.
Adams was born in Charleston, Arkansas as one of ten children. He was considered normal size until he was 10, but then experienced a growth spurt during which he "shot up like a tree". He attended Subiaco Academy in Subiaco, Arkansas, where he played high school football and basketball.
Adams played college football at the University of Notre Dame from 1942-1944. In 1943, he was the backup for Ziggy Czarobski on the 1943 championship team and then became the starting tackle in 1944.
Adams was selected in the third round of the 1945 NFL Draft by the Washington Redskins.
John Adams is a 2001 biography of the Founding Father and second U.S. President, John Adams, written by the popular American historian David McCullough, which won the 2002 Pulitzer Prize for Biography or Autobiography. It has been made into a TV miniseries with the same name by HBO Films. Since the TV miniseries debuted, an alternative cover has been added to the book showing Paul Giamatti as John Adams. The book is available as both hardcover and paperback.
"The problem with Adams is that most Americans know nothing about him." - David McCullough
Although the book was originally intended to be a dual biography of Adams and Jefferson, McCullough was increasingly drawn to Adams and away from Jefferson. The author spent six years studying Adams, reading the same books he had read and visiting the places he had lived.
Perhaps the greatest treasure trove was the enormous amount of correspondence between John Adams and his wife, Abigail Adams, a marriage McCullough calls "one of the great love stories of American history." Also invaluable was his long correspondence with his successor as President, Thomas Jefferson, which McCullough calls "one of the most extraordinary correspondences in the English language."
For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles Hello guys! If you like our work please subscribe to our second channel The History Chronicles https://www.youtube.com/c/TheHistoryChronicles The script for this video has been checked with Plagiarism software and scored 1% on Grammarly. In academia, a score of below 15% is considered good or acceptable. All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purch...
Thank you for watching! Please subscribe for more and don’t forget to hit the bell icon so you don’t miss our new videos. https://www.youtube.com/@PeopleProfiles?sub_confirmation=1 Watch our videos advert free and listen to audio only episodes on our website. https://www.peopleprofiles.com/join/ You can also watch marathon People Profiles videos on our second channel The People Profiles Extra https://www.youtube.com/@PeopleProfilesExtra Or follow us on Twitter! https://twitter.com/tpprofiles All People Profiles scripts are researched and written by qualified Historians. The script for this video has been checked with Plagiarism and AI Detector software and scored 3% on Scribbr In academia, a score of below 15% is considered good or acceptable. Please email us for script references and ci...
In 1790 the Residence Act established a new city on the Potomac River as the nation’s capital and permanent seat of government. While what was to become the city of Washington, D.C., was being built the Act designated Philadelphia, Pennsylvania, as the temporary capital for a period of ten years. Since the government in Washington would no longer have access to the sizable collection of the Library Company of Philadelphia, on 24 April President John Adams approved an act that would provide $5,000 ‘for the purchase of such books as may be necessary for the use of Congress ... and for fitting up a suitable apartment for containing them.’ This established the Library of Congress and allowed for the purchase of approximately 3,000 volumes from England that were housed in the north wing of the...
#RecessionProofInvesting #CashForCoins #TreasureInPocketChange Hey everyone, I have another spinoff channel called BlueRidgeCollectibles where I share my other favorite hobbies. Come check out this new channel and show your support with a sub! https://www.youtube.com/channel/UCLGZ0uSfzVNT1FC8HocF8ww Essential Coin Supplies & Books CELESTRON HOBBY 5MP DIGITAL MICROSCOPE (BEST IN THE HOBBY!) - https://amzn.to/2tkoA7h ECONOMY COIN HOLDER PACKS - https://amzn.to/2JMRIrn MYLAR POCKET PAGES - https://amzn.to/2qARvPb SINGLE ROW STORAGE BOXES - https://amzn.to/2vmFin8 NGC GRADED STORAGE BOX - https://amzn.to/2IWO90t PCGS GRADED STORAGE BOX - https://amzn.to/2IXkVOZ 2"X2" SAFLIPS BULK PACK - https://amzn.to/2ERqEnm 6-COIN TYPE SET HOLDERS - https://amzn.to/2JPUyfd COIN TUBE ASSORTMENT ...
Listen to and read the first Inauguration speech of U.S. President John Adams delivered on March 4, 1797 at the U.S. Capitol in the House of Representatives Chamber, Washington, D.C. In this speech, President Adams delivered a sentence with 727 words, the longest sentence ever written in a presidential inaugural address. Narrated by Timelessreader1.
John Adams (1735-1826) was a leader of the American Revolution and served as the second U.S. president from 1797 to 1801. The Massachusetts-born, Harvard-educated Adams began his career as a lawyer. Intelligent, patriotic, opinionated and blunt, Adams became a critic of Great Britain’s authority in colonial America and viewed the British imposition of high taxes and tariffs as a tool of oppression. During the 1770s, he was a delegate to the Continental Congress. In the 1780s, Adams served as a diplomat in Europe and helped negotiate the Treaty of Paris (1783), which officially ended the American Revolutionary War (1775-83). From 1789 to 1797, Adams was America’s first vice president. He then served a term as the nation’s second president. He was defeated for another term by Thomas Jefferso...
As the Delta variant spreads across the globe, countries, including the U.S. and Australia, have moved toward further lockdowns. The government impositions due to COVID-19 may be the new normal. "Political and cultural norms that Americans and Australians share - around liberties, around civil rights, around democracy - these things have been suspended because of a pandemic," says Australian economist John Adams. ***WEEKLY SPECIALS ON SILVER*** 1000 oz silver bars: only $1.69 over spot per ounce delivered plus 90-days free vault storage 2021 1 oz Silver Britannias: only $3.95 over spot ***CALL US: 1-888-81-LIBERTY (1-888-815-4237)*** 0:00 Intro 3:47 Covid lockdowns 13:59 Financial preparedness 25:11 Protecting our liberty 35:33 The Fed's approach ================================== BUY...
In this discussion, Brian and Darryl Panes from As Good As Gold Australia interview Chief Economist, John Adams, who confirms the emergence and consequences of his early 2021 bold predictions of the continuation of lock-down policies. What do they mean from a political and economic perspective? Gold and Silver Shipping to the USA and Canada: https://www.asgoodasgoldaus.com.au/international/ Stagflation, as John predicted is accelerating, resulting from the policies of the Biden administration. What are the immediate and medium term implications for the global economy? Earlier this month, the Reserve Bank of Australia board held its July board meeting, which laid out the future for monetary policy in Australia. What's their plan and how does it measure up with the other major central ban...
#shorts President John Adams played a crucial role in the decision to move the federal government to Washington, D.C. Here are some details on this significant event: In 1800, Philadelphia served as the temporary capital of the United States. However, there were growing concerns about the city's suitability as the capital due to political unrest and logistical challenges. President Adams signed the Residence Act on July 16, 1790, which authorized the establishment of a new capital along the Potomac River. The location was chosen to help resolve a contentious dispute between northern and southern states regarding federal assumption of state debts. The process of designing and constructing the new capital began under President George Washington's administration, but it was President Ada...
Support us on Patreon: www.patreon.com/reelhistory Find Educator Resources on our website: www.reelhistoryfilms.com Explore our online shirt store: my-store-c21f5c.creator-spring.com If you wish to donate to our channel, our PayPal is [email protected] Reel History delves into historical films to separate fact from fiction. These engaging episodes explore, contextualize, and clarify stories related to the most famous historical movies. In contrast to the more prevalent "reaction" videos, these installments seek not only to entertain but to educate and inform. For host Jared Frederick and producer Andrew Collins, these episodes are a labor of love and a means of expressing passion for the past as well as cinema. Courteous viewer feedback is always welcome. The views expressed are o...
John Adams (October 30 [O.S. October 19] 1735 – July 4, 1826) was an American lawyer, author, statesman, and diplomat. He served as the second President of the United States (1797–1801), the first Vice President (1789–97), and as a Founding Father was a leader of American independence from Great Britain. Adams was a political theorist in the Age of Enlightenment who promoted republicanism and a strong central government. His innovative ideas were frequently published. He was also a dedicated diarist and correspondent, particularly with his wife and key advisor Abigail.
He collaborated with his cousin, revolutionary leader Samuel Adams, but he established his own prominence prior to the American Revolution. After the Boston Massacre, despite severe local anti-British sentiment, he provided a successful though unpopular legal defense of the accused British soldiers, driven by his devotion to the right to counsel and the "protect[ion] of innocence". As a delegate from Massachusetts to the Continental Congress, Adams played a leading role in persuading Congress to declare independence. He assisted Thomas Jefferson in drafting the Declaration of Independence in 1776, and was its foremost advocate in the Congress. As a diplomat in Europe, he helped negotiate the eventual peace treaty with Great Britain, and acquired vital governmental loans from Amsterdam bankers. Adams was the primary author of the Massachusetts Constitution in 1780 which influenced American political theory, as did his earlier Thoughts on Government.