Skip to content

Instantly share code, notes, and snippets.

View NicPWNs's full-sized avatar
🏴‍☠️

Nic Jones NicPWNs

🏴‍☠️
View GitHub Profile
@shello
shello / randomEmoji.py
Last active October 5, 2023 09:16
Random Emoji! (for Python 3)
#!/usr/bin/env python3
from itertools import accumulate
from bisect import bisect
from random import randrange
from unicodedata import name as unicode_name
# Set the unicode version.
# Your system may not support Unicode 7.0 charecters just yet! So hipster.
UNICODE_VERSION = 6