Last active
September 19, 2025 06:09
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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