- published: 31 May 2016
- views: 211991
'+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; })); }); -->
The 13th Floor Elevators is an American rock band from Austin, Texas, formed by guitarist and vocalist Roky Erickson, electric jug player Tommy Hall, and guitarist Stacy Sutherland, which existed from 1965 to 1969. During their career, the band released four LP records and seven 45s for the International Artists record label.
They are often credited as one of the first psychedelic bands in the history of rock n' roll. According to the 2005 documentary You're Gonna Miss Me, Tommy Hall is credited with coining the term "psychedelic rock", although artists such as the Holy Modal Rounders and the Deep had used the term "psychedelic" to describe their music earlier. Their contemporary influence has been acknowledged by 1960s musicians such as Billy Gibbons of ZZ Top, Peter Albin of Big Brother and the Holding Company, and Chris Gerniottis of Zakary Thaks.
Their debut 45 "You're Gonna Miss Me", a national Billboard No. 55 hit in 1966, was featured on the 1972 compilation Nuggets: Original Artyfacts from the First Psychedelic Era, 1965-1968, which is considered vital in the history of garage rock and the development of punk rock. Seminal punk band Television played their song "Fire Engine" live in the mid-1970s. In the 1980s–1990s, the 13th Floor Elevators influenced important bands such as Primal Scream, the Shamen and Spacemen 3, all of whom covered their songs, and 14 Iced Bears who use an electric jug on their single "Beautiful Child". In 2009 the International Artists released a ten CD box set entitled Sign of the 3-Eyed Men, which included the mono and new, alternate stereo mixes of the original albums together with two albums of previously unreleased material and a number of rare live recordings.
Doctor Victor Von Doom, better known as Doctor Doom, is a fictional supervillain appearing in American comic books published by Marvel Comics. The son of Romani witch Cynthia Von Doom, Doctor Doom is the archenemy of the Fantastic Four, and the leader of the fictional nation of Latveria. He is both a genius inventor and a sorcerer. While his chief opponents have been the Fantastic Four, he has also come into conflict with Spider-Man, the Avengers and other superheroes in the Marvel Universe.
Doctor Doom has made many appearances in video games, television series, and merchandise such as action figures and trading cards. He was ranked as the 4th Greatest Villain by Wizard on its 100 Greatest Villains of All Time list.IGN's list of the Top 100 Comic Book Villains of All Time ranked Doctor Doom as #3.
Doctor Doom has also been featured in other Marvel-endorsed feature films such as Roger Corman's unreleased 1994 The Fantastic Four played by Joseph Culp, while actor Julian McMahon played him in the 2005 film Fantastic Four and its 2007 sequel Fantastic Four: Rise of the Silver Surfer as the films' antagonist. Toby Kebbell portrays the character in the 2015 reboot.
Doctor Doom (real name Doctor Victor von Doom, or Dr. Doom for short) is a Marvel comic book supervillain. The name may also refer to:
The Psychedelic Sounds of the 13th Floor Elevators 1966 Roky Erickson – vocals, rhythm guitar, harmonica Stacy Sutherland – lead guitar Tommy Hall – amplified jug Ronnie Leatherman – bass John Ike Walton – drums, percussion "Your Gonna Miss Me" You're gonna wake up one morning as the sun greets the dawn You're gonna wake up one morning as the sun greets the dawn You're gonna look around in your mind, girl, you're gonna find that I'm gone You didn't realize You didn't realize You didn't realize You didn't realize You didn't realize Oh you're gonna miss me, baby Oh you're gonna miss me, baby Oh you're gonna miss me, child, yeah, yeah I gave you the warning But you never heeded it How can you say you miss my lovin When you never needed it You're gonna wake up wonderin' Find yourself a...
1966......#55 U.S. Billboard Hot 100, #54 Canada Original video edited and AI remastered with stereo sound. "You're Gonna Miss Me" is a song by the American psychedelic rock band the 13th Floor Elevators, written by Roky Erickson, and released as the group's debut single on Contact Records, on January 17, 1966. It was reissued nationally on International Artists, in May 1966. Musically inspired by traditional jug band and R&B music, combined with the group's own experimentation, "You're Gonna Miss Me", along with its Stacy Sutherland and Tommy Hall-penned B-side, "Tried to Hide", was influential in developing psychedelic rock and garage rock, and was one of the earliest rock compositions to utilize the electric jug. Accordingly, critics often cite "You're Gonna Miss Me" as a bona fide g...
"Slip Inside This House" by 13th Floor Elevators, as performed on the "Easter Everywhere" album.
Provided to YouTube by The-Source You're Gonna Miss Me (QFPS Version) · 13th Floor Elevators · Charly Publishing Limited · Charly Publishing Ltd · Erickson The Psychedelic Sounds of the 13th Floor Elevators ℗ 2024 Charly Acquisitions Ltd. Released on: 1966-11-01 Music Publisher: Charly Publishing Limited Music Publisher: Charly Publishing Ltd Composer: Erickson Auto-generated by YouTube.
A man named Alex steps into an elevator and notices there’s no 13th-floor button, which seems normal—until the lights flicker and a glowing "13" button mysteriously appears. Curiosity takes over, and he presses it. The elevator jolts and opens to a dimly lit, abandoned hallway with flickering lights and eerie shadows. As Alex peers down the hall, he sees faint movement and whispers echo around him. Just as he tries to retreat, he hears a sound behind him, turns in fear, and the screen cuts to black.
The 13th Floor Elevators' encore performance of the psychedelic classic "You're Gonna Miss Me" at their 50th Anniversary Concert at Austin Psych Fest Presents Levitation on Sunday May 10, 2015.
Provided to YouTube by The Orchard Enterprises Roller Coaster · 13th Floor Elevators · Erickson · Hall The Psychedelic Sounds of the 13th Floor Elevators ℗ 1966 International Artists Released on: 2012-10-01 Auto-generated by YouTube.
Footage by exotic dancers Janik and Arnaut, 1954.
Provided to YouTube by The-Source Slip Inside This House (QFPS Version) · 13th Floor Elevators · Charly Publishing Ltd · Erickson · Hall Easter Everywhere ℗ 2024 Charly Acquisitions Ltd. Released on: 2024-04-12 Music Publisher: Charly Publishing Ltd Composer: Erickson Composer: Hall Auto-generated by YouTube.
#doomsday #rdj #doctordoom #trailer #marvel #mcu 🔥Get ready, Marvel fans! Robert Downey Jr. is BACK in the MCU, but not as the beloved Iron Man. In this epic fanmade concept trailer, witness RDJ take on the menacing role of Doctor Doom in the highly anticipated “Avengers: Doomsday” (2026)! 🌟 Theories & Speculations: ~Could Doctor Doom be the mastermind behind the multiverse collapse? ~How will the Avengers face this unprecedented threat? ~Will Steve Rogers return to guide Sam Wilson as the new Captain America? 🗓 Avengers: Doomsday Release Date: 2026 🎬 Avengers Doomsday Cast: ~Robert Downey Jr. as Doctor Doom ~Anthony Mackie as Captain America (Sam Wilson) ~Mark Ruffalo as Bruce Banner / Hulk ~Benedict Cumberbatch as Doctor Strange ~Elizabeth Olsen as Scarlet Witch ~Paul Bettany as Visi...
Watch the concept teaser trailer for Avengers 5: Doomsday, envisioned as an epic addition to the Marvel Cinematic Universe. This fan-made concept trailer from Foxstar Media features Robert Downey Jr. in a bold new role as Doctor Doom, bringing intense battles and thrilling twists to the Avengers' saga. Anticipated for a potential release in 2026, Avengers 5: Doomsday explores the clash between Earth's mightiest heroes and one of their most formidable foes. While Marvel Studios has confirm this project, fans can dream of its epic possibilities. Avengers 5: Doomsday—could this be the Avengers’ most challenging fight yet? AVENGERS 5: Doomsday – Teaser Trailer – Marvel Universe. #avengers5 #marvelstudios #robertdowneyjr #ironman4 #doomsday Editing, VFX, SFX, Thumbnail by @FoxStarMedia Rea...
#shorts #doctordoom #marvel 💚Subscribe To Top 10 Nerd💚: http://bit.ly/2eI6p18 💜Subscribe To Most Amazing Top 10 Anime💜: https://bit.ly/3wba66W Check Out Our Most Recent Uploads: https://www.youtube.com/watch?v=yDFmu7a3FtE&list=UUF5tN4DO3Eh-BBOddG09gHw 💛 Subscribe To Top 10 Nerd Elite: https://bit.ly/3BC5JTP 💙 Follow Top 10 Nerd Facebook: https://www.facebook.com/top10nerdofficial For business inquiries please contact [email protected] Hosted By: Amanda McKnight: Twitter: https://twitter.com/vampx13 Edited By: Ryan Lorenzetti: https://www.instagram.com/ryan_lor/
#hollywood #movieclips #actionmovies #akbgalaxy #trending
During the Marvel Panel at Comic-Con 2024, Robert Downey Jr. shocked the world as he was announced to play Doctor Doom in Avengers: Doomsday. SUBSCRIBE ► http://www.youtube.com/subscription_center?add_user=attractionsmagazine CLICK THE BELL to be notified when we post new videos. BUY OUR PAST MAGAZINES ► http://attractionsmagazine.com/store SOCIAL MEDIA LINKS ► TWITTER: http://www.twitter.com/attractions FACEBOOK: http://www.facebook.com/attractionsmagazine INSTAGRAM: http://www.instagram.com/attractionsmagazine TIKTOK: http://www.tiktok.com/@attractions PINTREST: https://www.pinterest.com/attractions SNAPCHAT: AttractionsMag LINKEDIN: linkedin.com/company/attractionsmagazine VISIT OUR WEBSITE: http://attractionsmagazine.com Attractions Magazine covers all the best theme parks and attr...
All powers scenes of Doctor Doom (Julian McMahon) from Fantastic Four 1 & 2. If you guys want me to make the reboot (the less enjoyable one) I’ll probably do it soon. Thanks for watching and feel free to comment suggestions ❤️✌️ All Rights Go To Fox. I do not claim ownership of these clips/scenes from these movies.
Will Doctor Doom Lift Thor’s Hammer? Find Out Now! #shorts #dccomics #wishterminalcomics #justiceleaguecomics #comicbook #comicbooks #short #shortsvideo #shortvideo #trending #viralvideo When the unthinkable happens, Doctor Doom sets his sights on the ultimate challenge: lifting Thor’s legendary hammer, Mjölnir. Known for its enchantment that only the worthy can wield it, can Doom defy the odds and claim its power? Discover the shocking twists and secrets behind this epic moment!
A Clip from the show The Avengers: Earth's Mightiest Heroes. Season 2, episode 1 (episode 27 of the overall series). Episode name = The Private War of Doctor Doom
Join the Official World of Zaranyzerak discord server: https://discord.gg/BCE7zEdEGP 2013 - Episode 170 DVD Releases: Story 80 - Terror of the Zygons Story 81 - Planet of Evil Story 82 - Pyramids of Mars Story 83 - The Android Invasion Story 84 - The Brain of Morbius Story 85 - The Seeds of Doom Amazon links for Region 1 Editions: Terror of the Zygons (Story 80) http://www.amazon.com/gp/product/B00C6ACUF0/ref=as_li_tf_il?ie=UTF8&camp=1789&creative=9325&creativeASIN=B00C6ACUF0&linkCode=as2&tag=zrak-20 Planet of Evil (Story 81) http://www.amazon.com/gp/product/B00114XLZK/ref=as_li_tf_il?ie=UTF8&camp=1789&creative=9325&creativeASIN=B00114XLZK&linkCode=as2&tag=zrak-20 Pyramids of Mars (Story 82) http://www.amazon.com/gp/product/B0002F6BSS/ref=as_li_tf_il?ie=UTF8&camp=1789&creative=9325&...
Join the Official World of Zaranyzerak discord server: https://discord.gg/BCE7zEdEGP "Carrot juice, carrot juice, carrot juice!" The 6th Doctor gets put on Trial for the long awaited return of the series after its 18 month hiatus in the longest story in the history of the series - the 14-part epic, The Trial of a Time Lord! Story 144 - Trial of a Time Lord Parts 1-4: The Mysterious Planet Story 145 - Trial of a Time Lord Parts 5-8: Mindwarp Story 146 - Trial of a Time Lord Parts 9-12: Terror of the Vervoids Story 147 - Trial of a Time Lord Parts 13-14: The Ultimate Foe Amazon links: This season is now on BLU-RAY! Doctor Who: Colin Baker Complete Season 2 (Season 23) Blu-ray Set! .com https://amzn.to/30zDwLu .ca https://amzn.to/32K5eI2 The Trial of a Time Lord Boxed Set (Stories 144-14...
Join the Official World of Zaranyzerak discord server: https://discord.gg/BCE7zEdEGP Sponsor my YouTube channel on Patreon! http://www.patreon.com/zaranyzerak The one and only Doctor Who spin-off from the Classic era! Story 116a - K-9 and Company: A Girl's Best Friend Amazon link: Story 93 - The Invisible Enemy and K-9 and Company: A Girl's Best Friend http://www.amazon.com/gp/product/B001AGXEBU/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B001AGXEBU&linkCode=as2&tag=zrak-20&linkId=AYFIPWFJX43RQDII Special super duper thanks to VerminArt for the awesome rendition of yours truly with some "friends" for the titles! Be sure to check out his YouTube page and website: http://www.youtube.com/vermingti http://verminart.weebly.com/
Join the Official World of Zaranyzerak discord server: https://discord.gg/BCE7zEdEGP "Come on, Ace. We've got work to do!" The classic series goes out with a bang in Season 26 of the Doctor Who DVD Disambiguation! Story 156 - Battlefield Story 157 - Ghost Light Story 158 - The Curse of Fenric Story 159 - Survival Amazon links: This season is now on BLU-RAY! Doctor Who: Sylvester McCoy Complete Season 3 (Season 26) Blu-ray Set! .com https://amzn.to/3hoJGVt .ca https://amzn.to/30ttz29 Story 156 - Battlefield .com https://amzn.to/3eJ1idf .ca https://amzn.to/2Bg4SxC Story 157 - Ghost Light .com https://amzn.to/2WCI2rm .ca https://amzn.to/2ZJmZpd Story 157 - Ghost Light (Novelization - Target Books #149) .com https://amzn.to/3fO3NMq .ca https://amzn.to/2OVa2m9 Story 158 - The Curse of ...
Join the Official World of Zaranyzerak discord server: https://discord.gg/BCE7zEdEGP Sponsor my YouTube channel on Patreon! http://www.patreon.com/zaranyzerak "I might regenerate....feels different this time..." The 5th Doctor goes out in style with what many fans consider to be the greatest Doctor Who story ever in the classic era, preceded by more of some of his strongest stories. Let's take a look at the 5th Doctor's final days in Season 22 of the Doctor Who DVD Disambiguation! Amazon links: Story 131 - Warriors of the Deep http://www.amazon.com/gp/product/B00142UZ9O/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B00142UZ9O&linkCode=as2&tag=zrak-20&linkId=SCQN6HK6EMEKQ5R6 Story 132 - The Awakening http://www.amazon.com/gp/product/B004TPJMQU/ref=as_li_tl?ie=UTF8&camp=178...
If you want to know how civilization would look once it is crumbled you should definitely watch our picks for the best Post Apocalyptic tv shows. Discover the best… 📹 YouTube tool: https://www.tubebuddy.com/communitv We missed your favorite Post-Apocalyptic TV Series? Let us know in the comments! Follow us on... Instagram: http://bit.ly/2rnljTB Facebook: http://bit.ly/2PbYxGn Movies in this Ranking: 10. Falling Skies (2011–2015): (00:26) 9. Colony (2016–2018): (01:16) 8. The Last Ship (2014–2018): (02:07) 7. Station Eleven (2021-2022): (02:56) 6. See (2019- ): (03:42) 5. The 100 (2014–2020): (04:29) 4. Sweet Tooth (2021- ): (05:17) 3. Jericho (2006–2008): (06:06) 2. Into the Badlands (2015–2019): (06:58) 1. The Walking Dead (2010–2022): (08:45) You want to work with us? For ...
Join the Official World of Zaranyzerak discord server: https://discord.gg/BCE7zEdEGP Sponsor my YouTube channel on Patreon! http://www.patreon.com/zaranyzerak "WHO? AM? I????" After 7 years of false starts and empty promises, we finally had some new Who on our screens! But the joy was to be short lived. So what did all us Who fans DO during that 17 year drought? Let's take a look in this special expanded Disambiguation! Amazon link: Story 160 - Doctor Who: The Movie Special Edition http://www.amazon.com/gp/product/B0049S1NYG/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B0049S1NYG&linkCode=as2&tag=zrak-20&linkId=QLATZUSQNR4F7FC5
It's the end of the world as we know it. Join http://www.WatchMojo.com as we count down our picks for the Top 10 Movies Where the World Ends. Subscribe►►http://www.youtube.com/subscription_center?add_user=watchmojo Facebook►►http://www.Facebook.com/WatchMojo. Twitter►►http://www.Twitter.com/WatchMojo Instagram►►http://instagram.com/watchmojo Suggestion Tool►►http://www.WatchMojo.com/suggest Channel Page►►http://www.youtube.com/watchmojo For this list, we’re taking a look at movies where the world is either on the brink or in the midst of destruction. And by the end of the film, life on Earth as we know it must come to an end. Special thanks to our users Charlie Palmer, MTNAVA and Kimmy Palmer for submitting the idea on our Interactive Suggestion Tool at http://www.WatchMojo.com/suggest ...
Boy, there sure is some terrible television in the world…. Join http://www.WatchMojo.com as we count down our picks for theTop 10 Worst TV Shows of All Time. Subscribe►►http://www.youtube.com/subscription_center?add_user=watchmojo Facebook►►http://www.Facebook.com/WatchMojo. Twitter►►http://www.Twitter.com/WatchMojo Instagram►►http://instagram.com/watchmojo Suggestion Tool►►http://www.WatchMojo.com/suggest Channel Page►►http://www.youtube.com/watchmojo For this list, we'll be scouring TV's lengthy history in search of the programs that are universally viewed as lacking in quality. Special thanks to our users Liza Davydzenkava, SuperSaiyanKirby100, DonovanTPS, Jerome Magajes, Aeryk Marcellus Bacon, TylerKienzlen@gmail., sarahjessicaparkerth, mac121mr0, Brody Nicholas Eiffel Jay, jhwoe6, P...
Top 10 Bizarre Movies on Netflix Right Now Subscribe: http://goo.gl/Q2kKrD and also Ring the Bell to get notified // Have a Top 10 idea? Submit it to us here! http://watchmojo.com/suggest If you're looking for a weird night in tonight, we've got you covered. There's a ton of hidden gems all over Netflix, which means there's bound to be some bizarre movies littered across the streaming service. With movies like Cloud Atlas, Mr. Nobody, The Human Centipede and Teeth all showing up on Netflix, it seems like there's something for everyone! Welcome to WatchMojo.com, and today we’ll be counting down our picks for the Top 10 Bizarre Movies on Netflix Right Now. List rank and entries #10: "Deathgasm" #9: "Oldboy" #8: "Cloud Atlas" #7: "Eyes Wide Shut" #6: "The ABCs of Death" #5: "Wetlands" #4: "M...
The 13th Floor Elevators is an American rock band from Austin, Texas, formed by guitarist and vocalist Roky Erickson, electric jug player Tommy Hall, and guitarist Stacy Sutherland, which existed from 1965 to 1969. During their career, the band released four LP records and seven 45s for the International Artists record label.
They are often credited as one of the first psychedelic bands in the history of rock n' roll. According to the 2005 documentary You're Gonna Miss Me, Tommy Hall is credited with coining the term "psychedelic rock", although artists such as the Holy Modal Rounders and the Deep had used the term "psychedelic" to describe their music earlier. Their contemporary influence has been acknowledged by 1960s musicians such as Billy Gibbons of ZZ Top, Peter Albin of Big Brother and the Holding Company, and Chris Gerniottis of Zakary Thaks.
Their debut 45 "You're Gonna Miss Me", a national Billboard No. 55 hit in 1966, was featured on the 1972 compilation Nuggets: Original Artyfacts from the First Psychedelic Era, 1965-1968, which is considered vital in the history of garage rock and the development of punk rock. Seminal punk band Television played their song "Fire Engine" live in the mid-1970s. In the 1980s–1990s, the 13th Floor Elevators influenced important bands such as Primal Scream, the Shamen and Spacemen 3, all of whom covered their songs, and 14 Iced Bears who use an electric jug on their single "Beautiful Child". In 2009 the International Artists released a ten CD box set entitled Sign of the 3-Eyed Men, which included the mono and new, alternate stereo mixes of the original albums together with two albums of previously unreleased material and a number of rare live recordings.
Its an unlucky number,
But you're here to stay.
A black cloud that your under,
Everything out of phase.
Can you fell the vibrations,
Fell them getting strange.
Circus, circus, convolutions,
Staying up for days.
When the 13th Floor stakes,
Your mind disintegrates,
Your young heart will be rotten to the core.
You need another fix, of psychedelic kicks,
Staying up here on the 13th Floor.
You know you'll never fit in,
Don't even try to begin.
Up here you check out,
As soon as you check in.
You know its like a poison,
And it gets you pinned.
The 13th Floor baby,
It gets under your skin.
When the 13th Floor stakes,
Your mind disintegrates,
Your young heart will be rotten to the core.
You need another fix, of psychedelic kicks,
Staying up here on the 13th Floor.
1,2,3,4,5,6,7,8,9,10,11,12,13th Floor.
1,2,3,4,5,6,7,8,9,10,11,12,13th Floor.
1,2,3,4,5,6,7,8,9,10,11,12,13th Floor.
1,2,3,4,5,6,7,8,9,10,11,12,13th Floor.
When the 13th Floor stakes,
Your mind disintegrates,
Your young heart will be rotten to the core.
You need another fix, of psychedelic kicks,
Take this trip you'll never get bored,
Come up to my floor,
I'll let you in the door,
You won't get to see the much daylight anymore,
I've been up for weeks,
Hanging with the freaks,