- published: 24 Apr 2023
- views: 9739438
'+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; })); }); -->
Tim Weisberg (born 1943 in Hollywood, California) is an American jazz/rock fusion flautist, composer, producer, and vocalist. In high school, at his first music class, because his last name was at the end of the alphabet, he was last to pick an instrument. All that was left was the flute and the bassoon. He picked the flute because it was easier to carry, and because the flute section was all girls.
He released two collaborations with American singer-songwriter Dan Fogelberg. Weisberg later sued Fogelberg for alleged breach of contract and fraud relating to the recording of the No Resemblance Whatsoever album.
Weisberg has performed with David Benoit,The Carpenters, Dave Mason, Lynn Blessing, David Arkenstone, Art Johnson, Chuck Alvarez, Eddie Rabbit, Dave Parlato, and Samantha Siva.
Time traveler(s), or Time traveller(s) may refer to:
Time Traveler is a fantasy text adventure developed by Krell Software Corp. The game was released on the 16K, Level II TRS-80.
The object of the game is for a player to go back in time and obtain 14 rings, each hidden in a different era and possessing a different special power that can help the player in some way. The player then returns with them to the time machine laboratory.
The game was reviewed in The Dragon #44 by Mark Herro. Herro said that his opinion of the game kept changing as he played it; he intended to evaluate the game negatively at first, but the more he played the more he found himself liking it despite its problems. As he was playing an early pre-production advance copy, he found a number of little bugs in the program. Krell Software told him they had taken care of the problems in later versions.
Time Traveler or Hologram Time Traveler is a stereographic laserdisc FMV arcade game released in 1991 by Sega and designed by Dragon's Lair creator Rick Dyer. It is called the "World's First Holographic Video Game" because it uses a special arcade cabinet that projects the game's characters. The "holographic" effect is an optical illusion using a large curved mirror and a CRT television set.
The game's premise is that American old west cowboy Marshal Gram (played by Stephen Wilber, also hired to coordinate the game's stunts) is required to save the universe from scientist turned evil time lord Vulcor, who's found a way to manipulate and distort time itself; and to also rescue Princess Kyi-La of the Galactic Federation, whom Vulcor is holding prisoner in his quest to disrupt the flow of time. Basically the player needed to pursue a villain across time through the ages overcoming various obstacles along the way while undoing all the damage done by Vulcor. The game's action sequences were filmed in San Diego, California, with forty actors and a small production crew of about five people headed by Producer/Director Mark E. Watson of Fallbrook California. The game takes place across many iconic settings from different time periods. All the game's footage was shot as if it were a live action movie. Few props were used during filming as the actors had to imagine fantastical locations while being filmed in front of a green screen stage. Some actors performed multiple roles, for example, the same actor played the obese "amazon queen" in the bonus DVD features and a chainsaw-wielding character in the game. The game's special effects, music and character voices were later added at a special effects studio in Carlsbad, California.
Visit http://www.brilliant.org/answerswithjoe to start learning STEM for free, and the first 200 people will get 20% off their annual premium subscription. Also, watch this video ad-free over on Nebula: https://nebula.tv/videos/joescott-the-most-convincing-time-traveler-story In 2006, a mysterious man appeared on the streets of Kiev, claiming to have come from 1958. And the story gets crazier from there. The Sergei Ponomarenko story has become a bit of an internet phenomenon as one of the most compelling time traveler stories ever documented. It's a great story. But is it any more than that? Special thanks to AJ over at the Why Files for sharing his research from his video, you can see it here: https://youtu.be/_CEyRrYzPVk Want to support the channel? Here's how: Patreon: http://www.p...
#reaction #paranormal #strange A self-proclaimed time traveler tells us about what will happen in the year 2045 and it's not what you may think and he promises to tell the truth. GET THE MERCH https://www.caspersight.com/ Watch Me Live On KICK: I Live stream Mondays, Wednesdays, and Saturdays at 8PM GMT https://kick.com/caspersight Become A Member https://www.youtube.com/channel/UCsKoK2I0iDWtbCvRzGTnPTQ/join If you want to send me something here's my PO BOX Address Caspersight PO Box 553 Newquay England TR7 9EG CD KEYS AFFILIATE LINK - GET CHEAPER GAMES HERE http://www.cdkeys.com/?mw_aref=Caspersight
The question of whether time travel is feasible has been around ever since the publication of H.G. Wells' novel, “The Time Machine”. The novel tells the story of a Victorian inventor who travels back in time to the year 802 AD. Some people believe that time travel is possible in the future, while others dismiss such ideas as science fiction. In one instance, a man claimed to have visited the year 2345 and gave some ominous predictions about what lay ahead. Subscribe Here ➡ https://www.youtube.com/channel/UCYYUGTG__Kc_4RBhv7FEolg/?sub_confirmation=1 Disclaimer: Our videos are designed for entertainment purposes, not academic research or reference. Though we aim for accuracy and creativity, they are not peer-reviewed and should be enjoyed as such. #Voyager
For copyright matters, please contact: [email protected] Welcome to the Discoverize! Here, we dive into the most exciting and unbelievable things that the world has to offer. From ancient artifacts to mind-blowing scientific theories, there's never a dull moment on our channel. Join us as we embark on a thrilling journey of discovery and wonder, and get ready to have your socks knocked off by the amazing things that we uncover. Whether you're a lifelong learner or just looking for a good time, our channel is sure to entertain and educate. Buckle up and get ready for an unforgettable ride!
When NYC meets Mumbai, they travel time. Concept & Direction: Ishita Mili @ishitamili Choreography & Performance: Swetha Warrier @shweta_warrier Ishita Mili @ishitamili Cinematography: GOGA @goga_it_is Editor & VFX: GOGA @goga_it_is Assistant: Suru Varma @hey_suru Music: Time Traveller - M.I.A. @miamatangi
An exploration of the physics and science behind time travel and the enormous implications of it. My Patreon Page: https://www.patreon.com/johnmichaelgodier My Event Horizon Channel: https://www.youtube.com/eventhorizonshow Music: Darkest Child by Kevin MacLeod is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Intermission in D by Miguel Johnson https://migueljohnson.bandcamp.com/
What if I told you time traveling is real, and there is good proof of that? There's footage of a cyborg who came to us from the year 2050 to stop the coming end of the world. In 2020, he appeared on a TV show where he said the whole world was inside the matrix. Another time traveler is Adam Archon, who came to us from 2045, and shared some details about the future of the US. And these aren't the only amazing stories - let's hear more. Read more: https://brightside.me/wonder-curiosities/what-if-you-have-already-met-a-time-traveler-814493/ #brightside Animation is created by Bright Side. ---------------------------------------------------------------------------------------- Music by Epidemic Sound https://www.epidemicsound.com Check our Bright Side podcast on Spotify and leave a p...
BREAKING! Shocking Evidence REVEALS Time Travel is Possible Videos on Factnomenal are based for entertainment purposes only. Enjoy the content, but always verify with your own research before drawing conclusions. Thanks for watching Factnomenal! 🌎 Subscribe for more space discoveries, space facts, and space in general! 🔔 Hit the bell next to subscribe so you never miss a video! ► For copyright matters, make sure to send us an email at [email protected]
► Subscribe For Future Videos: http://bit.ly/1gnvQD2
The final hurrah from legendary game designer Rick Dyer, creator of Dragon's Lair, Space Ace and Thayer's Quest. Produced by SEGA in 1991, this was the first holographic video game. (It wasn't a "true" hologram. A dome mirror was built into the cabinet that the player could not see. Images were played on a tv screen, and reflected by the mirror creating a semi-3D FISHEYE look.) SEGA bought the rights to release the game before it was even finished. Being someone who grew up with Dragon's Lair and Space Ace, it's very nice to be able to play something else from the same creator. Rick Dyer is one of my personal heroes, and his games are my favorites. By the way, if you want to play this game yourself, good luck finding it. It took me DAYS to find a working version...
Time Traveler by Sega was labeled the World's First Holographic Video Game on its release in 1991. But how does it play today? Special thanks to The Strong National Museum of Play for working with us on this episode: MuseumOfPlay.org #TimeTraveler #Sega #Arcade #Gaming #VideoGame #Strong #StrongMuseum #VideoGames #HolographicGaming
Holographic Time Traveller arcade game attract mode. You can read, watch, listen and play the history of the "Holographic" Time Traveler laserdisc arcade game, Dragon's Lair, and the laserdisc craze of the 1980s at my video game history website The Dot Eaters: https://thedoteaters.com/?bitstory=bitstory-article-2%2Fdragons-lair-and-the-laser-game-craze&page=5 The "holographic" Time Traveller Laserdisc arcade game by Rick Dyer, creator of the groundbreaking Dragon's Lair laserdisc arcade game, tried to further video game technology by creating the "holographic" arcade game Time Traveler for Sega in 1991. I put holographic in quotes because it wasn't really: images from a monitor inside the cabinet were bounced off a concave, blacked out semi-spheric mirror and reflected to a gameplay stage...
The history of the innovative holographic arcade game Legal download link for the game - https://archive.org/details/hologramtimetraveller If you would like to contact me via email please use [email protected] Please visit my Patreon at https://www.patreon.com/pdbowl Follow me on Twitter at https://twitter.com/pdqc1971 Follow me on Facebook at https://www.facebook.com/Patmanqc-History-of-arcade-game-documentaries-1199682223528770/?modal=admin_todo_tour
In this video I will be taking a look at a semi unique arcade game released by Sega called Time Traveler, this game was also known as Hologram Time Traveler is a stereographic laserdisc FMV arcade game released in 1991 by Sega and designed by Dragon's Lair creator Rick Dyer. It is called the "World's First Holographic Video Game" because it uses a special arcade cabinet that projects the game's characters. The "holographic" effect is an optical illusion using a large curved mirror (invented by Dentsu) and a CRT television set. A Concave mirror used for the "holographic" effect, he game uses a special arcade cabinet that projects the game's characters using reflection, making them appear free-standing. The "holographic" effect is an optical illusion using a large curved mirror and a CRT te...
Get the artwork that show the controls on screen here, place inside the artwork folder: https://www.mediafire.com/file/qkm7nwl5ixjb9op/timetrv.zip
Filmed at California Extreme 2009
There's something fishy about the footage from this 1995 Mike Tyson fight a man sitting ringside appears to be filming the bout with a smartphone. The internet went going wild with theories and headlines like: "video captures time travel" and "did time traveler film Tyson fight?" But the mystery has now been solved. The device the spectator was holding was a Dycam Logitech camcorder #InsideEdition
(Episode 59) Travel back with me to the 1980s! Particularly 1980 through to 1982 to explore the comics that defined this time period. Explore popular titles such as G.I. Joe, Moon Knight, Avengers, Smurfs, Star Trek, Star Wars, Masters of the Universe and more! Toylines and movie adaptions shaped the comic industry while lending to indie publishers and breaking free from the Comic Authority Code. View the artwork of Al Milgrom, Al Williamson, Carlos Garzon, Mike Golden, Frank Miller, and Bill Sienkiewicz who were the artful masters of the 80s! #comics #gijoe #moonknight #starwars #eighties
Some footage of Time Traveler arcade machine and interview with Rick Dyer (Dragon's Lair, Space Ace, Thayer's Quest)
Tim Weisberg (born 1943 in Hollywood, California) is an American jazz/rock fusion flautist, composer, producer, and vocalist. In high school, at his first music class, because his last name was at the end of the alphabet, he was last to pick an instrument. All that was left was the flute and the bassoon. He picked the flute because it was easier to carry, and because the flute section was all girls.
He released two collaborations with American singer-songwriter Dan Fogelberg. Weisberg later sued Fogelberg for alleged breach of contract and fraud relating to the recording of the No Resemblance Whatsoever album.
Weisberg has performed with David Benoit,The Carpenters, Dave Mason, Lynn Blessing, David Arkenstone, Art Johnson, Chuck Alvarez, Eddie Rabbit, Dave Parlato, and Samantha Siva.
You are my light, I have to go on
Have me anyway you want to
Just take care and love me
Til my tension's gone
Cause you are my starship
Come take me up tonight
And don't be late
Yes, you are my starship
Come take me up tonight
And don't be late
And don't you come too soon
Baby, yeah
Oh, oh, you are my starship
Come take me up tonight
And don't be late
Yes, you are my starship
Come take me up tonight
And don't be late
And don't you come too soon
I can't say (I just can't say)
(I just can't say)
It's here that you want me
(I just can't say, I just can't say)
Oh, baby, I don't want nobody
Nobody kissing you but me
(Can't say) oh, baby (I just can't say)
Cause you are my starship
Come take me up tonight
And don't be late
Yes, you are my starship
Come take me up tonight
And don't be late
And don't you come too soon
Baby, oh, yeah
Take me up tonight
And don't be late
Oh, you are my starship
Won't you take me tonight
And don't be late
And don't you come too soon