Last active
October 4, 2020 05:35
-
-
Save tripulse/d86fff1507252f896c681d7d939f0274 to your computer and use it in GitHub Desktop.
Guru Rajashekhar style upvote generator (^^^^^^^^^^*$&$*&*#$&)
This file contains 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
from random import choice, choices | |
def upvote(upvote = '^', | |
numbers = '93475100809635819407912381031', | |
others = '~!@#$%^&*()`{}|":?><][;/.,', | |
weights = [0.2, 0.75, 0.05]): | |
"""Generate Guru Rajshekhar style upvotes. | |
:param upvote: a character representing upvote | |
:param numbers: random numbers (possibly phone numbers) | |
:param others: other characters for decorating output | |
:param weights: relative weights for [upvote, numbers, others], | |
these are parameters for probability distribution | |
""" | |
upvote = str(upvote)[:1] or '^' | |
numbers = str(numbers) or '^' # guru rajashekhar nambar | |
others = str(others) or '^' | |
weights = [*map(float, weights)] # convert to float implicitly | |
while True: | |
yield choice(choices((upvote, numbers, others), weights)[0]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
occ '-' done