- published: 20 Aug 2024
- views: 130
'+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."
John Adams From Revolution to Presidency | 2nd President of the United States Documentary Profiles in Focus history biography historical documentary educational Biography History Historical Educational The People Profiles Biography channel the biography channel biography documentary channel biography channel biography highlights biography full episodes full episode biography of famous people full biography biography au0026e biography full episode biography full documentary bio life story mini biography biography series on tv Disclaimer 1-AI-generated images in the video are explained as artistic creations that may not represent reality. 2-The video is for entertainment and informational purposes only, not professional advice. 3-Accuracy of content is not guaranteed; viewers should veri...
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...
J.D. Vance (Gabriel Basso), a former Marine from southern Ohio and current Yale Law student, is on the verge of landing his dream job when a family crisis forces him to return to the home he’s tried to forget. J.D. must navigate the complex dynamics of his Appalachian family, including his volatile relationship with his mother Bev (Amy Adams), who’s struggling with addiction. Fueled by memories of his grandmother Mamaw (Glenn Close), the resilient and whip-smart woman who raised him, J.D. comes to embrace his family’s indelible imprint on his own personal journey. Based on J.D. Vance’s #1 New York Times Bestseller and directed by Academy Award winner Ron Howard, HILLBILLY ELEGY is a powerful personal memoir that offers a window into one family’s personal journey of survival and triumph. B...
As ordinary retail investors rush to acquire physical silver, they are not only “FOLLOWING THE MONEY” in the example of gold and silver grab by central banks, hedge funds, sovereign wealth & family office funds, and high-net worth investors, but also ON A MISSION to force the truth to come out. John Adams, chief economist at Good As Gold Australia, returns to Liberty and Finance to announce the latest breaking updates in the PHYSICAL SILVER GRAB, which has become a cause and a mission of the little guys and gals to GET REAL, DEMAND TRUE MONEY, and DRAIN THE SWAMP. Article mentioned: https://www.adamseconomics.com/post/beware-of-synthetic-gold-and-silver-products Find John Adams Online: https://www.adamseconomics.com/ https://twitter.com/adamseconomics ===============================...
Welcome to an "Honest 250" — our take on the 250th anniversary of the American Revolution that refuses to sugarcoat the past. Today, we dive into John Adams' diary entry from 1774, where Adams meets Virginia patriot Richard Henry Lee for the first time. Through Adams' words, we get a rare glimpse into the mindset of the radicals of the day. Spoiler alert: even after a few drinks, independence isn't on their minds. Instead, they’re grappling with Parliament's overreach through the Coercive Acts, but the thought of breaking away from Britain? Not yet. This is what real history looks like—messy, complicated, and nothing like the myth. Photo: Photo by Elliott Stallion on Unsplash #publichistory #honesthistory #johnadams #americanrevolution
In this interview I speak to John Adams the Chief Economist of As Good As Gold Australia about the current economy and what we can expect in the future and most importantly how to protect your wealth. To connect with John Adams E-mail: [email protected] Website: www.adamseconomics.com AGAGA Website: https://www.asgoodasgoldaus.com.au/ Disclaimer: The content and information (“Content”) in the video programmes (“Video Programmes”) is provided for informational purposes only and not investment advice. You should not construe any such content, information or other material as legal, tax, investment, financial, or other professional advice nor does any such information constitute a comprehensive or complete statement of the matters discussed. When making investment decisions please make...
When looking through history to find motivation and inspiration there's a wealth of material to draw from which made creating this video no easy task. My goal when selecting these quotes for narration was to choose the ones that had the biggest impact on me in the hope that they have a similar effect on you. Your list might be different and its been great to see your favorite quotes in the comments Top Famous JOHN ADAMS Quotes of ALL TIME 22 BEST Quotes by a Founding Father and the 2nd President... JOHN ADAMS THE GREATEST QUOTES OF ALL TIME 30 Motivational Quotes Best Short Quotes About Life / Motivational Daily Life Quotes and Sayings / Great Quotes About Life #quotesliftupmymind #famousquotes #johnadams
Video topic: John Adams | famous john Adams quotes | john Adams quotes on religion (quotes about family) john adams quotes religion top 20 john adams quotes best john adams quotes Video is also related: 1. john adams quotes about life 2. quotes by john adams 3.quotes from john adams 4. president john adams Another Videos: 1. George Washington Quotes (George Washington documentary)( best quotes for George Washington 2023) https://www.youtube.com/watch?v=aKJkf_Ho08s 2. Abraham Lincoln Quotes | Abraham Lincoln – quotes that are really worth listening to https://www.youtube.com/watch?v=2uTEBX2a2po 3. Andrew Carnegie | Andrew Carnegie quotes about life | Andrew Carnegie life changing quotes https://www.youtube.com/watch?v=QApVdmk1O0E 4. Albert Einstein quotes | life-changing quotes | Al...
#education #knowledge #Motivation #history #quotes #lecture #president Ladies and gentlemen, esteemed guests, and scholars of history, today we embark on an intellectual voyage, a deep dive into the life and legacy of John Adams, a colossus in the pantheon of American founding fathers. As we unfurl the sails of our exploration, let us first anchor ourselves in the significance of this remarkable individual whose contributions helped forge the very foundation of the United States of America.
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.
Tell yourself you're special
Mr.Individual
feed your little ego
be a paper hero
Street cred's long dead
huge success for excess Max Factor man
too safe, two faced
corporate clone's monotone means nothing
New face on the cover
think he's someone's brother
catalogue of boredom
telling us we want some
Same message
re-packaged
same message
re-packaged