- published: 24 Jan 2022
- views: 923612
'+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; })); }); -->
Garry Moore (January 31, 1915 – November 28, 1993) was an American entertainer, game show host, and comedian best known for his work in television.
Moore entered show business as a radio personality in the 1940s and was a television host on several game and variety shows from the 1950s, '60s, and '70s.
After dropping out of high school, Moore found success as a radio host and then moved on to the television industry. He hosted The Garry Moore Show, and the game shows I've Got a Secret and To Tell the Truth. He became known for his bow ties and his crew cut, though he refrained from both fashions later in his career.
After being diagnosed with throat cancer in 1976, Moore retired from the television industry, making a few rare television appearances. He spent the last years of his life in Hilton Head, South Carolina and at his summer home in Maine. He died on November 28, 1993.
Moore was born Thomas Garrison Morfit, III on January 31, 1915, in Baltimore, Maryland, the son of Mason P. Morfit and Mary L. (née Harris) Morfit. He attended Baltimore City College, but dropped out to pursue a career in radio and writing. Starting in 1937, he worked for Baltimore radio station WBAL as an announcer, writer, and actor/comedian. He used his birth name until 1940, when, while on the air announcing Club Matinee hosted by Ransom Sherman at NBC, Chicago, Sherman held a radio contest to find a more easily pronounceable one. "Garry Moore" was the winning entry, which was submitted by a woman from Pittsburgh who received a prize of $100. It was on Club Matinee where he met his long-time friend and broadcasting partner Durward Kirby.
Garry Moore is a former television host.
Garry Moore may also refer to:
Garry Moore, CNZM (born 8 January 1951) is a former Mayor of Christchurch, New Zealand, serving from 1998 to 2007. Subsequently, he was a board member of the New Zealand Transport Agency. He is a 'South Island enthusiast'.
Moore trained as an accountant. In the 1980s, he was involved in several schemes helping unemployed people. Whale Watch Ltd in Kaikoura is one such company that he helped set up.
In 1989, Moore was elected to the Area Health Board, which can be seen as early predecessors of the District Health Boards. Starting in 1992, he served two terms as councillor, before he was elected mayor in the 1998 local body elections. He announced that he would not stand for re-election in the 2007 local body elections. Former television host Bob Parker succeeded Moore as mayor of Christchurch in October 2007.
In 2008 Moore was appointed a board member of the newly amalgamated NZ Transport Agency.
The Garry Moore Show is the name for several separate American variety series on the CBS television network in the 1950s and 1960s. Hosted by experienced radio performer Garry Moore, the series helped launch the careers of many comedic talents, such as Dorothy Loudon, Don Adams, George Gobel, Carol Burnett, Don Knotts, Lee Goodman, James Kirkwood, Jr. and Jonathan Winters. The Garry Moore Show garnered a number of Emmy nominations and wins.
The show originally started as a radio program; CBS eventually awarded Garry his own early evening television show in its place. Garry's radio partner since 1940, Durward Kirby, made the move to TV with him and appeared throughout all three versions of the TV show.
The first incarnation of the show began in June 1950 as a Monday-through-Friday 30-minute evening series. It was also simulcast on radio. The show changed to a once-weekly one-hour format by August. In the fall of 1950 CBS rescheduled the show each weekday in the afternoon, and it ran in this format until mid-1958 (another prime-time edition, The Garry Moore Evening Show, alternated with The George Burns and Gracie Allen Show on Thursday nights from September through December 1951). The series featured a relaxed and flexible combination of comedy skits, monologues, singing, and interaction with the studio audience. The show became an important commercial success for CBS.
Garry A. Moore is a Democratic member of the South Dakota House of Representatives, representing the 18th district since 2006. He previously served from 1990 through 1998. He was a member of the South Dakota Senate from 1998 through 2006, serving as Minority Leader.
We've gotten a lot of great TV shows this century, but we've also seen some pretty bad ones. For this list, we’ll be looking at the most abysmal live-action programs to appear on screens between 2000-21. We mainly focused on shows that either wasted a good premise or tried to make a terrible idea work. And we’ll be leaving out reality shows because they could have a list of their own. Our countdown includes "Cavemen" (2007), "Rob" (2012), "Inhumans" (2017), "Mulaney" (2014-15), and more! Which of these programs made you turn off the tv immediately? Let us know in the comments below. Watch more great videos on TV here: Top 20 Best TV Shows of the Century (So Far): https://youtu.be/XZq_zYjXe-s Top 10 Most Anticipated TV Shows of 2022: https://youtu.be/XcEo1NUUbsQ Top 20 Most Expensive TV S...
Get a total dose of Comedy, Action, Drama, Music, Dance, Sci-Fi and much more with Youtube Original Tv Series and shows. Watch the best and most famous original series in English on Youtube Premium. Watch Part 2 - https://www.youtube.com/watch?v=qH31e9LNSUM Note: Ranked and filtered on personal choice. You should also watch #sideSwiped Youtube Originals tv show. #youtubeoriginals #youtubeoriginalsshows #youtubepremiumseries #youtubepremium #youtube #sci-fi #cobrakaiyoutubeoriginals #cobrakai #bestyoutubeoriginalshows #weirdcityyoutube #manikpokhetra Origin Series: https://www.youtube.com/playlist?list=PLmosFzxUfkqUcZ-IsKJ7ZjJPQpiJvvu24 WAYNE ACTION: https://www.youtube.com/playlist?list=PLLtYcdNLQ8ZQZ9UsdinNFlqxkOwgydajt IMPULSE ACTION: https://www.youtube.com/playlist?list=PLIN...
If you want to to know the greatest Disney TV Shows that came out 2021 you should definitely watch our picks for the best Disney TV Series of 2021. All Disney series in this ranking started in 2021. Discover the best… 📹 YouTube tool: https://www.tubebuddy.com/communitv We missed your favorite Disney TV Series of 2021? Let us know in the comments! Follow us on... Instagram: http://bit.ly/2rnljTB Facebook: http://bit.ly/2PbYxGn TV Series in this Ranking: 10. Big Shot (2021– ): (00:23) 9. The Mighty Ducks: Game Changers (2021– ): (01:12) 8. The Falcon and the Winter Soldier (2021): (02:01) 7. Star Wars: Visions (2021– ): (02:48) 6. What If...? (2021– ): (03:37) 5. Star Wars: The Bad Batch (2021– ): (04:16) 4. Hawkeye (2021): (05:07) 3. The Book of Boba Fett (2021– ): (05:57) 2. WandaVisi...
As a follow up to my last video, where many tried to excuse the level of Jewish over-representation on Joe Rogan's podcast by claiming they are simply more intelligent. Support the Channel: https://www.subscribestar.com/leather-apron-club https://www.buymeacoffee.com/leatherapr9 All Social Links: https://bio.link/leatherapronclub YouTube: https://tinyurl.com/tszxmb99 Bitchute: https://tinyurl.com/4djn4sm3 Odysee: https://tinyurl.com/7e9a25vs Twitter: https://twitter.com/leatherApronGuy 0:00 - Intro 1:12 - Argument Breakdown 3:01 - Scientific Studies 3:25 - Backman (1972) 4:31 - Levinson (1957) 5:46 - Lynn (2003) 8:08 - MacDonald 9:40 - Storfer (1990) 12:49 - Herrnstein + Murray 13:08 - Studies Conclusion 13:30 - Explanations for High IQ 13:40 - The Nurture Argument 14:41 - Talmudic Exp...
Here is a video by Marcel Coenen playing his song "Do Or Die" from his Disambiguation EP released in 2015 digitally. The song already resides from the ending 80's/beginning 90's when Marcel made a few demo's with songs that were not fitting to his bands at that moment. This song was always instrumental, because Marcel did not have a singer back then who could do the job, but in 2015 Marcel made an EP releasing 4 old songs again, and he asked Ollie Oldenburg to sing this track. Ollie wrote also the vocal lines and wrote the lyrics. Find the EP "Disambiguation" at Spotify: https://open.spotify.com/album/4bRTW0ADREFgP0qA1BgRJL
Ferry Aid were a British-American ensemble group, brought together to record the song "Let It Be" in 1987. The single was released following the Zeebrugge Disaster, which had occurred on 6 March 1987 involving the capsizing of the MS Herald of Free Enterprise ferry, which killed 193 passengers and crew. All proceeds from sales of the single were donated to the charity set up in the aftermath of the disaster. The recording was organised by The Sun newspaper, after they had sold cheap tickets for the ferry on that day.[1] "Let It Be" was written by Lennon–McCartney and originally recorded by The Beatles in 1969. Performers Artists to have contributed and performed solo spots on the song are as follows (in order of appearance): Paul McCartney Boy George Keren Woodward and Nick ...
This is an audio version of the Wikipedia Article: https://en.wikipedia.org/wiki/End_of_the_world 00:00:34 1 Art 00:00:55 2 Books 00:01:20 3 Film and TV 00:01:31 3.1 Film 00:02:34 3.2 Television 00:03:41 4 Music 00:04:01 4.1 Albums 00:04:29 4.2 Songs 00:07:07 5 See also Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago. Learning by listening is a great way to: - increases imagination and understanding - improves your listening skills - improves your own spoken accent - learn while on the move - reduce eye strain Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing th...
Recent scientific reports have highlighted increased scientific interest in a long-enduring mystery on the Moon. For well over a half a century, scientists on Earth have puzzled over the cause of occasional mysterious flashes of light seen on the lunar surface, or what is called Transient Lunar Phenomena. In fact, reports of these mysterious light events on the Moon date back at least over 1,000 years. In this episode, we discuss the compelling evidence that the phenomena is electrical in nature. Previous Space News on dust levitation on airless bodies in space: https://www.youtube.com/watch?v=XBMi5UpabXE If you see a CC with this video, it means that subtitles are available. To find out which ones, click on the Gear Icon in the lower right area of the video box and click on “subtitles...
This talk was presented on 27th February 2023 as part of the Cardamom Seminar Series. Bunadas is a network database of cognate words, which can generate on the fly “family-trees” of cognate words. It contains so far about 100,000 words in 40 Indo-European languages, 70% of them being Celtic-language words. A previous seminar at the University of Arizona looked mainly at its practical use and user interface. This talk will also review this aspect briefly, but will look in more detail at the database and data structure behind Bunadas, the design decisions which went into it, their strengths and weaknesses. It will also look at the lack of data structure in Wiktionary, and the lack of rigour in the data structure of Wikidata Lexicographic data, which currently prevent these major information...
In this episode of Blog & Mablog, Pastor Doug Wilson discusses Augustine, priorities, rightly ordered affections, and the red-pilled among us. "A virtuous Christian man can love Christ, his wife, his children, his nation, his region, his house, his dog, and his favorite coffee cup. What he cannot do (while remaining virtuous) is to get anything in this list out of place or out of order." Blog and Mablog is presented by Canon Press.
Garry Moore (January 31, 1915 – November 28, 1993) was an American entertainer, game show host, and comedian best known for his work in television.
Moore entered show business as a radio personality in the 1940s and was a television host on several game and variety shows from the 1950s, '60s, and '70s.
After dropping out of high school, Moore found success as a radio host and then moved on to the television industry. He hosted The Garry Moore Show, and the game shows I've Got a Secret and To Tell the Truth. He became known for his bow ties and his crew cut, though he refrained from both fashions later in his career.
After being diagnosed with throat cancer in 1976, Moore retired from the television industry, making a few rare television appearances. He spent the last years of his life in Hilton Head, South Carolina and at his summer home in Maine. He died on November 28, 1993.
Moore was born Thomas Garrison Morfit, III on January 31, 1915, in Baltimore, Maryland, the son of Mason P. Morfit and Mary L. (née Harris) Morfit. He attended Baltimore City College, but dropped out to pursue a career in radio and writing. Starting in 1937, he worked for Baltimore radio station WBAL as an announcer, writer, and actor/comedian. He used his birth name until 1940, when, while on the air announcing Club Matinee hosted by Ransom Sherman at NBC, Chicago, Sherman held a radio contest to find a more easily pronounceable one. "Garry Moore" was the winning entry, which was submitted by a woman from Pittsburgh who received a prize of $100. It was on Club Matinee where he met his long-time friend and broadcasting partner Durward Kirby.
Let me entertain you
Rang through my head
I was a reckless child
And I did what he said
People came
From miles around
To hear the sound
That was tearing up the town
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Baby you're an icon)
(Maybe you're a hard on)
Or maybe you're a dog
The next batter up
Was a man
A scary man
With the golden hands
He brought his axe
To bury the tracks
No mortal man
Could follow his act
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're god
You can't refrain
From going insane
It's what you want to do
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Maybe you're an icon)
(Baby you're a hard on)
Maybe you're god
Now that rock & roll's in the palm of our hands
We take it to the people every chance that we can
We are the party that never ends
Live by these words until we meet again
You can't refrain
From going insane
It's what you want to do
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're god
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're a god
(Maybe you're an icon)
(Baby you're a hard on)
Or maybe you're god
Whoa! It's time for the show babe
N-n-n-n-no!
Whoa! Yeah yeah yeah yeah
Yeah yeah yeah yeah yeah
Time for the show