Last active
August 29, 2015 14:01
-
-
Save ericmoritz/f2be941ec96fb9745ebe to your computer and use it in GitHub Desktop.
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
| git log --pretty=oneline | awk '{print $1}' | xargs -n 1 git rev-parse --short | python ./namegen.py |
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
| git rev-parse --short HEAD | python ./namegen.py |
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
| from math import ceil | |
| import struct | |
| import itertools | |
| left = ["happy", "jolly", "dreamy", "sad", "angry", "pensive", "focused", "sleepy", "grave", "distracted", "determined", "stoic", "stupefied", "sharp", "agitated", "cocky", "tender", "goofy", "furious", "desperate", "hopeful", "compassionate", "silly", "lonely", "condescending", "naughty", "kickass", "drunk", "boring", "nostalgic", "ecstatic", "insane", "cranky", "mad", "jovial", "sick", "hungry", "thirsty", "elegant", "backstabbing", "clever", "trusting", "loving", "suspicious", "berserk", "high", "romantic", "prickly", "evil"] | |
| right = ["lovelace", "franklin", "tesla", "einstein", "bohr", "davinci", "pasteur", "nobel", "curie", "darwin", "turing", "ritchie", "torvalds", "pike", "thompson", "wozniak", "galileo", "euclid", "newton", "fermat", "archimedes", "poincare", "heisenberg", "feynman", "hawking", "fermi", "pare", "mccarthy", "engelbart", "babbage", "albattani", "ptolemy", "bell", "wright", "lumiere", "morse", "mclean", "brown", "bardeen", "brattain", "shockley", "goldstine", "hoover", "hopper", "bartik", "sammet", "jones", "perlman", "wilson", "kowalevski", "hypatia", "goodall", "mayer", "elion", "blackwell", "lalande", "kirch", "ardinghelli", "colden", "almeida", "leakey", "meitner", "mestorf", "rosalind", "sinoussi", "carson", "mcclintock", "yonath"] | |
| def gen(hex): | |
| """ | |
| >>> gen("70460b4b4aece5915caf5c68d12f560a9fe3e4") | |
| 'sick_sharp_nobel' | |
| """ | |
| # split the hex in thirds | |
| chunk_count = 3 | |
| chunk_size = int(ceil(len(hex) / chunk_count)) | |
| def chunk(i): | |
| return int( | |
| hex[i*chunk_size:(i*chunk_size)+chunk_size], | |
| 16, | |
| ) | |
| def word_set(i): | |
| if i < chunk_count - 1: | |
| return left | |
| else: | |
| return right | |
| def word(i, val): | |
| return word_set(i)[val % len(word_set(i))] | |
| words = (word(i, chunk(i)) for i in range(chunk_count)) | |
| return "_".join(words) + "_" + hex | |
| if __name__ == '__main__': | |
| import sys | |
| if sys.argv[1:] == ['test']: | |
| import doctest | |
| doctest.testmod() | |
| else: | |
| for line in sys.stdin: | |
| print gen(line.strip()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment