Skip to content

Instantly share code, notes, and snippets.

@Ghost---Shadow
Last active September 19, 2025 06:09
Show Gist options
  • Save Ghost---Shadow/e630cf6b3195cf0b3986817a1bdcc81d to your computer and use it in GitHub Desktop.
Save Ghost---Shadow/e630cf6b3195cf0b3986817a1bdcc81d to your computer and use it in GitHub Desktop.
Emoji OTP for astral projection - when letters/numbers become unreadable, emojis remain accessible
"""
Emoji OTP for astral projection - when letters/numbers become unreadable, emojis remain accessible
https://claude.ai/share/d24abbf3-323b-4d03-8a5d-be613cff0286
Use Ctrl + '+' (plus) key to zoom in terminal
"""
import random
import time
def generate_emoji_otp():
emojis = ["🍎", "🐢", "🌟", "🎈", "πŸš—", "🏠", "🌸", "⚽", "🎡", "πŸ•"]
return "".join(random.choices(emojis, k=4))
def main():
print("Generating OTP...")
time.sleep(5)
otp = generate_emoji_otp()
print(f"Your OTP: {otp}")
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment