'+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; })); }); -->

William Sadler Franks

William Sadler Franks (26 April 1851 in Newark, Nottinghamshire 19 June 1935 in East Grinstead) was a British astronomer.

He published a catalogue of the colours of 3890 stars.

Franks was employed between 1892 and 1904 by the wealthy amateur astronomer Isaac Roberts as an assistant to support the photographic observations of star clusters and nebulae at Roberts's private observatory at Crowborough in Sussex.

In 1910 he was hired by F. J. Hanbury (of the Allan and Hanbury firm) to work as an observer at Hanbury's private Brockhurst Observatory at East Grinstead in Sussex. He continued his studies of the colours of stars there, and also made micrometer measurements of double stars. In 1923 he won the Jackson-Gwilt Medal of the Royal Astronomical Society.

One of the other observers who used the Brockhurst Observatory with Franks was a teenage Patrick Moore (fourteen years old at Franks's death).

References

External links

  • http://www.shastro.org.uk/docs/sha_nov2002_lo.pdf

  • William Sadler

    William Sadler may refer to:

  • William Sadler (painter) (c.1782–1839), Irish landscape painter
  • William Sadler (Medal of Honor) (1854–?), American sailor and Medal of Honor recipient
  • William Sadler (actor) (born 1950), American film and television actor
  • William S. Sadler (1875–1969), American surgeon and psychiatrist
  • Billy Sadler (born 1981), American baseball pitcher
  • William Sadler (actor)

    William Thomas Sadler (born April 13, 1950) is an American film and television actor. His television and motion picture roles have included Lewis Burwell "Chesty" Puller in The Pacific, Luther Sloan in Star Trek: Deep Space Nine, Sheriff Jim Valenti in Roswell, convict Heywood in The Shawshank Redemption, and the Grim Reaper in Bill & Ted's Bogus Journey, a role for which he won the Saturn Award for Best Supporting Actor, and his role as the villainous Colonel Stuart opposite Bruce Willis in Die Hard 2. He played the character of President of the United States, Matthew Ellis, in Iron Man 3 and in Marvel's Agents of S.H.I.E.L.D., and recurs as Steve McGarrett's murdered father in the latter-day 2000's remake of Hawaii Five-O. In 2015, Sadler had an appearance in the TV series Z Nation.

    Early life

    Sadler was born in Buffalo, New York, the son of Jane and William Sadler. He is of mostly Scottish descent, with smaller amounts of English and German ancestry. From an early age, he took to performing in front of an audience. Playing a variety of stringed instruments, Sadler found hometown success during his high school years at Orchard Park High School. He took on the persona as Banjo Bill Sadler, a banjo-playing singer who cracked jokes while playing. Both students and teachers enjoyed his performances, which led Sadler to audition for the senior play under English teacher Dan Larkin's persuasion. He won the role, which led him to want to be an actor. After graduating from high school, he enrolled in SUNY Geneseo. Following that, he spent two years at Cornell University where he earned his Master's degree in Acting with a minor in Speech Communications. He is a certified speech teacher and practised in accents.

    William Sadler (Medal of Honor)

    William Sadler (born 1854, date of death unknown) was a United States Navy sailor and a recipient of the United States military's highest decoration, the Medal of Honor.

    Biography

    Born in 1854 in Boston, Massachusetts, Sadler joined the Navy from that state. By June 25, 1881, he was serving as a captain of the top on the USS Saratoga. On that day, while Saratoga was off Coaster's Harbor Island, Rhode Island, Second Class Boy Frank Gallagher fell overboard. Sadler jumped into the water and kept the sailor afloat until they were picked up by one of the ship's small boats. For this action, he was awarded the Medal of Honor three years later, on October 18, 1884.

    Sadler's official Medal of Honor citation reads:

    See also

  • List of Medal of Honor recipients during peacetime
  • References

    External links

  • "William Sadler". Hall of Valor. Military Times. Retrieved September 4, 2010. 
  • "William Sadler". Claim to Fame: Medal of Honor recipients. Find a Grave. Retrieved September 4, 2010. 
  • Franks

    The Franks (Latin: Franci or gens Francorum) are historically first known as a group of Germanic tribes that roamed the land between the Lower and Middle Rhine in the 3rd century AD, and second as the people of Gaul who merged with the Gallo-Roman populations during succeeding centuries, passing on their name to modern-day France and becoming part of the heritage of the modern French people. Some Franks raided Roman territory, while other Frankish tribes joined the Roman troops of Gaul. In later times, Franks became the military rulers of the northern part of Roman Gaul. With the coronation of their ruler Charlemagne as Imperator Romanorum by Pope Leo III in 800 AD, he and his successors were portrayed as legitimate successors to the emperors of the Western Roman Empire.

    The Salian Franks lived on Roman-held soil between the Rhine, Scheldt, Meuse, and Somme rivers in what is now Northern France, Belgium and the southern Netherlands. The kingdom was acknowledged by the Romans after 357 AD. Following the collapse of Rome in the West, the Frankish tribes were united under the Merovingians, who succeeded in conquering most of Gaul in the 6th century. The Franks became very powerful after this. The Merovingian dynasty, descendants of the Salians, founded one of the Germanic monarchies that would absorb large parts of the Western Roman Empire. The Frankish state consolidated its hold over the majority of western Europe by the end of the 8th century, developing into the Carolingian Empire. This empire would gradually evolve into the state of France and the Holy Roman Empire.

    Franks (disambiguation)

    The Franks were a confederacy of ancient to early medieval Germanic tribes.

    Franks may also refer to:

  • Farangi, Crusaders of western Europe, and more generally a term for "western European"
  • French people
  • Franconians
  • Franks (surname)
  • USS Franks (DD-554), a United States Navy warship
  • Franc, a unit of currency (Frank in Dutch, Franken in German and Swiss German)
  • slang abbreviation of Frankfurter, as another name used to refer to Hot Dogs
  • See also

  • Name of the Franks
  • Frank (disambiguation)
  • Frank's (disambiguation)
  • Franc
  • Franconia
  • Frankokratia
  • Frank (given name)
  • Francisco
  • Francois
  • Farangi
  • Firang
  • Firangi (sword)
  • Farang
  • Barang (disambiguation)
  • Franks (surname)

    Franks is also an Anglo-American surname, derived from the given name Frank. The name is on record in Virginia from the 1660s.

    People with the surname include:

  • David Franks (loyalist) (1720 - 1794), prominent Loyalist in the American Revolution
  • David Franks (aide-de-camp) (David Salisbury Franks) (1740 - 1793), aide-de-camp of Benedict Arnold
  • Augustus Wollaston Franks (1826 - 1897), English antiquarian
  • William Sadler Franks (1851 - 1935), British astronomer
  • Wilbur R. Franks (1901 - 1986), Canadian scientist
  • Oliver Shewell Franks (1905 - 1992), English philosopher
  • Bobby Franks (1909 - 1924), murder victim
  • Herman Franks (1914 - 2009), American Major League baseball player and coach
  • Tillman Franks (1920 - 2006), American bassist and songwriter
  • Dick Franks (1920 - 2008), Head of the Secret Intelligence Service (1979-1982)
  • Cecil Franks (born 1935), former English Member of Parliament
  • Michael Franks (musician) (born 1944), US-American jazz singer/songwriter
  • Tommy Franks (born 1945), U.S. general
  • Podcasts:

    • Bill & Ted's Bogus Journey - Bonus Clip 1: William Sadler on Becoming the Reaper (HD)

      Subscribe to SHOUTFACTORY: http://bit.ly/1nm0dKP Follow us on TWITTER: https://twitter.com/shoutfactory Like us on FACEBOOK: http://on.fb.me/1nEYhOx In Bill & Ted's Bogus Journey, the titular time travelers aren't making history — they are history! When an evil-doer from the future sends eviller robot twins of Bill & Ted to assassinate and replace good, non-robot Bill & Ted, the guys wind up face to face with the Grim Reaper (William Sadler)! Can the now-dead duo escape, defeat their evil doppelgangers, and win their Battle of the Bands contest? Buy this title: https://www.shoutfactory.com/film/action-adventure/bill-ted-s-most-excellent-collection SHOUT! FACTORY has devoted itself to the higher pursuit of pop culture for the past 10 years. During that time, we've released some of TV...

      published: 20 Sep 2016
    • Bill & Ted's Bogus Journey (1991) - We're Dead Dude Scene (2/10) | Movieclips

      Bill & Ted's Bogus Journey - We're Dead Dude: Bill (Alex Winter) and Ted (Keanu Reeves) wind up dead and meet the Grim Reaper (William Sadler). BUY THE MOVIE: https://www.fandangonow.com/details/movie/bill-teds-bogus-journey-1991/MMV6BBEF02838A11DC1A446BE6634315D8F8?cmp=Movieclips_YT_Description Watch the best Bill & Ted's Bogus Journey scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqp9ZOU-vOYB11pzqe01aIaN&disable_polymer=true FILM DESCRIPTION: Amiable slackers Bill (Alex Winter) and Ted (Keanu Reeves) are once again roped into a fantastical adventure when De Nomolos (Joss Ackland), a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined t...

      published: 25 Jan 2019
    • William Sadler talks about working on Bogus Journey - 7/22/91

      Entertainment Tonight ran this interview with William Sadler on the Heaven set of Bogus Journey on July 22, 1990.

      published: 29 Jan 2011
    • Bill & Ted's Grim Reaper ad libbed a ton! (William Sadler 2016)

      +Filmed at Chicago Comic Con 2016 +Click here for more ChristineDoesCons Comic Con videos: https://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw/videos?sort=p&shelf_id=1&view=0 +Subscribe for more great comic con celebrity interviews and videos! http://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw?sub_confirmation=1

      published: 20 Aug 2016
    • Grim Reaper in Bill & Ted 3?!?!?!?! (William Sadler 2016)

      +The Grim Reaper himself has said YES to being in Bill & Ted 3 :) +Filmed at Chicago Comic Con 2016 +Click here for more ChristineDoesCons Comic Con videos: https://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw/videos?sort=p&shelf_id=1&view=0 +Subscribe for more great comic con celebrity interviews and videos! http://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw?sub_confirmation=1

      published: 20 Aug 2016
    • Bill & Ted's Bogus Journey (1991) - You Have Sunk My Battleship! Scene (6/10) | Movieclips

      Bill & Ted's Bogus Journey - You Have Sunk My Battleship!: Bill (Alex Winter) and Ted (Keanu Reeves) square off against the Grim Reaper (William Sadler) in a series of party games. BUY THE MOVIE: https://www.fandangonow.com/details/movie/bill-teds-bogus-journey-1991/MMV6BBEF02838A11DC1A446BE6634315D8F8?cmp=Movieclips_YT_Description Watch the best Bill & Ted's Bogus Journey scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqp9ZOU-vOYB11pzqe01aIaN&disable_polymer=true FILM DESCRIPTION: Amiable slackers Bill (Alex Winter) and Ted (Keanu Reeves) are once again roped into a fantastical adventure when De Nomolos (Joss Ackland), a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill ...

      published: 25 Jan 2019
    • William Sadler interview from CNN aired in Japan - 1991

      This interview with William Sadler aired on Japanese television in 1991. Bill was at the Bogus Journey press junket promoting the film. Apologies for the Japanese voice over the questions, but we think you'll pick up on what they're asking.

      published: 24 Jul 2010
    • William Sadler talks "Demon Knight" at Texas Frightmare Weekend

      MCTV got to find out some behind the scenes info on the classic 1995 film "Demon Knight" starring William Sadler. William is known for being in over 150 productions and counting. go to www.texasfrightmareweekend.com for event info for more El-Creepo! go to iTunes or www.razortowrist.com

      published: 21 Jan 2016
    Bill & Ted's Bogus Journey - Bonus Clip 1: William Sadler on Becoming the Reaper (HD)
    1:38

    Bill & Ted's Bogus Journey - Bonus Clip 1: William Sadler on Becoming the Reaper (HD)

    • Order:
    • Duration: 1:38
    • Uploaded Date: 20 Sep 2016
    • views: 28369
    Subscribe to SHOUTFACTORY: http://bit.ly/1nm0dKP Follow us on TWITTER: https://twitter.com/shoutfactory Like us on FACEBOOK: http://on.fb.me/1nEYhOx In Bill & Ted's Bogus Journey, the titular time travelers aren't making history — they are history! When an evil-doer from the future sends eviller robot twins of Bill & Ted to assassinate and replace good, non-robot Bill & Ted, the guys wind up face to face with the Grim Reaper (William Sadler)! Can the now-dead duo escape, defeat their evil doppelgangers, and win their Battle of the Bands contest? Buy this title: https://www.shoutfactory.com/film/action-adventure/bill-ted-s-most-excellent-collection SHOUT! FACTORY has devoted itself to the higher pursuit of pop culture for the past 10 years. During that time, we've released some of TV's most beloved gems, such as Freaks And Geeks, My So-Called Life, Sports Night, MadTV and Mystery Science Theater. We've also reintroduced some of television's most adored personalities with collections featuring Dick Cavett, Tom Snyder, Jack Paar, Johnny Carson, Mel Brooks, Groucho Marx and Elvira, Mistress of the Night..
    https://wn.com/Bill_Ted's_Bogus_Journey_Bonus_Clip_1_William_Sadler_On_Becoming_The_Reaper_(Hd)
    Bill & Ted's Bogus Journey (1991) - We're Dead Dude Scene (2/10) | Movieclips
    2:57

    Bill & Ted's Bogus Journey (1991) - We're Dead Dude Scene (2/10) | Movieclips

    • Order:
    • Duration: 2:57
    • Uploaded Date: 25 Jan 2019
    • views: 639496
    Bill & Ted's Bogus Journey - We're Dead Dude: Bill (Alex Winter) and Ted (Keanu Reeves) wind up dead and meet the Grim Reaper (William Sadler). BUY THE MOVIE: https://www.fandangonow.com/details/movie/bill-teds-bogus-journey-1991/MMV6BBEF02838A11DC1A446BE6634315D8F8?cmp=Movieclips_YT_Description Watch the best Bill & Ted's Bogus Journey scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqp9ZOU-vOYB11pzqe01aIaN&disable_polymer=true FILM DESCRIPTION: Amiable slackers Bill (Alex Winter) and Ted (Keanu Reeves) are once again roped into a fantastical adventure when De Nomolos (Joss Ackland), a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper (William Sadler) to a series of games in order to return to the land of the living. CREDITS: TM & © MGM (1991) Cast: Alex Winter, Keanu Reeves, William Sadler Screenwriter: Chris Matheson, Ed Solomon Director: Peter Hewitt Watch More: ► Fresh New Clips: http://bit.ly/2taDWqW ► Classic Trailers: http://bit.ly/2qTCxHF ► Hot New Trailers: http://bit.ly/2qThrsF ► Clips From Movies Coming Soon: http://bit.ly/2FrP8VL ► Indie Movie Clips: http://bit.ly/2qTZMRE ► Deleted Scenes: http://bit.ly/2ARbLPJ ► Bloopers: http://bit.ly/2qYmBnc ► Celebrity Interviews: http://bit.ly/2D4tzw4 Fuel Your Movie Obsession: ► Subscribe to MOVIECLIPS: http://bit.ly/2CZa490 ► Watch Movieclips ORIGINALS: http://bit.ly/2D3sipV ► Like us on FACEBOOK: http://bit.ly/2DikvkY ► Follow us on TWITTER: http://bit.ly/2mgkaHb ► Follow us on INSTAGRAM: http://bit.ly/2mg0VNU The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes, and lines from all your favorite films. Made by movie fans, for movie fans.
    https://wn.com/Bill_Ted's_Bogus_Journey_(1991)_We're_Dead_Dude_Scene_(2_10)_|_Movieclips
    William Sadler talks about working on Bogus Journey - 7/22/91
    2:04

    William Sadler talks about working on Bogus Journey - 7/22/91

    • Order:
    • Duration: 2:04
    • Uploaded Date: 29 Jan 2011
    • views: 24133
    Entertainment Tonight ran this interview with William Sadler on the Heaven set of Bogus Journey on July 22, 1990.
    https://wn.com/William_Sadler_Talks_About_Working_On_Bogus_Journey_7_22_91
    Bill & Ted's Grim Reaper ad libbed a ton! (William Sadler 2016)
    2:36

    Bill & Ted's Grim Reaper ad libbed a ton! (William Sadler 2016)

    • Order:
    • Duration: 2:36
    • Uploaded Date: 20 Aug 2016
    • views: 1021
    +Filmed at Chicago Comic Con 2016 +Click here for more ChristineDoesCons Comic Con videos: https://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw/videos?sort=p&shelf_id=1&view=0 +Subscribe for more great comic con celebrity interviews and videos! http://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw?sub_confirmation=1
    https://wn.com/Bill_Ted's_Grim_Reaper_Ad_Libbed_A_Ton_(William_Sadler_2016)
    Grim Reaper in Bill & Ted 3?!?!?!?! (William Sadler 2016)
    4:08

    Grim Reaper in Bill & Ted 3?!?!?!?! (William Sadler 2016)

    • Order:
    • Duration: 4:08
    • Uploaded Date: 20 Aug 2016
    • views: 1741
    +The Grim Reaper himself has said YES to being in Bill & Ted 3 :) +Filmed at Chicago Comic Con 2016 +Click here for more ChristineDoesCons Comic Con videos: https://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw/videos?sort=p&shelf_id=1&view=0 +Subscribe for more great comic con celebrity interviews and videos! http://www.youtube.com/channel/UCpweD0tV3G5IWZfUvHSDRQw?sub_confirmation=1
    https://wn.com/Grim_Reaper_In_Bill_Ted_3_(William_Sadler_2016)
    Bill & Ted's Bogus Journey (1991) - You Have Sunk My Battleship! Scene (6/10) | Movieclips
    2:32

    Bill & Ted's Bogus Journey (1991) - You Have Sunk My Battleship! Scene (6/10) | Movieclips

    • Order:
    • Duration: 2:32
    • Uploaded Date: 25 Jan 2019
    • views: 21492
    Bill & Ted's Bogus Journey - You Have Sunk My Battleship!: Bill (Alex Winter) and Ted (Keanu Reeves) square off against the Grim Reaper (William Sadler) in a series of party games. BUY THE MOVIE: https://www.fandangonow.com/details/movie/bill-teds-bogus-journey-1991/MMV6BBEF02838A11DC1A446BE6634315D8F8?cmp=Movieclips_YT_Description Watch the best Bill & Ted's Bogus Journey scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqp9ZOU-vOYB11pzqe01aIaN&disable_polymer=true FILM DESCRIPTION: Amiable slackers Bill (Alex Winter) and Ted (Keanu Reeves) are once again roped into a fantastical adventure when De Nomolos (Joss Ackland), a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper (William Sadler) to a series of games in order to return to the land of the living. CREDITS: TM & © MGM (1991) Cast: Alex Winter, Keanu Reeves, William Sadler Screenwriter: Chris Matheson, Ed Solomon Director: Peter Hewitt Watch More: ► Fresh New Clips: http://bit.ly/2taDWqW ► Classic Trailers: http://bit.ly/2qTCxHF ► Hot New Trailers: http://bit.ly/2qThrsF ► Clips From Movies Coming Soon: http://bit.ly/2FrP8VL ► Indie Movie Clips: http://bit.ly/2qTZMRE ► Deleted Scenes: http://bit.ly/2ARbLPJ ► Bloopers: http://bit.ly/2qYmBnc ► Celebrity Interviews: http://bit.ly/2D4tzw4 Fuel Your Movie Obsession: ► Subscribe to MOVIECLIPS: http://bit.ly/2CZa490 ► Watch Movieclips ORIGINALS: http://bit.ly/2D3sipV ► Like us on FACEBOOK: http://bit.ly/2DikvkY ► Follow us on TWITTER: http://bit.ly/2mgkaHb ► Follow us on INSTAGRAM: http://bit.ly/2mg0VNU The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes, and lines from all your favorite films. Made by movie fans, for movie fans.
    https://wn.com/Bill_Ted's_Bogus_Journey_(1991)_You_Have_Sunk_My_Battleship_Scene_(6_10)_|_Movieclips
    William Sadler interview from CNN aired in Japan - 1991
    2:31

    William Sadler interview from CNN aired in Japan - 1991

    • Order:
    • Duration: 2:31
    • Uploaded Date: 24 Jul 2010
    • views: 3322
    This interview with William Sadler aired on Japanese television in 1991. Bill was at the Bogus Journey press junket promoting the film. Apologies for the Japanese voice over the questions, but we think you'll pick up on what they're asking.
    https://wn.com/William_Sadler_Interview_From_Cnn_Aired_In_Japan_1991
    William Sadler talks "Demon Knight" at Texas Frightmare Weekend
    7:15

    William Sadler talks "Demon Knight" at Texas Frightmare Weekend

    • Order:
    • Duration: 7:15
    • Uploaded Date: 21 Jan 2016
    • views: 705
    MCTV got to find out some behind the scenes info on the classic 1995 film "Demon Knight" starring William Sadler. William is known for being in over 150 productions and counting. go to www.texasfrightmareweekend.com for event info for more El-Creepo! go to iTunes or www.razortowrist.com
    https://wn.com/William_Sadler_Talks_Demon_Knight_At_Texas_Frightmare_Weekend
    • William Sadler "The Grim Reaper" on BILL & TED 3, Death's Accent & More | Metal Injection

      Actor William Sadler talks about reprising his role as the Grim Reaper in Bill & Ted 3: Face The Music, his original audition for Bogus Journey, how “Death” got a European accent in the first place, playing bass in the Wyld Stallyns, and much more! Subscribe to Metal Injection on YouTube: http://bit.ly/ZhpTbA FOLLOW US: http://facebook.com/metalinjection http://instagram.com/metalinjection http://twitter.com/metalinjection http://metalinjection.net

      published: 25 Aug 2020
    • “The Naked Truth” Getting nude in Die Hard 2 (The Kitchen Tapes, Episode 6)

      published: 01 Jun 2020
    • William Sadler (actor)

      Episode 200- William Sadler!!! It’s a landmark episode with an iconic actor. William has had big roles in big movies including Bill & Ted’s Bogus Journey, Die Hard 2, Iron Man 3 and The Shawshank Redemption. He tells me his latest project with Karen Allen (A Stage of Twilight) is his best work to date. Lots of great stories and insight in this one! Episode 200- William Sadler!!! It’s a landmark episode with an iconic actor. William has had big roles in big movies including Bill & Ted’s Bogus Journey, Die Hard 2, Iron Man 3 and The Shawshank Redemption. He tells me his latest project with Karen Allen (A Stage of Twilight) is his best work to date. Lots of great stories and insight in this one! 0:00:00 - Intro 0:01:41 - Stage of Twilight 0:04:45 - Preparing for Roles 0:07:35 - Improvi...

      published: 07 Dec 2021
    • Assulted Nuts Death with William Sadler

      I will bring you great trailers, behind the scenes material and assorted nonsense about film and pop culture. I have a Patreon if you wish to help out the channel so I can continue this. https://www.patreon.com/user/creators?u=17892662 If you want to that is.

      published: 01 Oct 2022
    • THE HILLS RUN RED - Actor WILLIAM SADLER interview. Sofia, Bulgaria. June, 2008

      From the SCREAM FACTORY Blu-ray of THE HILLS RUN RED. Available NOW! Celebrated actor William Sadler, most recently seen reprising his iconic role as DEATH in BILL AND TED FACE THE MUSIC, appears in this archival Interview from the Scream Factory Blu-ray of THE HILLS RUN RED...available now. A review of THE HILLS RUN RED blu-ray: https://cultsploitation.com/the-hills... IF YOU ENJOY OUR CONTENT...YOU CAN ALWAYS TIP THE CHANNEL...THEN SEND A QUESTION...AND IT WILL BE READ LIVE ON THE AIR DURING THE NEXT SHOW! TIP RIGHT HERE: http://streamelements.com/theburnettwork/tip About Robert Meyer Burnett: Best known for directing, co-writing and editing the award-winning cult favorite feature film FREE ENTERPRISE, starring Emmy winners William Shatner and Eric McCormack, Rob Burnett offers his...

      published: 05 Oct 2020
    • William Sadler (Actor)

      William Thomas Sadler is an American and actor. His and motion picture roles have included Chesty Puller in The Pacific, Luther Sloan in Star Trek: Deep Space Nine, Sheriff Jim Valenti in Roswell, convict Heywood in The Shawshank Redemption, Senator Vernon Trent in Hard to Kill, and the Grim Reaper in Bill & Ted's Bogus Journey, Tales from the Crypt and Bill & Ted Face the Music, a role for which he won the Saturn Award for Best Supporting Actor, and his role as Colonel Stuart opposite Bruce Willis in Die Hard 2. He played the character of President of the United States, Matthew Ellis, in Iron Man 3, Marvel's Agents of S.H.I.E.L.D., and WHIH Newsfront, all set in the Marvel Cinematic Universe. He also recurs as Steve McGarrett's murdered father, John McGarrett, in the 2010 remake of th...

      published: 30 Aug 2020
    • ACTOR WILLIAM SADLER DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS”

      ACTOR WILLIAM SADLER DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS” with Writer / Director Elias Plagianos. Segment from piece that aired on WAMC by Allison Dunne. www.wamc.org More info on HUDSON FALLS - www.hudsonfalls.tv .

      published: 07 Jan 2021
    • William Sadler Interview: Shawshank & Steven Seagal Stories (Bill & Ted, Die Hard 2, Green Mile...)

      In this new series, we'll be talking to iconic actors to go through their massive filmographies to share stories from the set. This episode we have legendary actor WILLIAM SADLER. Thank you Bill for giving us time to chat, it was truly an honor to talk! You may remember him from all of these iconic roles down below, which were only some of the parts we got to touch upon: Heywood from "The Shawshank Redemption" Death from "Bill & Ted's Bogus Journey" and the upcoming "Bill & Ted Face The Music" Jim Valenti in "Roswell", Luther Sloan on "Star Trek: Deep Space Nine" President Ellis in "Iron Man 3" and "Agents of S.H.I.E.L.D.' Colonel Stuart from "Die Hard 2: Die Harder", Klaus Detterick in "The Green Mile" Wild Bill from "Rocketman", Monroe in "Rush", Don from "Trespass", Jim in the "T...

      published: 21 Apr 2020
    William Sadler "The Grim Reaper" on BILL & TED 3, Death's Accent & More | Metal Injection
    11:07

    William Sadler "The Grim Reaper" on BILL & TED 3, Death's Accent & More | Metal Injection

    • Order:
    • Duration: 11:07
    • Uploaded Date: 25 Aug 2020
    • views: 8512
    Actor William Sadler talks about reprising his role as the Grim Reaper in Bill & Ted 3: Face The Music, his original audition for Bogus Journey, how “Death” got a European accent in the first place, playing bass in the Wyld Stallyns, and much more! Subscribe to Metal Injection on YouTube: http://bit.ly/ZhpTbA FOLLOW US: http://facebook.com/metalinjection http://instagram.com/metalinjection http://twitter.com/metalinjection http://metalinjection.net
    https://wn.com/William_Sadler_The_Grim_Reaper_On_Bill_Ted_3,_Death's_Accent_More_|_Metal_Injection
    “The Naked Truth” Getting nude in Die Hard 2 (The Kitchen Tapes, Episode 6)
    10:51

    “The Naked Truth” Getting nude in Die Hard 2 (The Kitchen Tapes, Episode 6)

    • Order:
    • Duration: 10:51
    • Uploaded Date: 01 Jun 2020
    • views: 3957
    https://wn.com/“The_Naked_Truth”_Getting_Nude_In_Die_Hard_2_(The_Kitchen_Tapes,_Episode_6)
    William Sadler (actor)
    1:03:06

    William Sadler (actor)

    • Order:
    • Duration: 1:03:06
    • Uploaded Date: 07 Dec 2021
    • views: 300
    Episode 200- William Sadler!!! It’s a landmark episode with an iconic actor. William has had big roles in big movies including Bill & Ted’s Bogus Journey, Die Hard 2, Iron Man 3 and The Shawshank Redemption. He tells me his latest project with Karen Allen (A Stage of Twilight) is his best work to date. Lots of great stories and insight in this one! Episode 200- William Sadler!!! It’s a landmark episode with an iconic actor. William has had big roles in big movies including Bill & Ted’s Bogus Journey, Die Hard 2, Iron Man 3 and The Shawshank Redemption. He tells me his latest project with Karen Allen (A Stage of Twilight) is his best work to date. Lots of great stories and insight in this one! 0:00:00 - Intro 0:01:41 - Stage of Twilight 0:04:45 - Preparing for Roles 0:07:35 - Improvising & Method Acting 0:12:01 - Different Kinds of Roles 0:13:26 - Theater Acting 0:16:28 - Early Acting & Paying Dues 0:22:03 - Episode of Tales from the Crypt 0:25:22 - Bill & Ted's Bogus Journey 0:34:02 - Shawshank Redemption 0:41:47 - Roswell & Directing 0:45:15 - Frank Darabont & Other Projects 0:47:33 - Jeffrey Dean Morgan & Unholy 0:49:15 - Playing Totally Different Characters 0:51:08 - Ironman 3 & Residuals 0:52:30 - Turning Down Roles 0:55:05 - Nicholas Cage & Bucket List Directors 0:56:25 - Shows that William is Binging 0:58:15 - Upcoming Projects 1:00:05 - Wounded Warrior Project 1:01:43 - Wrap Up William Sadler Twitter: https://twitter.com/Wm_Sadler Wounded Warrior Project: https://www.woundedwarriorproject.org Chuck Shute website: http://chuckshute.com Support the show (https://venmo.com/Chuck-Shute)
    https://wn.com/William_Sadler_(Actor)
    Assulted Nuts Death with William Sadler
    3:05

    Assulted Nuts Death with William Sadler

    • Order:
    • Duration: 3:05
    • Uploaded Date: 01 Oct 2022
    • views: 48
    I will bring you great trailers, behind the scenes material and assorted nonsense about film and pop culture. I have a Patreon if you wish to help out the channel so I can continue this. https://www.patreon.com/user/creators?u=17892662 If you want to that is.
    https://wn.com/Assulted_Nuts_Death_With_William_Sadler
    THE HILLS RUN RED - Actor WILLIAM SADLER interview. Sofia, Bulgaria. June, 2008
    18:42

    THE HILLS RUN RED - Actor WILLIAM SADLER interview. Sofia, Bulgaria. June, 2008

    • Order:
    • Duration: 18:42
    • Uploaded Date: 05 Oct 2020
    • views: 1451
    From the SCREAM FACTORY Blu-ray of THE HILLS RUN RED. Available NOW! Celebrated actor William Sadler, most recently seen reprising his iconic role as DEATH in BILL AND TED FACE THE MUSIC, appears in this archival Interview from the Scream Factory Blu-ray of THE HILLS RUN RED...available now. A review of THE HILLS RUN RED blu-ray: https://cultsploitation.com/the-hills... IF YOU ENJOY OUR CONTENT...YOU CAN ALWAYS TIP THE CHANNEL...THEN SEND A QUESTION...AND IT WILL BE READ LIVE ON THE AIR DURING THE NEXT SHOW! TIP RIGHT HERE: http://streamelements.com/theburnettwork/tip About Robert Meyer Burnett: Best known for directing, co-writing and editing the award-winning cult favorite feature film FREE ENTERPRISE, starring Emmy winners William Shatner and Eric McCormack, Rob Burnett offers his own unique perspective on the entertainment industry in his daily “Robservations” video blogs. About The Burnettwork: The Burnettwork is a YouTube destination that features a variety of channels and shows. Rob’s personal observations on what he calls “the Post-Geek Singularity” are shared in his Robservations video blogs – free-flowing, streaming conversations with fans about everything from toys to comics to movies and television. Rob brings an interesting perspective to the world of genre entertainment that’s definitely “big picture” stuff. Check out The Burnettwork for yourself by going to our website: http://theburnettwork.net Important links: • Get updates from The Burnettwork on Facebook ► http://bit.ly/BNWonFB • Be part of the Post-Geek Singularity in our Facebook Group ► http://bit.ly/PGSingularity • Follow us on Twitter: @TBurnettwork • Contact us through our website ► http://bit.ly/BNWContact • Send us your 3-Word Review ► http://bit.ly/3WordReviews • Engage with us ► https://bit.ly/PGSLetters • Join The Burnettwork ► http://bit.ly/BNWJoinUs • "Rules" for participation in The Burnettwork ► http://bit.ly/BNWConduct
    https://wn.com/The_Hills_Run_Red_Actor_William_Sadler_Interview._Sofia,_Bulgaria._June,_2008
    William Sadler (Actor)
    1:18

    William Sadler (Actor)

    • Order:
    • Duration: 1:18
    • Uploaded Date: 30 Aug 2020
    • views: 79
    William Thomas Sadler is an American and actor. His and motion picture roles have included Chesty Puller in The Pacific, Luther Sloan in Star Trek: Deep Space Nine, Sheriff Jim Valenti in Roswell, convict Heywood in The Shawshank Redemption, Senator Vernon Trent in Hard to Kill, and the Grim Reaper in Bill & Ted's Bogus Journey, Tales from the Crypt and Bill & Ted Face the Music, a role for which he won the Saturn Award for Best Supporting Actor, and his role as Colonel Stuart opposite Bruce Willis in Die Hard 2. He played the character of President of the United States, Matthew Ellis, in Iron Man 3, Marvel's Agents of S.H.I.E.L.D., and WHIH Newsfront, all set in the Marvel Cinematic Universe. He also recurs as Steve McGarrett's murdered father, John McGarrett, in the 2010 remake of the 1968 Hawaii Five-O, and the Boston boxing promoter and suspected drug dealer Gino Fish in the Jesse Stone made for TV opposite Tom Selleck as a small town police chief.
    https://wn.com/William_Sadler_(Actor)
    ACTOR  WILLIAM SADLER  DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS”
    6:38

    ACTOR WILLIAM SADLER DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS”

    • Order:
    • Duration: 6:38
    • Uploaded Date: 07 Jan 2021
    • views: 61
    ACTOR WILLIAM SADLER DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS” with Writer / Director Elias Plagianos. Segment from piece that aired on WAMC by Allison Dunne. www.wamc.org More info on HUDSON FALLS - www.hudsonfalls.tv .
    https://wn.com/Actor_William_Sadler_Discusses_Pandemic_Film_Making_And_His_New_Project_“Hudson_Falls”
    William Sadler Interview: Shawshank & Steven Seagal Stories (Bill & Ted, Die Hard 2, Green Mile...)
    48:26

    William Sadler Interview: Shawshank & Steven Seagal Stories (Bill & Ted, Die Hard 2, Green Mile...)

    • Order:
    • Duration: 48:26
    • Uploaded Date: 21 Apr 2020
    • views: 7294
    In this new series, we'll be talking to iconic actors to go through their massive filmographies to share stories from the set. This episode we have legendary actor WILLIAM SADLER. Thank you Bill for giving us time to chat, it was truly an honor to talk! You may remember him from all of these iconic roles down below, which were only some of the parts we got to touch upon: Heywood from "The Shawshank Redemption" Death from "Bill & Ted's Bogus Journey" and the upcoming "Bill & Ted Face The Music" Jim Valenti in "Roswell", Luther Sloan on "Star Trek: Deep Space Nine" President Ellis in "Iron Man 3" and "Agents of S.H.I.E.L.D.' Colonel Stuart from "Die Hard 2: Die Harder", Klaus Detterick in "The Green Mile" Wild Bill from "Rocketman", Monroe in "Rush", Don from "Trespass", Jim in the "The Mist" The Grim Reaper from "Tales from the Crypt" Lt. Col. Lewis "Chesty; Puller. in "The Pacific" plus his Senator Trent was taken to the blood bank in Steven Seagal's "Hard to Kill" Not to mentuon over 140 more roles in Film & TV... https://m.imdb.com/name/nm0006669/filmotype/actor?ref_=m_nmfm_1 You can rent Bill's latest film VFW on most streaming platforms... and you can follow William Sadler on twitter here: https://twitter.com/Wm_Sadler Got an actor you want us to try and interview in a future episode? Then leave your suggestion down below! S U P P O R T T H I S. C H A N N E L: ► SUBSCRIBE or JOIN & Better Yet, BECOME A MEMBER: https://www.youtube.com/channel/UCCdicbO4cLE4s1wbXjJSuSg/join ► STREAMLABS: https://streamlabs.com/popcornedplanet/tip Support The Stream & Have Your Messages On The Show LIVEI! ► CASH APP https://cash.app/$AndySignore Don’t have the Cash Ap? Get it here & Credit Me $5 http://Cash.app/app/HNMVQGK ► PAYPAL: https://www.paypal.me/andysignore or VENMO: @Andrew-Signore W A T C H M Y. C O N T E N T: We Go LIVE every Tuesdays & Thursday around 9PM EST / 6PM PST We Stream All The Time on https://TWITCH.TV/PopcornedPlanet so go Sub or Follow! F O L L O W O N S O C I A L. M E D I A: ► Twitter: https://twitter.com/andysignore ► Instagram: https://instagram.com/andysignore ► Discord: https://discord.gg/9MatHM8 ► Facebook: https://facebook/andysignore F O L L O W M Y F R I E N D S: Jody’s Corner: https://www.youtube.com/channel/UC4UkKUNzwgBjyEsAlvqDqCg Nerd Report: https://www.youtube.com/user/NukeTheFridgeTV Ian Elliott-Carter: https://www.youtube.com/channel/UC0iNo9Ne7S0oRg5ERr4S9rQ Adan @ Nerdtots: https://www.youtube.com/channel/UCPEik5xccV2hgFQrNna074g A B O UT T H I S C H A N N E L : @PopcornedPlanet offers passionate takes on all things Movies, TV & Pop Culture, created and led by Andy Signore (creator of ScreenJunkies, Honest Trailers, MovieFights, Man At Arms and more) You can learn about Andy’s journey here: https://www.youtube.com/watch?v=3wgOF... Andy also launched HUGGING THE CACTUS, a channel & series detailing the dangers of Cancel Culture, stories of redemption and life experience, which you can learn more here: http://www.uncanceled.com or subscribe at: http://YouTube.com/Hugging The Cactus C O N T A C T / B U S I N E S S : PopcornedPlanet@gmail.com
    https://wn.com/William_Sadler_Interview_Shawshank_Steven_Seagal_Stories_(Bill_Ted,_Die_Hard_2,_Green_Mile...)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 25:41

    Bill & Ted's Bogus Journey - Bonus Clip 1: William Sadler on Becoming the Reaper (HD)

    Subscribe to SHOUTFACTORY: http://bit.ly/1nm0dKP Follow us on TWITTER: https://twitter.com/shoutfactory Like us on FACEBOOK: http://on.fb.me/1nEYhOx In Bill & Ted's Bogus Journey, the titular time travelers aren't making history — they are history! When an evil-doer from the future sends eviller robot twins of Bill & Ted to assassinate and replace good, non-robot Bill & Ted, the guys wind up face to face with the Grim Reaper (William Sadler)! Can the now-dead duo escape, defeat their evil doppelgangers, and win their Battle of the Bands contest? Buy this title: https://www.shoutfactory.com/film/action-adventure/bill-ted-s-most-excellent-collection SHOUT! FACTORY has devoted itself to the higher pursuit of pop culture for the past 10 years. During that time, we've released some of TV's most beloved gems, such as Freaks And Geeks, My So-Called Life, Sports Night, MadTV and Mystery Science Theater. We've also reintroduced some of television's most adored personalities with collections featuring Dick Cavett, Tom Snyder, Jack Paar, Johnny Carson, Mel Brooks, Groucho Marx and Elvira, Mistress of the Night..
    1:38
    Bill & Ted's Bogus Journey - Bonus Clip 1: William Sadler on Becoming the Reaper (HD)
    Subscribe to SHOUTFACTORY: http://bit.ly/1nm0dKP Follow us on TWITTER: https://twitter.co...
    published: 20 Sep 2016
    Play in Full Screen
    2:57
    Bill & Ted's Bogus Journey (1991) - We're Dead Dude Scene (2/10) | Movieclips
    Bill & Ted's Bogus Journey - We're Dead Dude: Bill (Alex Winter) and Ted (Keanu Reeves) wi...
    published: 25 Jan 2019
    Play in Full Screen
    2:04
    William Sadler talks about working on Bogus Journey - 7/22/91
    Entertainment Tonight ran this interview with William Sadler on the Heaven set of Bogus Jo...
    published: 29 Jan 2011
    Play in Full Screen
    2:36
    Bill & Ted's Grim Reaper ad libbed a ton! (William Sadler 2016)
    +Filmed at Chicago Comic Con 2016 +Click here for more ChristineDoesCons Comic Con videos:...
    published: 20 Aug 2016
    Play in Full Screen
    4:08
    Grim Reaper in Bill & Ted 3?!?!?!?! (William Sadler 2016)
    +The Grim Reaper himself has said YES to being in Bill & Ted 3 :) +Filmed at Chicago Comic...
    published: 20 Aug 2016
    Play in Full Screen
    2:32
    Bill & Ted's Bogus Journey (1991) - You Have Sunk My Battleship! Scene (6/10) | Movieclips
    Bill & Ted's Bogus Journey - You Have Sunk My Battleship!: Bill (Alex Winter) and Ted (Kea...
    published: 25 Jan 2019
    Play in Full Screen
    2:31
    William Sadler interview from CNN aired in Japan - 1991
    This interview with William Sadler aired on Japanese television in 1991. Bill was at the ...
    published: 24 Jul 2010
    Play in Full Screen
    7:15
    William Sadler talks "Demon Knight" at Texas Frightmare Weekend
    MCTV got to find out some behind the scenes info on the classic 1995 film "Demon Knight" s...
    published: 21 Jan 2016
    Play in Full Screen

    William Sadler Franks

    William Sadler Franks (26 April 1851 in Newark, Nottinghamshire 19 June 1935 in East Grinstead) was a British astronomer.

    He published a catalogue of the colours of 3890 stars.

    Franks was employed between 1892 and 1904 by the wealthy amateur astronomer Isaac Roberts as an assistant to support the photographic observations of star clusters and nebulae at Roberts's private observatory at Crowborough in Sussex.

    In 1910 he was hired by F. J. Hanbury (of the Allan and Hanbury firm) to work as an observer at Hanbury's private Brockhurst Observatory at East Grinstead in Sussex. He continued his studies of the colours of stars there, and also made micrometer measurements of double stars. In 1923 he won the Jackson-Gwilt Medal of the Royal Astronomical Society.

    One of the other observers who used the Brockhurst Observatory with Franks was a teenage Patrick Moore (fourteen years old at Franks's death).

    References

    External links

  • http://www.shastro.org.uk/docs/sha_nov2002_lo.pdf

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • William Sadler
      11:07
      William Sadler "The Grim Reaper" on BILL & TED 3, Death's Accent & More | Metal Injectionremove from playlist
    • William Sadler (actor)
      1:03:06
      William Sadler (actor)remove from playlist
    • Assulted Nuts Death with William Sadler
      3:05
      Assulted Nuts Death with William Sadlerremove from playlist
    • THE HILLS RUN RED - Actor WILLIAM SADLER interview. Sofia, Bulgaria. June, 2008
      18:42
      THE HILLS RUN RED - Actor WILLIAM SADLER interview. Sofia, Bulgaria. June, 2008remove from playlist
    • William Sadler (Actor)
      1:18
      William Sadler (Actor)remove from playlist
    • ACTOR  WILLIAM SADLER  DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS”
      6:38
      ACTOR WILLIAM SADLER DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS”remove from playlist
    • William Sadler Interview: Shawshank & Steven Seagal Stories (Bill & Ted, Die Hard 2, Green Mile...)
      48:26
      William Sadler Interview: Shawshank & Steven Seagal Stories (Bill & Ted, Die Hard 2, Green Mile...)remove from playlist
    PLAYLIST TIME: 0:00 / 2:43:13

    William Sadler "The Grim Reaper" on BILL & TED 3, Death's Accent & More | Metal Injection

    Actor William Sadler talks about reprising his role as the Grim Reaper in Bill & Ted 3: Face The Music, his original audition for Bogus Journey, how “Death” got a European accent in the first place, playing bass in the Wyld Stallyns, and much more! Subscribe to Metal Injection on YouTube: http://bit.ly/ZhpTbA FOLLOW US: http://facebook.com/metalinjection http://instagram.com/metalinjection http://twitter.com/metalinjection http://metalinjection.net
    11:07
    William Sadler "The Grim Reaper" on BILL & TED 3, Death's Accent & More | Metal Injection
    Actor William Sadler talks about reprising his role as the Grim Reaper in Bill & Ted 3: Fa...
    published: 25 Aug 2020
    Play in Full Screen
    10:51
    “The Naked Truth” Getting nude in Die Hard 2 (The Kitchen Tapes, Episode 6)
    published: 01 Jun 2020
    Play in Full Screen
    1:03:06
    William Sadler (actor)
    Episode 200- William Sadler!!! It’s a landmark episode with an iconic actor. William has ...
    published: 07 Dec 2021
    Play in Full Screen
    3:05
    Assulted Nuts Death with William Sadler
    I will bring you great trailers, behind the scenes material and assorted nonsense about fi...
    published: 01 Oct 2022
    Play in Full Screen
    18:42
    THE HILLS RUN RED - Actor WILLIAM SADLER interview. Sofia, Bulgaria. June, 2008
    From the SCREAM FACTORY Blu-ray of THE HILLS RUN RED. Available NOW! Celebrated actor Wil...
    published: 05 Oct 2020
    Play in Full Screen
    1:18
    William Sadler (Actor)
    William Thomas Sadler is an American and actor. His and motion picture roles have incl...
    published: 30 Aug 2020
    Play in Full Screen
    6:38
    ACTOR WILLIAM SADLER DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS”
    ACTOR WILLIAM SADLER DISCUSSES PANDEMIC FILM MAKING and his NEW Project “HUDSON FALLS” ...
    published: 07 Jan 2021
    Play in Full Screen
    48:26
    William Sadler Interview: Shawshank & Steven Seagal Stories (Bill & Ted, Die Hard 2, Green Mile...)
    In this new series, we'll be talking to iconic actors to go through their massive filmogra...
    published: 21 Apr 2020
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×