- 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.
A TV dinner (also called prepackaged meal, ready-made meal,ready meal, frozen dinner, frozen meal, microwave meal) is a prepackaged frozen or chilled meal that usually comes as an individual portion. It requires very little preparation and contains all the elements for a single-serving meal. A TV dinner in the USA usually consists of a cut of meat, usually beef or chicken; a vegetable, such as peas, carrots, corn, or potatoes; and sometimes a dessert, such as a brownie or apple cobbler. The entrée could also be pasta or a common type of fish, such as Atlantic cod. Rice is a common side item. In Europe the meals can be more diverse, with items such as Indian or Chinese meals being common in the UK.
The term TV dinner is a genericized trademark originally used for a brand of packaged meal developed in 1953 by C.A. Swanson & Sons (the name in full was TV Brand Frozen Dinner). In the United States the term remains synonymous with any prepackaged dinner purchased frozen in a supermarket and heated at home.
TV Dinners is Mikey McCleary's debut album of English songs. It consists of tracks that Mikey composed and wrote for major TV advertising brands like Vodafone, Levi's, Audi, Titan and Lakmé. He has extended these 45 second jingles into full songs by adding new composition and lyrics so that instead of sounding like jingles, they sound like tracks from various artists that were placed in TV ad films. Featuring Mikey's vocals on half the album, it also features the singers Anushka Manchanda, Shalmali Kholgade, Monica Dogra and Mauli Dave.
The idea of turning a jingle into a full song came about when Mikey found many people online asking for the full song for many of the jingles he had composed. A lot of people thought that these jingles were existing songs that had been placed in TV ads. He chose the jingles that were most popular and that didn't have any lyrics specifically connecting the song with the original brand. TV Dinners is full of familiar tunes but none of the songs sound like extended jingles, they sound like songs from different artists.
"TV Dinners" is a song performed by the band ZZ Top from their 1983 album Eliminator. It was produced by band manager Bill Ham, and recorded and mixed by Terry Manning. The song is a simple, beat-driven tune with humorous lyrics about pre-packaged, oven-ready meals. Released as a single, it reached #38 on the Billboard Top Rock Tracks chart. Robert Palmer recorded "TV Dinners" for his studio album 2003 Drive.
Guitarist Billy Gibbons played a 1955 Gretsch Roundup while recording "TV Dinners".
Marios Pinzer directed the song's music video, which used both live action and claymation. In it, bassist Dusty Hill plays a Vox Continental organ, and both Hill and drummer Frank Beard do not wear sunglasses, a trademark ZZ Top accessory.
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...
Weird History Food is peeling back the foil on this history of TV Dinners. With its aluminum or microwaveable plate, with separate compartments for meat, vegetable, and dessert, the TV dinner has a special place in food history and culture in the belly of American memories. #TVdinner #foodhistory #weirdhistoryfood
Nothing quite conveys America's need for quick culinary convenience like a TV dinner — turkey and gravy with mashed potatoes and peas, all neatly portioned in an easy oven-ready tray. The TV dinner of the 1950s and 60s has changed a lot in the decades since. Today, frozen foods are now a booming category in supermarkets, a category that TV dinners helped to launch. Frozen foods were among the fastest-growing grocery category during the COVID-19 pandemic, bringing in $72.2 billion in retail sales in 2022, nearly a 34% increase compared to 2019. Chapters: 0:00 — Introduction 01:07 — The TV dinner origin story 04:33 — The need for speed 06:41 — What’s next? Produced by: Kate Sammer Supervising Producer: Jeff Morganteen Graphics by: Alex Wood » Subscribe to CNBC: https://cnb.cx/Subsc...
Go to https://tryfum.com/PAPAMEAT and use code PAPAMEAT to save an additional 10% off your order today Patreon - https://www.patreon.com/meatcanyon Merch - https://meatcanyon.store/ Twitch - https://www.twitch.tv/meatcanyon Instagram - https://www.instagram.com/meatcanyon/ Twitter - https://twitter.com/meatcanyon Main Channel - https://www.youtube.com/@MeatCanyon Video Editing - https://twitter.com/BoxJonno Thumbnail Design - https://twitter.com/TKDesignzs Animators: Jerb: https://twitter.com/jerbjpg?s=20 Vudujin: https://twitter.com/Vudujin DublyMike: https://twitter.com/dublymike?s=20 Awez: https://mobile.twitter.com/aweztube\
TV dinners have a surprising origin and at one point dominated American markets. But are we falling out of love with them as a country? Further reading: 1. OnePoll https://nypost.com/2019/07/23/the-majority-of-us-are-considered-zombie-eaters/ 2. Quartz https://qz.com/187433/americas-60-year-love-affair-with-frozen-tv-dinners-is-over/ 3. WSJ https://www.wsj.com/articles/frozen-dinners-make-a-comeback-1536418800 https://www.smithsonianmag.com/history/tray-bon-96872641/ Subscribe to Cheddar on YouTube: http://chdr.tv/subscribe Connect with Cheddar! On Facebook: http://chdr.tv/facebook On Twitter: http://chdr.tv/twitter On Instagram: http://chdr.tv/instagram On Cheddar.com: http://chdr.tv/cheddar
You're watching the official music video for ZZ Top - "TV Dinners" from the album 'Eliminator'. Subscribe to the Rhino Channel! https://Rhino.lnk.to/YouTubeSubID Check Out Our Favorite Playlists: Classic Rock https://Rhino.lnk.to/YTClassicRockID 80s Hits https://Rhino.lnk.to/YT80sHitsID 80s Hard Rock https://Rhino.lnk.to/YT80sHardRockID 80s Alternative https://Rhino.lnk.to/YT80sAlternativeID 90s Hits https://Rhino.lnk.to/YT90sHitsID Stay connected with RHINO on... Facebook https://www.facebook.com/RHINO/ Instagram https://www.instagram.com/rhino_records Twitter https://twitter.com/Rhino_Records https://www.rhino.com/ RHINO is the official YouTube channel of the greatest music catalog in the world. Founded in 1978, Rhino is the world's leading pop culture label specializing in classic ...
#shorts | Reviewing the Hungry Man Selects Classic Fried Chicken frozen dinner. Check out the full video to get the verdict! -- contact: [email protected] -- #food #foodreview #tvdinner #funny #funnymoments #shocking #entertainment #comedy #gaming
what if TV dinners were dinners that came from the TV? ft. my lovely roommates @westbrouck & @CarterKench :) Y'ALL I MADE A SKETCH. AHHH. This whole thing was written, "directed" and edited by me. Also my buddy @scottkress_ held the camera for me. hehe thx scott. Do you guys like this type of content from me?? Either way, I wanna make more cuz I learned a lot & had a ton of fun making it. I feel like I got to "play director" with my roommates for a day. happy wednesday my friends !! - liv xx other socials if u want :) tiktok: @liv.pearsall ig: @liv.pearsall twitter: @livpearsall47 ps ~ The Children's Room by Audionautix is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Artist: http://audionautix.com/
Leave a like, subscribe & hit the notification button! Socials: https://www.tiktok.com/@jetbentlee?lang=en Business Inquiries: [email protected]
Come take a relaxing journey through 3 Hungry-Man frozen TV Dinners, with Ian as your guide. Tasty. KID CUISINE REVIEW: https://www.youtube.com/watch?v=Kf0EpG-xsyU LUNCHABLES REVIEW: https://www.youtube.com/watch?v=88l41TVd6wQ ♥ You should subscribe! » http://tinyurl.com/itsmoosetime ♥ Become a Patron » http://www.patreon.com/brutalmoose SOCIAL NETWORKS http://www.twitter.com/brutalmoose http://www.facebook.com/brutalmoose http://www.brutalmoose.com Visit our website! » http://hiddenblock.com/
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.
TV dinners, there's nothin' else to eat
TV dinners, they really can't be beat
I like 'em frozen but you understand
I throw 'em in and wave 'em and I'm a brand new man, oh yeah
TV dinners, they're goin' to my head
TV dinners my skin is turnin' red
Twenty year old turkey in a thirty year old tin
I can't wait until tomorrow and thaw one out again, oh yeah
TV dinners, I'm feelin' kinda rough
TV dinners, this one's kinda tough
I like the enchiladas and the teriyaki too
I even like the chicken if the sauce is not too blue
And they're mine, all mine, oh yeah
And they sure are fine