- published: 16 Jan 2023
- views: 15001
'+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 Shakespeare (c. 1531 – 7 September 1601) was the father of William Shakespeare. He was the son of Richard Shakespeare of Snitterfield, a farmer. He moved to Stratford-upon-Avon and married Mary Arden, with whom he had eight children, five of whom survived into adulthood. A well-to-do glover and whittawer (leather worker) by trade, Shakespeare was a dealer in hides and wool, and was elected to several municipal offices, serving as an alderman and culminating in a term as bailiff, the chief magistrate of the town council, before he fell on hard times for reasons unknown to historians. His fortunes later revived after the success of his son, and he was granted a coat of arms five years before his death, probably at the instigation and expense of his playwright son.
John Shakespeare moved to Stratford-upon-Avon in 1551, where he became a successful businessman involved in several related occupations. From 1556 to 1592, several official records identify him as a glovemaker, which was probably his primary trade, as tradition remembers him as following that trade even into his old age, but the records of his real estate purchases and legal expenses indicate an income much higher than that of a small-town tradesman. The administration of his father's estate in 1561 names him as a farmer. He inherited and leased agricultural lands and is on record as selling timber and barley. Court records also document him as a "brogger", an unlicensed—and therefore illegal—wool dealer. In addition, he bought and leased out houses. He was twice taken to court for violating the usury laws that prohibited charging interest higher than the legal limit of 10 percent.
The 1960s was a decade that began on January 1, 1960 and ended on December 31, 1969. The term "1960s" also refers to an era more often called the Sixties, denoting the complex of inter-related cultural and political trends around the globe. This "cultural decade" is more loosely defined than the actual decade, beginning around 1963 and ending around 1974.
"The Sixties", as they are known in both scholarship and popular culture, is a term used by historians, journalists, and other objective academics; in some cases nostalgically to describe the counterculture and revolution in social norms about clothing, music, drugs, dress, sexuality, formalities, and schooling; and in others pejoratively to denounce the decade as one of irresponsible excess, flamboyance, and decay of social order. The decade was also labeled the Swinging Sixties because of the fall or relaxation of social taboos especially relating to racism and sexism that occurred during this time. Commentator Christopher Booker described this era as a classical Jungian nightmare cycle, where a rigid culture, unable to contain the demands for greater individual freedom, broke free of the social constraints of the previous age through extreme deviation from the norm. He charts the rise, success, fall/nightmare and explosion in the London scene of the 1960s. Several Western nations such as the United States, United Kingdom, France, and West Germany turned to the political left in the early and mid-1960s.
The Sixties was a Canadian current affairs television series which aired on CBC Television from 1963 to 1966.
This series was similar to Citizens' Forum in that it was a co-production of the CBC and the Canadian Association for Adult Education which concerned newsworthy topics. Episodes featured a panel discussion which was led by Frank McGee for the first two seasons then by Charles Lynch in the final season. Subjects of international scope were presented such as foreign assistance, English-French relations in Canada, or the situation within and near the Communist Bloc.
The series was broadcast on Sunday afternoons in the first season after which it appeared on late Monday evenings. The half-hour series was broadcast as follows:
CKCU-FM is a Canadian community-based campus radio station, broadcasting at 93.1 FM in Ottawa, and offering live and archived on-demand MP3 streams from its website. The station broadcasts 24 hours per day, 365 days per year.
The station's studios are located on the campus of Carleton University, on the fifth floor of the University Centre building. The station's signal is radiated from the Ryan Tower in the Gatineau Hills, along with most of Ottawa's other private and public radio stations, meaning that it enjoys full broadcast power and a listening area with a radius of 100 km.
CKCU Radio Carleton is Canada's oldest community-based campus radio station. It first broadcast on November 14, 1975 when it played Joni Mitchell's "You Turn Me On, I'm a Radio". CKCU broadcasts live 24 hours a day to a 100 km radius on FM 93.1.
CKCU airs over 100 different shows each week, including multicultural programs in 14 languages. The schedule includes both general and specialty music programs, public affairs and spoken word programming, and features many shows with a topical or international flavour. Some shows feature live in-studio performances by local artists. CKCU actively supports, sponsors and promotes local independent musicians, venues, concerts and festivals including the Ottawa Folk Festival.
Thanks to the success of Will's 'Big Midsummer Donkey Gag Play', John Shakespeare is finally gifted his coat of arms and becomes a gentleman...but will he act like one? Subscribe: http://bit.ly/BBCComedyGreats WATCH MORE: Upstart Crow: https://bit.ly/CGUpstartCrow Blackadder: http://bit.ly/ComedyGreatsBlackadder Live at the Apollo: http://bit.ly/2L9SAuA Only Fools and Horses: https://bit.ly/CGOnlyFoolsAndHorses Like us on Facebook!: https://bit.ly/ComedyGreatsFacebook Welcome to BBC Comedy Greats, home to the best comedy from the BBC! Whether you're a fan of the classics or if stand up comedy is more up your street then check out our hand picked playlists full of the funniest clips by the best performers. From Only Fools and Horses to Live at the Apollo we can guarantee plenty of awesom...
Poetry # John Shakespeare 125
John shakespear Tyranny of Punchlines Official video
To the world, Shakespeare left a lasting legacy and an awful lot of unanswered questions. Follow John Nettles as he recounts the life of William Shakespeare. Subscribe and click the bell icon to get more arts content every week: youtube.com/c/PerspectiveArts Perspective is YouTube's home for the arts. Come here to get your fill of great music, theatre, art and much, much more! From "Shakespeare: The Legacy" Content licensed from 3DD to Little Dot Studios. Any queries, please contact us at: [email protected]
A short summary of Shakespeare's 1595-6 history play, King John with illustrations by Mya Gosling.
Brilliant World Cup related tune from John Shakespeare. From the excellent mid-90s Loungecore collection from Castle. - uploaded via http://www.mp32u.net/
Camille O’Sullivan plays Constance in King John, Act III, Scene 4. Constance laments the loss of her son, Arthur, who has been captured, but disputes the suggestion that she has gone mad. Subscribe to Guardian Culture ► http://bit.ly/subgdnculture To mark the 400th anniversary of Shakespeare’s death, we asked leading actors to perform key speeches from his plays. Read more about Shakespeare solos ► http://bit.ly/ShakespeareSolos Camille O’Sullivan performs at Brighton fringe, 12-15 May, and the Edinburgh festival, 6-21 August ► http://www.camilleosullivan.com/ The Guardian Film Show ► https://goo.gl/lxV8RV Guardian Culture website ► http://www.theguardian.com/culture Guardian Film website ► http://www.theguardian.com/film The Guardian on YouTube: The Guardian ► http://is.gd/guardianyt...
GRACE IS SUFFICIENT ALBUM
Join Lauren and Dr Kat as they time travel back to the year 1592 to visit Shakespeare's Birthplace AND Shakespeare's Schoolroom and Guildhall! But, expecting to meet William Shakespeare, they find themselves instead met by his father, John. Could this be a character worth investigating? What shady secrets will the pair uncover...? This episode was made possible with support from Arts Council England. A HUGE thanks also to The Shakespeare Birthplace Trust as well as Shakespeare's School Room and Guildhall for allowing us to film. If you have not yet visited either of these sites, we hope this episode inspires you to take a trip for yourselves discover more! CREDITS: Writer: Lauren Grierson Producer: Lauren Grierson Editor: Ian Grierson Illustrator: Ian Grierson Historians and Histori...
But they had the Beatles amirite? 🤗 ( source vid is by TikTok/@milesbaguette )
#retro #memories #60s Golden Oldies Songs of 60's with Lyrics. Oldies But Goodies. The Cascades/ Scott McKenzie/ Percy Sledge/ The Temptations/ Paul & Paula/ The Mamas & The Papas/ Otis Redding/ The Righteous Brothers/ Bobby Vinton/ The Byrds 00:00 Introduction 00:10 Track01 02:43 Track02 05:41 Track03 08:33 Track04 11:28 Track05 13:57 Track06 16:40 Track07 19:22 Track08 22:57 Track09 25:39 Track10 *This channel is not monetized* All advertising revenue will be distributed to the music rights holders. (Ads are automatically attached). *Created with AI video editing software, Vrew.* (AI動画編集ソフト、Vrewで作成しています) *I don't own anything, No copyright intended* (C) All rights reserved to the artist and their production company. ※The music year mentioned in each video is for your reference onl...
Hello dolls, 🌼 today I'm explaining 1960s fashion for you. From popular boutiques to wonderful fashion deisgners and style icons - today I'm taking a deep dive into the decade detailing what was worn and the political and social happenings that influences fashion. From the Beatles going from suits to psychedelic Hippie clothes to Twiggy and Jane Birkin - this video is filled with everything you need to know about 60s fashion. This si the first part of a new series on my channel all about 60s and 70s fashion. There'll be episodes on different designers, subcultures and Fashion Icons so get ready for a deep dive into the decade and it's fashion! Sending you dolls the biggest hug, thank you for watching! 💌 All my lovin, xx Emma 💌 Always remember that you are beautiful with & without makeup...
I grew up in the 1940s and 1950s. I became a documentary filmmaker when I was just 22 years old so by the time I got a grant from PBS to make a television series on the 1960s titled Making Sense of the Sixties (1990), I had been doing documentary interviews for a very long time. This is a clip from an episode of that series. When people say that the 1950s were easier than today, the 1950s may have been easier for certain groups of people. For example the economy was strong, unemployment was low, and the middle class was expanding. Also the post-World War II era brought about a sense of stability and prosperity for many Americans. Economic prosperity: The 1950s were a time of economic growth and stability in the United States. The post-World War II boom led to low unemployment rates, ...
1960s Men's Gym. Half naked men pump up their muscles We love the fact that some of the members are even doing their exercise in their bathing trunks. Stick around to watch the men using a vibro massage machine at 1:38. Follow our movements on Twitter @britishpathe : http://www.twitter.com/britishpathe And check out the cool archive uploads on our Facebook page: http://www.facebook.com/britishpathe Explore and discover 90,000 archive reels for free on our website: http://www.britishpathe.com A VIDEO FROM BRITISH PATHÉ. EXPLORE OUR ONLINE CHANNEL, BRITISH PATHÉ TV. IT'S FULL OF GREAT DOCUMENTARIES, FASCINATING INTERVIEWS, AND CLASSIC MOVIES. http://www.britishpathe.tv/ FOR LICENSING ENQUIRIES VISIT http://www.britishpathe.com/ British Pathé also represents the Reuters historical coll...
Things EVERYONE Did in the 1960s... But Are Now Banned The 1960s, a decade of change, liberation, and vibrant cultural shifts, is often looked back upon with a mix of nostalgia and amazement. As we rummage through the treasure chest of the past, it's intriguing to find that several norms and practices, once ubiquitous in the 60s, have since been consigned to the pages of history, not just because of changing times but because they're now actually banned! Let’s take a walk down memory lane and explore eight iconic activities that everyone did in the 60s but are now prohibited.
The 1960s saw the rise of sci-fi cinema, blending groundbreaking effects and deep storytelling. From 2001: A Space Odyssey to The Time Machine, these five influential films reshaped the genre, exploring futuristic visions and timeless human struggles. #SciFiMovies #1960scinema 00:00 2001: A Space Odyssey 01:21 Planet of the Apes 02:23 Fahrenheit 451 03:21 Fantastic Voyage 04:26 The Time Machine
In which John Green teaches you about a time of relative tumult in the United States, the 1960s. America was changing rapidly in the 1960s, and rights movements were at the forefront of those changes. Civil Rights were dominant, but the 60s also saw growth in the Women's Movement, the LGBT Rights Movement, the Latino Rights Movement, and the American Indian Movement. Also, Americans began to pay a bit more attention to the environment. All this change happened against the backdrop of the Cold War and the Rise of Conservatism. It was just wild. John will teach you about sit-ins, Freedom Rides, The March on Washington, MLK, JFK, LBJ, and NOW. Man, that is a lot of initialisms. And one acronym. Hey teachers and students - Check out CommonLit's free collection of reading passages and curric...
John Shakespeare (c. 1531 – 7 September 1601) was the father of William Shakespeare. He was the son of Richard Shakespeare of Snitterfield, a farmer. He moved to Stratford-upon-Avon and married Mary Arden, with whom he had eight children, five of whom survived into adulthood. A well-to-do glover and whittawer (leather worker) by trade, Shakespeare was a dealer in hides and wool, and was elected to several municipal offices, serving as an alderman and culminating in a term as bailiff, the chief magistrate of the town council, before he fell on hard times for reasons unknown to historians. His fortunes later revived after the success of his son, and he was granted a coat of arms five years before his death, probably at the instigation and expense of his playwright son.
John Shakespeare moved to Stratford-upon-Avon in 1551, where he became a successful businessman involved in several related occupations. From 1556 to 1592, several official records identify him as a glovemaker, which was probably his primary trade, as tradition remembers him as following that trade even into his old age, but the records of his real estate purchases and legal expenses indicate an income much higher than that of a small-town tradesman. The administration of his father's estate in 1561 names him as a farmer. He inherited and leased agricultural lands and is on record as selling timber and barley. Court records also document him as a "brogger", an unlicensed—and therefore illegal—wool dealer. In addition, he bought and leased out houses. He was twice taken to court for violating the usury laws that prohibited charging interest higher than the legal limit of 10 percent.