---
title: Do you believe in time travel?
date: 2023-11-25T00:08:03Z
modified: 2024-08-01T22:05:18Z
permalink: "https://dogwonder.co.uk/2023/11/do-you-believe-in-time-travel/"
type: post
status: publish
excerpt: ""
wpid: 4863
categories:
  - Nostalgia
featured_image: "https://dogwonder.co.uk/wp-content/uploads/2023/11/CleanShot-2023-11-25-at-00.12.17@2x.png"
---

 The Tangent Universe collapsed 8943 days, 11 hours, 2 minutes and 30 seconds ago .proceed .


// Pass the initial time difference to JavaScript
var diffSeconds = 772714950;
// Function to format the time difference
function formatTimeDiff(seconds) {
    var days = Math.floor(seconds / (24*60*60));
    seconds -= days * 24*60*60;
    var hours = Math.floor(seconds / (60*60));
    seconds -= hours * 60*60;
    var minutes = Math.floor(seconds / 60);
    seconds -= minutes * 60;

    return 'The Tangent Universe collapsed ' + days + ' days, ' + hours + ' hours, ' + minutes + ' minutes, and ' + seconds + ' seconds ago';
}

// Update the display every second
setInterval(function() {
    diffSeconds++;
    document.getElementById('live-count').textContent = formatTimeDiff(diffSeconds);
}, 1000);