Skip to content

Instantly share code, notes, and snippets.

@odysseuskir
Last active May 13, 2023 09:34
Show Gist options
  • Save odysseuskir/218c3532fbbc2e476c97e6159551d75f to your computer and use it in GitHub Desktop.
Save odysseuskir/218c3532fbbc2e476c97e6159551d75f to your computer and use it in GitHub Desktop.
Doom clock
import time
a = 8.94112903 * (10 ** 111)
while a > 0:
a -= 1
print(f"The heat death of the universe will occur in {a} minutes")
time.sleep(60)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment