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

Time Travel Is Lonely

Time Travel Is Lonely is the second album by John Vanderslice, released in 2001. Time Travel Is Lonely is a concept album about Vanderslice's fictional brother Jesse Vanderslice as he slowly succumbs to polar madness while living in Antarctica.

In the track "Do You Remember," Vanderslice imagines different possible outcomes for the famous Chinese rebel who held back tanks while protesting for Democracy at Tiananmen Square.

The song "Interlude 2" is based on the 1st Prelude in C from Bach's Well Tempered Clavier.

Track listing

  • "You Were My Fiji"
  • "Keep the Dream Alive"
  • "Little Boy Lost"
  • "Interlude 1"
  • "Everything Changed"
  • "My Old Flame"
  • "Interlude 3"
  • "Time Travel Is Lonely"
  • "If I Live or If I Die"
  • "Emma Pearl"
  • "Interlude 2"
  • "Do You Remember"
  • "Gainesville, Fla"
  • References


    Time travel

    Time travel is the concept of movement (often by a human) between different points in time in a manner analogous to moving between different points in space, typically using a hypothetical device known as a time machine. Time travel is a recognized concept in philosophy and fiction, but travel to an arbitrary point in time has a very limited support in theoretical physics, usually only in conjunction with quantum mechanics or Einstein–Rosen bridges. Sometimes the above narrow meaning of time travel is used, sometimes a broader meaning. For example, travel into the future (not the past) via time dilation is a well-proven phenomenon in physics (relativity) and is routinely experienced by astronauts, but only by several milliseconds, as they can verify by checking a precise watch against a clock that remained on Earth. Time dilation by years into the future could be done by taking a round trip during which motion occurs at speeds comparable to the speed of light, but this is not currently technologically feasible for vehicles.

    Code Lyoko

    Code Lyoko is a French animated television series created by Thomas Romain and Tania Palumbo and produced by Moonscoop. The series centers on a group of five teenagers who travel to the virtual world of Lyoko to battle against a malignant artificial intelligence named X.A.N.A. who threatens Earth. The series is presented in 2D hand-drawn animation and CGI.

    The series began its first run with ninety-five episodes on 3 September 2003, on France's France 3, and ended its run on 10 November 2007. It aired in the United States on 19 April 2004, for the first time on Cartoon Network. The show later spawned a new and improved live-action/CGI series Code Lyoko: Evolution, which began at the end of 2012. It kept the 3D computer animation style while it focused on Lyoko, the digital sea and the Cortex, while live-action for the real world.

    Between 2004 and 2007, Code Lyoko aired every day on Cartoon Network (Miguzi) at 4 PM Eastern Standard Time, sometimes showing two episodes consecutively, in the cases of season finales.

    Podcasts:

    • Time Traveler Caught On Video 😱 (EXPLAINED)

      published: 17 Oct 2022
    • Top 20 Photos That Can Prove Time Travel Really Exists

      Top 20 Photos That Can Prove Time Travel Exists. From mysterious scenes in Charlie Chaplin's films to soldiers striking futuristic poses in nineteen forty three, each photograph sparks curiosity about time-crossed realities. These captivating images prove that time travel exists and defy the conventional passage of time. As we explore these visual anomalies, two questions linger: Can the past and future truly intersect? Could these snapshots be evidence of a reality beyond our comprehension? Join us in this video as we explore twenty of the most intriguing photos that can prove time travel exists.. For business matters: theultimatediscovery1@gmail.com Disclaimer: The content presented in our videos is intended solely for entertainment purposes. While we may draw upon facts, rumors, an...

      published: 08 Jan 2024
    • This Man Mysteriously Time Traveled 40 Years Into The Future….

      Is Sergei Ponomarenko Irrefutable Proof That Time Travel Is Already Possible So, if you are ready, Let's go down This Rabbit Hole. #timetravel #conspiracy *Join this channel to get access to perks: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA/join ----------------------------------------------------------------------------------------------------------------------------------------------------------------- *Get some merch: https://www.theburrowsupplies.com/ ----------------------------------------------------------------------------------------------------------------------------------------------------------------- * Subscribe for more content just like this: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA -------------------------------------------------------...

      published: 02 Jul 2023
    • Does This Photo PROVE Time Travel Is Real #Shorts

      #timetravel #scary #timetraveler MORE TIME TRAVEL: https://youtu.be/ne9lnpX6gcg Does This Photo PROVE Time Travel Is Real #shorts subscribe To Top 5 Scary Videos: https://bit.ly/2wZ3UT4 Follow Our Facebook: https://www.facebook.com/Top5ScaryVideosOfficial Click Here To Check Out Our Latest Videos: https://www.youtube.com/watch?v=dTGBwkOc8_Q&list=UUhE2XVkaaQBR-ly3LaDjheA

      published: 23 Aug 2022
    • 12 Photos That Can Prove That Time Travel Exists

      Top 12 Photos That Prove That Time Travel Exists. Within these captivating images, a tantalizing notion emerges – one that challenges our understanding of time as we know it. The steady march of time, flowing seamlessly from the past to the present and beyond, is occasionally interrupted by moments and events that are captured in images that appear to disrupt the idea of time as we know it. As we embark on this intriguing journey, prepare to explore a world where the conventional narrative of time is greatly disrupted. Join us as we unravel these twelve photos that prove that time travel exists. They'll open your eyes to the possibility that time travel is a real phenomenon that we may be able to access in the future. After watching this video, you'll be more convinced than ever that time ...

      published: 30 Oct 2023
    • Did This Man Get Stuck In The Past

      The bizarre story of Mike Marcum. So, if you are ready, Let's go down This Rabbit Hole. #timetravel #mikemarcum #mystery *Join this channel to get access to perks: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA/join ----------------------------------------------------------------------------------------------------------------------------------------------------------------- *Get some merch: https://www.theburrowsupplies.com/ ----------------------------------------------------------------------------------------------------------------------------------------------------------------- * Subscribe for more content just like this: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA ------------------------------------------------------------------------------------------...

      published: 22 Oct 2022
    • We Traveled Back in Time. Now Physicists Are Angry.

      Go to https://brilliant.org/nutshell/ to dive deeper into these topics and more with a free 30-day trial + 20% off the premium subscription! This video was sponsored by Brilliant. Thanks a lot for the support! Go on your very own time travel adventure with our Timeline of Human History and Timeline of Complex Life Posters, only available on the kurzgesagt shop here: https://shop.kgs.link/TimeTravel Sources & further reading: https://sites.google.com/view/sources-time-travel/ Time travel is possible. In fact, you’ve been doing it since the day you were born. But what if we told you there’s a way to hack the universe and manipulate time itself? We just have to do two simple things to make it happen: 1. Make a lot of physicists grumpy. 2. Shoot one twin through space against their will...

      published: 27 Aug 2024
    • Time Traveler Shows Newspaper From 2027 (EXACT Dates of Events)

      In this video we sit down with Rebecca who claims to be a time traveler from the year 2028 who alleges to have proof. She showed us her proof which she claims to be a real newspaper from the future which contains the exact dates of future events. Watch this video next: 'We Have The Same Tattoo' Time Travelers Claim To Be Same Person https://youtu.be/1sCq0DVs2d8 Subscribe to ApexTV for more time travel stories like this.

      published: 27 May 2023
    • Einstein's Relativity:Path to Time Travel #stars #space #universe #shortvideo #astronomy #viralvideo

      #stars #universe #shortvideo #viralvideo #viralshorts #science "What is a black hole?" "How are stars born?" "Exploring the Milky Way galaxy" "What is dark matter?" "Can we live on Mars?" "Top 10 space discoveries of the year" "How big is the universe?" "What is a supernova?" "What causes a meteor shower?" "How does the sun produce energy?" "What is dark energy?" "What are exoplanets?" "Are there aliens in the universe?" "NASA's latest Mars mission explained" "How do astronauts train for space?" "What is the multiverse theory?" "Life on the International Space Station" "What are gravitational waves?" "How did the universe begin?" "What is a wormhole?" "What is the Hubble Space Telescope?" "Exploring the Andromeda galaxy" "Top 5 mysteries of black holes" "How do rockets work?" "The history ...

      published: 03 Nov 2024
    • Time Travel Tourists Spotted In A Picture From 1937. #shorts

      Picture of a group of people at a street party for the coronation of George VI in 1937, which clearly shows three time travelling tourists.

      published: 08 Nov 2022
    Time Traveler Caught On Video 😱 (EXPLAINED)
    0:24

    Time Traveler Caught On Video 😱 (EXPLAINED)

    • Order:
    • Duration: 0:24
    • Uploaded Date: 17 Oct 2022
    • views: 2081769
    https://wn.com/Time_Traveler_Caught_On_Video_😱_(Explained)
    Top 20 Photos That Can Prove Time Travel Really Exists
    34:35

    Top 20 Photos That Can Prove Time Travel Really Exists

    • Order:
    • Duration: 34:35
    • Uploaded Date: 08 Jan 2024
    • views: 197626
    Top 20 Photos That Can Prove Time Travel Exists. From mysterious scenes in Charlie Chaplin's films to soldiers striking futuristic poses in nineteen forty three, each photograph sparks curiosity about time-crossed realities. These captivating images prove that time travel exists and defy the conventional passage of time. As we explore these visual anomalies, two questions linger: Can the past and future truly intersect? Could these snapshots be evidence of a reality beyond our comprehension? Join us in this video as we explore twenty of the most intriguing photos that can prove time travel exists.. For business matters: theultimatediscovery1@gmail.com Disclaimer: The content presented in our videos is intended solely for entertainment purposes. While we may draw upon facts, rumors, and fiction, viewers should not interpret any part of the content as factual or definitive information. Please enjoy responsibly. Check Out These Videos: Top 20 Photos That Can Prove Time Travel Exists https://www.youtube.com/watch?v=qmCu19mtYnw&t=7s 10 Photos That Can Prove That Time Travel Exists https://www.youtube.com/watch?v=ZWGP0QugjcQ&t=8s 12 Photos That Can Prove That Time Travel Exists https://www.youtube.com/watch?v=S6QUjE4zsAI
    https://wn.com/Top_20_Photos_That_Can_Prove_Time_Travel_Really_Exists
    This Man Mysteriously Time Traveled 40 Years Into The Future….
    0:57

    This Man Mysteriously Time Traveled 40 Years Into The Future….

    • Order:
    • Duration: 0:57
    • Uploaded Date: 02 Jul 2023
    • views: 409208
    Is Sergei Ponomarenko Irrefutable Proof That Time Travel Is Already Possible So, if you are ready, Let's go down This Rabbit Hole. #timetravel #conspiracy *Join this channel to get access to perks: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA/join ----------------------------------------------------------------------------------------------------------------------------------------------------------------- *Get some merch: https://www.theburrowsupplies.com/ ----------------------------------------------------------------------------------------------------------------------------------------------------------------- * Subscribe for more content just like this: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA ----------------------------------------------------------------------------------------------------------------------------------------------------------------- *Get In Touch Instagram: https://www.instagram.com/watch_therabbithole/ Twitter: https://twitter.com/@rabbithole_YT TikTok: https://www.tiktok.com/@watch_the_rabbit_hole Facebook: https://www.facebook.com/watchtherabbithole
    https://wn.com/This_Man_Mysteriously_Time_Traveled_40_Years_Into_The_Future….
    Does This Photo PROVE Time Travel Is Real #Shorts
    0:49

    Does This Photo PROVE Time Travel Is Real #Shorts

    • Order:
    • Duration: 0:49
    • Uploaded Date: 23 Aug 2022
    • views: 2686043
    #timetravel #scary #timetraveler MORE TIME TRAVEL: https://youtu.be/ne9lnpX6gcg Does This Photo PROVE Time Travel Is Real #shorts subscribe To Top 5 Scary Videos: https://bit.ly/2wZ3UT4 Follow Our Facebook: https://www.facebook.com/Top5ScaryVideosOfficial Click Here To Check Out Our Latest Videos: https://www.youtube.com/watch?v=dTGBwkOc8_Q&list=UUhE2XVkaaQBR-ly3LaDjheA
    https://wn.com/Does_This_Photo_Prove_Time_Travel_Is_Real_Shorts
    12 Photos That Can Prove That Time Travel Exists
    31:15

    12 Photos That Can Prove That Time Travel Exists

    • Order:
    • Duration: 31:15
    • Uploaded Date: 30 Oct 2023
    • views: 3053751
    Top 12 Photos That Prove That Time Travel Exists. Within these captivating images, a tantalizing notion emerges – one that challenges our understanding of time as we know it. The steady march of time, flowing seamlessly from the past to the present and beyond, is occasionally interrupted by moments and events that are captured in images that appear to disrupt the idea of time as we know it. As we embark on this intriguing journey, prepare to explore a world where the conventional narrative of time is greatly disrupted. Join us as we unravel these twelve photos that prove that time travel exists. They'll open your eyes to the possibility that time travel is a real phenomenon that we may be able to access in the future. After watching this video, you'll be more convinced than ever that time travel is possible! For business matters: theultimatediscovery1@gmail.com Disclaimer: The content presented in our videos is intended solely for entertainment purposes. While we may draw upon facts, rumors, and fiction, viewers should not interpret any part of the content as factual or definitive information. Please enjoy responsibly. Check Out These Videos: 10 Photos That Can Prove That Time Travel Exists https://www.youtube.com/watch?v=ZWGP0QugjcQ 10 Photos That Can Prove Time Travel Exists https://www.youtube.com/watch?v=vCUw7QvmexE&t=26s Top 20 Photos That Can Prove Time Travel Exists https://www.youtube.com/watch?v=qmCu19mtYnw
    https://wn.com/12_Photos_That_Can_Prove_That_Time_Travel_Exists
    Did This Man Get Stuck In The Past
    0:56

    Did This Man Get Stuck In The Past

    • Order:
    • Duration: 0:56
    • Uploaded Date: 22 Oct 2022
    • views: 7128566
    The bizarre story of Mike Marcum. So, if you are ready, Let's go down This Rabbit Hole. #timetravel #mikemarcum #mystery *Join this channel to get access to perks: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA/join ----------------------------------------------------------------------------------------------------------------------------------------------------------------- *Get some merch: https://www.theburrowsupplies.com/ ----------------------------------------------------------------------------------------------------------------------------------------------------------------- * Subscribe for more content just like this: https://www.youtube.com/channel/UCxKpoGtfQmlAFl_QuFoxYNA ----------------------------------------------------------------------------------------------------------------------------------------------------------------- *Get In Touch Instagram: https://www.instagram.com/watch_therabbithole/ Twitter: https://twitter.com/@rabbithole_YT TikTok: https://www.tiktok.com/@watch_the_rabbit_hole Facebook: https://www.facebook.com/watchtherabbithole
    https://wn.com/Did_This_Man_Get_Stuck_In_The_Past
    We Traveled Back in Time. Now Physicists Are Angry.
    11:20

    We Traveled Back in Time. Now Physicists Are Angry.

    • Order:
    • Duration: 11:20
    • Uploaded Date: 27 Aug 2024
    • views: 6843748
    Go to https://brilliant.org/nutshell/ to dive deeper into these topics and more with a free 30-day trial + 20% off the premium subscription! This video was sponsored by Brilliant. Thanks a lot for the support! Go on your very own time travel adventure with our Timeline of Human History and Timeline of Complex Life Posters, only available on the kurzgesagt shop here: https://shop.kgs.link/TimeTravel Sources & further reading: https://sites.google.com/view/sources-time-travel/ Time travel is possible. In fact, you’ve been doing it since the day you were born. But what if we told you there’s a way to hack the universe and manipulate time itself? We just have to do two simple things to make it happen: 1. Make a lot of physicists grumpy. 2. Shoot one twin through space against their will, while the other chills on Earth. Let's go! OUR CHANNELS ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ German: https://kgs.link/youtubeDE Spanish: https://kgs.link/youtubeES French: https://kgs.link/youtubeFR Portuguese: https://kgs.link/youtubePT Arabic: https://kgs.link/youtubeAR Hindi: https://kgs.link/youtubeHI Japanese: https://kgs.link/youtubeJA Korean: https://kgs.link/youtubeKO HOW CAN YOU SUPPORT US? ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ This is how we make our living and it would be a pleasure if you support us! Get Products designed with ❤️ https://shop.kgs.link Join the Patreon Bird Army 🐧 https://kgs.link/patreon DISCUSSIONS & SOCIAL MEDIA ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ TikTok: https://kgs.link/tiktok Reddit: https://kgs.link/reddit Instagram: https://kgs.link/instagram Twitter: https://kgs.link/twitter Facebook: https://kgs.link/facebook Discord: https://kgs.link/discord Newsletter: https://kgs.link/newsletter OUR VOICE ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ The Kurzgesagt voice is from Steve Taylor: https://kgs.link/youtube-voice OUR MUSIC ♬♪ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ 700+ minutes of Kurzgesagt Soundtracks by Epic Mountain: Spotify: https://kgs.link/music-spotify Soundcloud: https://kgs.link/music-soundcloud Bandcamp: https://kgs.link/music-bandcamp Youtube: https://kgs.link/music-youtube Facebook: https://kgs.link/music-facebook The Soundtrack of this video: SoundCloud: https://bit.ly/4dYG221 Bandcamp: https://bit.ly/4dUHsur If you want to help us caption this video, please send subtitles to subtitle@kurzgesagt.org You can find info on what subtitle files work on YouTube here: https://support.google.com/youtube/answer/2734698?hl=en-GB&ref_topic=7296214 Thank you! 🐦🐧🐤 PATREON BIRD ARMY 🐤🐧🐦 ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ Many Thanks to our wonderful Patreons (from http://kgs.link/patreon) who support us every month and made this video possible: Angel Alberici, Kiwi, Liagadd, andrea hansen, Kinuko Kitabatake, Snorana, Nihility Rogue, G, Chris, Nicholas Bennett, Andreas Papanikos, Mohammed Al Rashed, Freddie, Tim, DerBerlinerBär 30, Jonas Gotscha, Aras Culhaci, OfficialLament, Epiccaro, Colin Babendure, Bläckshadow, Thomas Hesse, Aren Moy, Tim Borny, UMack, Andres Lorente
    https://wn.com/We_Traveled_Back_In_Time._Now_Physicists_Are_Angry.
    Time Traveler Shows Newspaper From 2027 (EXACT Dates of Events)
    7:28

    Time Traveler Shows Newspaper From 2027 (EXACT Dates of Events)

    • Order:
    • Duration: 7:28
    • Uploaded Date: 27 May 2023
    • views: 310699
    In this video we sit down with Rebecca who claims to be a time traveler from the year 2028 who alleges to have proof. She showed us her proof which she claims to be a real newspaper from the future which contains the exact dates of future events. Watch this video next: 'We Have The Same Tattoo' Time Travelers Claim To Be Same Person https://youtu.be/1sCq0DVs2d8 Subscribe to ApexTV for more time travel stories like this.
    https://wn.com/Time_Traveler_Shows_Newspaper_From_2027_(Exact_Dates_Of_Events)
    Einstein's Relativity:Path to Time Travel #stars #space #universe #shortvideo #astronomy #viralvideo
    0:37

    Einstein's Relativity:Path to Time Travel #stars #space #universe #shortvideo #astronomy #viralvideo

    • Order:
    • Duration: 0:37
    • Uploaded Date: 03 Nov 2024
    • views: 505
    #stars #universe #shortvideo #viralvideo #viralshorts #science "What is a black hole?" "How are stars born?" "Exploring the Milky Way galaxy" "What is dark matter?" "Can we live on Mars?" "Top 10 space discoveries of the year" "How big is the universe?" "What is a supernova?" "What causes a meteor shower?" "How does the sun produce energy?" "What is dark energy?" "What are exoplanets?" "Are there aliens in the universe?" "NASA's latest Mars mission explained" "How do astronauts train for space?" "What is the multiverse theory?" "Life on the International Space Station" "What are gravitational waves?" "How did the universe begin?" "What is a wormhole?" "What is the Hubble Space Telescope?" "Exploring the Andromeda galaxy" "Top 5 mysteries of black holes" "How do rockets work?" "The history of space exploration" "What is a neutron star?" "Space weather explained" "The science behind solar eclipses" "How do planets form?" "The search for Earth-like planets" "What are quasars?" "The future of space tourism" "What is a light-year?" "Can humans survive on the moon?" "SpaceX Mars colonization plans" "What is the Big Bang theory?" "How do telescopes work?" "What are cosmic rays?" "The mystery of fast radio bursts" "How far away is the nearest star?" "What are black hole event horizons?" "Exploring Europa, Jupiter’s moon" "What are star clusters?" "The science of zero gravity" "What is cosmic inflation?" "Famous astronauts in history" "How do space probes work?" "What is the fate of our solar system?" "What is a galaxy?" "How long will the sun last?" "Discovering new planets" "What are white dwarfs?" "The most powerful telescopes in the world" "What is the Kuiper Belt?" "Why do galaxies collide?" "The journey to Mars" "What are solar flares?" "How does a rocket launch work?" "Understanding black holes in 5 minutes" "Is time travel possible in space?" "What are rogue planets?" "Could life exist on Titan?" "How do we find new galaxies?" "Space exploration technology advancements" "The science of gravitational lensing" "What is an exoplanet atmosphere?" "The search for extraterrestrial intelligence" "What are magnetic fields in space?" "Understanding relativity in space" "What is the Goldilocks Zone?" "How was the solar system formed?" "Top 5 space exploration missions" "What is the Fermi Paradox?" "The closest black hole to Earth" "How does the moon affect Earth?" "Spacecraft landing on asteroids" "What is the Oort Cloud?" "Could we terraform Mars?" "What is interstellar travel?" "The history of the Apollo missions" "What is redshift?" "Can we communicate with aliens?" "What are binary star systems?" "Top facts about the Voyager probes" "How do astronauts sleep in space?" "What is space dust?" "The role of gravity in the universe" "How long does it take to get to Mars?" "What is an asteroid belt?" "The physics of a supermassive black hole" "What is cosmic background radiation?" "The life cycle of a star" "How does the James Webb Space Telescope work?" "The search for habitable planets" "What are gamma-ray bursts?" "Can we detect alien megastructures?" "What is antimatter?" "How do scientists detect exoplanets?" "Top space missions planned for the future" "What would happen if a black hole hit Earth?"
    https://wn.com/Einstein's_Relativity_Path_To_Time_Travel_Stars_Space_Universe_Shortvideo_Astronomy_Viralvideo
    Time Travel Tourists Spotted In A Picture From 1937.  #shorts
    0:24

    Time Travel Tourists Spotted In A Picture From 1937. #shorts

    • Order:
    • Duration: 0:24
    • Uploaded Date: 08 Nov 2022
    • views: 655121
    Picture of a group of people at a street party for the coronation of George VI in 1937, which clearly shows three time travelling tourists.
    https://wn.com/Time_Travel_Tourists_Spotted_In_A_Picture_From_1937._Shorts
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Top 20 Photos That Can Prove Time Travel Really Exists
      34:35
      Top 20 Photos That Can Prove Time Travel Really Existsremove from playlist
    • This Man Mysteriously Time Traveled 40 Years Into The Future….
      0:57
      This Man Mysteriously Time Traveled 40 Years Into The Future….remove from playlist
    • Does This Photo PROVE Time Travel Is Real #Shorts
      0:49
      Does This Photo PROVE Time Travel Is Real #Shortsremove from playlist
    • 12 Photos That Can Prove That Time Travel Exists
      31:15
      12 Photos That Can Prove That Time Travel Existsremove from playlist
    • Did This Man Get Stuck In The Past
      0:56
      Did This Man Get Stuck In The Pastremove from playlist
    • We Traveled Back in Time. Now Physicists Are Angry.
      11:20
      We Traveled Back in Time. Now Physicists Are Angry.remove from playlist
    • Time Traveler Shows Newspaper From 2027 (EXACT Dates of Events)
      7:28
      Time Traveler Shows Newspaper From 2027 (EXACT Dates of Events)remove from playlist
    • Einstein's Relativity:Path to Time Travel #stars #space #universe #shortvideo #astronomy #viralvideo
      0:37
      Einstein's Relativity:Path to Time Travel #stars #space #universe #shortvideo #astronomy #viralvideoremove from playlist
    • Time Travel Tourists Spotted In A Picture From 1937.  #shorts
      0:24
      Time Travel Tourists Spotted In A Picture From 1937. #shortsremove from playlist
    PLAYLIST TIME: 0:00 / 1:28:45

    Time Traveler Caught On Video 😱 (EXPLAINED)

    0:24
    Time Traveler Caught On Video 😱 (EXPLAINED)
    published: 17 Oct 2022
    Play in Full Screen
    34:35
    Top 20 Photos That Can Prove Time Travel Really Exists
    Top 20 Photos That Can Prove Time Travel Exists. From mysterious scenes in Charlie Chaplin...
    published: 08 Jan 2024
    Play in Full Screen
    0:57
    This Man Mysteriously Time Traveled 40 Years Into The Future….
    Is Sergei Ponomarenko Irrefutable Proof That Time Travel Is Already Possible So, if you ...
    published: 02 Jul 2023
    Play in Full Screen
    0:49
    Does This Photo PROVE Time Travel Is Real #Shorts
    #timetravel #scary #timetraveler MORE TIME TRAVEL: https://youtu.be/ne9lnpX6gcg Does Th...
    published: 23 Aug 2022
    Play in Full Screen
    31:15
    12 Photos That Can Prove That Time Travel Exists
    Top 12 Photos That Prove That Time Travel Exists. Within these captivating images, a tanta...
    published: 30 Oct 2023
    Play in Full Screen
    0:56
    Did This Man Get Stuck In The Past
    The bizarre story of Mike Marcum. So, if you are ready, Let's go down This Rabbit Hole. ...
    published: 22 Oct 2022
    Play in Full Screen
    11:20
    We Traveled Back in Time. Now Physicists Are Angry.
    Go to https://brilliant.org/nutshell/ to dive deeper into these topics and more with a fre...
    published: 27 Aug 2024
    Play in Full Screen
    7:28
    Time Traveler Shows Newspaper From 2027 (EXACT Dates of Events)
    In this video we sit down with Rebecca who claims to be a time traveler from the year 2028...
    published: 27 May 2023
    Play in Full Screen
    0:37
    Einstein's Relativity:Path to Time Travel #stars #space #universe #shortvideo #astronomy #viralvideo
    #stars #universe #shortvideo #viralvideo #viralshorts #science "What is a black hole?" "Ho...
    published: 03 Nov 2024
    Play in Full Screen
    0:24
    Time Travel Tourists Spotted In A Picture From 1937. #shorts
    Picture of a group of people at a street party for the coronation of George VI in 1937, wh...
    published: 08 Nov 2022
    Play in Full Screen

    Time Travel Is Lonely

    Time Travel Is Lonely is the second album by John Vanderslice, released in 2001. Time Travel Is Lonely is a concept album about Vanderslice's fictional brother Jesse Vanderslice as he slowly succumbs to polar madness while living in Antarctica.

    In the track "Do You Remember," Vanderslice imagines different possible outcomes for the famous Chinese rebel who held back tanks while protesting for Democracy at Tiananmen Square.

    The song "Interlude 2" is based on the 1st Prelude in C from Bach's Well Tempered Clavier.

    Track listing

  • "You Were My Fiji"
  • "Keep the Dream Alive"
  • "Little Boy Lost"
  • "Interlude 1"
  • "Everything Changed"
  • "My Old Flame"
  • "Interlude 3"
  • "Time Travel Is Lonely"
  • "If I Live or If I Die"
  • "Emma Pearl"
  • "Interlude 2"
  • "Do You Remember"
  • "Gainesville, Fla"
  • References


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