Skip to content

Instantly share code, notes, and snippets.

@botatooo
Last active June 15, 2022 00:15
Show Gist options
  • Save botatooo/d5c8b8720665a7b9cec2d4f2a770ae59 to your computer and use it in GitHub Desktop.
Save botatooo/d5c8b8720665a7b9cec2d4f2a770ae59 to your computer and use it in GitHub Desktop.
get discord account creation date in message timestamp format
userId = int(input("Enter your Discord user ID: "))
print("---")
inBinary = format(userId, "b")
inReverse = inBinary[::-1]
timestampPart = inReverse[22:64]
backInBase10 = int(timestampPart, 2)
plusDiscordEpoch = backInBase10 + 1420070400000
inSeconds = round(plusDiscordEpoch / 1000)
print("Copy paste this:")
print(f"<t:{inSeconds}:R>")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment