initial
This commit is contained in:
parent
4e11b4b2ba
commit
0bf51684b7
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.idea/*
|
366
main.py
Normal file
366
main.py
Normal file
@ -0,0 +1,366 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
import random
|
||||||
|
|
||||||
|
# verbs are copied from the docker sourcecode:
|
||||||
|
# https://github.com/moby/moby/blob/master/pkg/namesgenerator/names
|
||||||
|
# -generator.go
|
||||||
|
|
||||||
|
left = (
|
||||||
|
"adoring",
|
||||||
|
"affectionate",
|
||||||
|
"agitated",
|
||||||
|
"amazing",
|
||||||
|
"angry",
|
||||||
|
"awesome",
|
||||||
|
"beautiful",
|
||||||
|
"blissful",
|
||||||
|
"bold",
|
||||||
|
"boring",
|
||||||
|
"brave",
|
||||||
|
"busy",
|
||||||
|
"charming",
|
||||||
|
"clever",
|
||||||
|
"cool",
|
||||||
|
"compassionate",
|
||||||
|
"competent",
|
||||||
|
"condescending",
|
||||||
|
"confident",
|
||||||
|
"cranky",
|
||||||
|
"crazy",
|
||||||
|
"dazzling",
|
||||||
|
"determined",
|
||||||
|
"distracted",
|
||||||
|
"dreamy",
|
||||||
|
"eager",
|
||||||
|
"ecstatic",
|
||||||
|
"elastic",
|
||||||
|
"elated",
|
||||||
|
"elegant",
|
||||||
|
"eloquent",
|
||||||
|
"epic",
|
||||||
|
"exciting",
|
||||||
|
"fervent",
|
||||||
|
"festive",
|
||||||
|
"flamboyant",
|
||||||
|
"focused",
|
||||||
|
"friendly",
|
||||||
|
"frosty",
|
||||||
|
"funny",
|
||||||
|
"gallant",
|
||||||
|
"gifted",
|
||||||
|
"goofy",
|
||||||
|
"gracious",
|
||||||
|
"great",
|
||||||
|
"happy",
|
||||||
|
"hardcore",
|
||||||
|
"heuristic",
|
||||||
|
"hopeful",
|
||||||
|
"hungry",
|
||||||
|
"infallible",
|
||||||
|
"inspiring",
|
||||||
|
"interesting",
|
||||||
|
"intelligent",
|
||||||
|
"jolly",
|
||||||
|
"jovial",
|
||||||
|
"keen",
|
||||||
|
"kind",
|
||||||
|
"laughing",
|
||||||
|
"loving",
|
||||||
|
"lucid",
|
||||||
|
"magical",
|
||||||
|
"mystifying",
|
||||||
|
"modest",
|
||||||
|
"musing",
|
||||||
|
"naughty",
|
||||||
|
"nervous",
|
||||||
|
"nice",
|
||||||
|
"nifty",
|
||||||
|
"nostalgic",
|
||||||
|
"objective",
|
||||||
|
"optimistic",
|
||||||
|
"peaceful",
|
||||||
|
"pedantic",
|
||||||
|
"pensive",
|
||||||
|
"practical",
|
||||||
|
"priceless",
|
||||||
|
"quirky",
|
||||||
|
"quizzical",
|
||||||
|
"recursing",
|
||||||
|
"relaxed",
|
||||||
|
"reverent",
|
||||||
|
"romantic",
|
||||||
|
"sad",
|
||||||
|
"serene",
|
||||||
|
"sharp",
|
||||||
|
"silly",
|
||||||
|
"sleepy",
|
||||||
|
"stoic",
|
||||||
|
"strange",
|
||||||
|
"stupefied",
|
||||||
|
"suspicious",
|
||||||
|
"sweet",
|
||||||
|
"tender",
|
||||||
|
"thirsty",
|
||||||
|
"trusting",
|
||||||
|
"unruffled",
|
||||||
|
"upbeat",
|
||||||
|
"vibrant",
|
||||||
|
"vigilant",
|
||||||
|
"vigorous",
|
||||||
|
"wizardly",
|
||||||
|
"wonderful",
|
||||||
|
"xenodochial",
|
||||||
|
"youthful",
|
||||||
|
"zealous",
|
||||||
|
"zen",
|
||||||
|
)
|
||||||
|
|
||||||
|
right = (
|
||||||
|
"albattani",
|
||||||
|
"allen",
|
||||||
|
"almeida",
|
||||||
|
"antonelli",
|
||||||
|
"agnesi",
|
||||||
|
"archimedes",
|
||||||
|
"ardinghelli",
|
||||||
|
"aryabhata",
|
||||||
|
"austin",
|
||||||
|
"babbage",
|
||||||
|
"banach",
|
||||||
|
"banzai",
|
||||||
|
"bardeen",
|
||||||
|
"bartik",
|
||||||
|
"bassi",
|
||||||
|
"beaver",
|
||||||
|
"bell",
|
||||||
|
"benz",
|
||||||
|
"bhabha",
|
||||||
|
"bhaskara",
|
||||||
|
"black",
|
||||||
|
"blackburn",
|
||||||
|
"blackwell",
|
||||||
|
"bohr",
|
||||||
|
"booth",
|
||||||
|
"borg",
|
||||||
|
"bose",
|
||||||
|
"bouman",
|
||||||
|
"boyd",
|
||||||
|
"brahmagupta",
|
||||||
|
"brattain",
|
||||||
|
"brown",
|
||||||
|
"buck",
|
||||||
|
"burnell",
|
||||||
|
"cannon",
|
||||||
|
"carson",
|
||||||
|
"cartwright",
|
||||||
|
"carver",
|
||||||
|
"cerf",
|
||||||
|
"chandrasekhar",
|
||||||
|
"chaplygin",
|
||||||
|
"chatelet",
|
||||||
|
"chatterjee",
|
||||||
|
"chebyshev",
|
||||||
|
"cohen",
|
||||||
|
"chaum",
|
||||||
|
"clarke",
|
||||||
|
"colden",
|
||||||
|
"cori",
|
||||||
|
"cray",
|
||||||
|
"curran",
|
||||||
|
"curie",
|
||||||
|
"darwin",
|
||||||
|
"davinci",
|
||||||
|
"dewdney",
|
||||||
|
"dhawan",
|
||||||
|
"diffie",
|
||||||
|
"dijkstra",
|
||||||
|
"dirac",
|
||||||
|
"driscoll",
|
||||||
|
"dubinsky",
|
||||||
|
"easley",
|
||||||
|
"edison",
|
||||||
|
"einstein",
|
||||||
|
"elbakyan",
|
||||||
|
"elgamal",
|
||||||
|
"elion",
|
||||||
|
"ellis",
|
||||||
|
"engelbart",
|
||||||
|
"euclid",
|
||||||
|
"euler",
|
||||||
|
"faraday",
|
||||||
|
"feistel",
|
||||||
|
"fermat",
|
||||||
|
"fermi",
|
||||||
|
"feynman",
|
||||||
|
"franklin",
|
||||||
|
"gagarin",
|
||||||
|
"galileo",
|
||||||
|
"galois",
|
||||||
|
"ganguly",
|
||||||
|
"gates",
|
||||||
|
"gauss",
|
||||||
|
"germain",
|
||||||
|
"goldberg",
|
||||||
|
"goldstine",
|
||||||
|
"goldwasser",
|
||||||
|
"golick",
|
||||||
|
"goodall",
|
||||||
|
"gould",
|
||||||
|
"greider",
|
||||||
|
"grothendieck",
|
||||||
|
"haibt",
|
||||||
|
"hamilton",
|
||||||
|
"haslett",
|
||||||
|
"hawking",
|
||||||
|
"hellman",
|
||||||
|
"heisenberg",
|
||||||
|
"hermann",
|
||||||
|
"herschel",
|
||||||
|
"hertz",
|
||||||
|
"heyrovsky",
|
||||||
|
"hodgkin",
|
||||||
|
"hofstadter",
|
||||||
|
"hoover",
|
||||||
|
"hopper",
|
||||||
|
"hugle",
|
||||||
|
"hypatia",
|
||||||
|
"ishizaka",
|
||||||
|
"jackson",
|
||||||
|
"jang",
|
||||||
|
"jemison",
|
||||||
|
"jennings",
|
||||||
|
"jepsen",
|
||||||
|
"johnson",
|
||||||
|
"joliot",
|
||||||
|
"jones",
|
||||||
|
"kalam",
|
||||||
|
"kapitsa",
|
||||||
|
"kare",
|
||||||
|
"keldysh",
|
||||||
|
"keller",
|
||||||
|
"kepler",
|
||||||
|
"khayyam",
|
||||||
|
"khorana",
|
||||||
|
"kilby",
|
||||||
|
"kirch",
|
||||||
|
"knuth",
|
||||||
|
"kowalevski",
|
||||||
|
"lalande",
|
||||||
|
"lamarr",
|
||||||
|
"lamport",
|
||||||
|
"leakey",
|
||||||
|
"leavitt",
|
||||||
|
"lederberg",
|
||||||
|
"lehmann",
|
||||||
|
"lewin",
|
||||||
|
"lichterman",
|
||||||
|
"liskov",
|
||||||
|
"lovelace",
|
||||||
|
"lumiere",
|
||||||
|
"mahavira",
|
||||||
|
"margulis",
|
||||||
|
"matsumoto",
|
||||||
|
"maxwell",
|
||||||
|
"mayer",
|
||||||
|
"mccarthy",
|
||||||
|
"mcclintock",
|
||||||
|
"mclaren",
|
||||||
|
"mclean",
|
||||||
|
"mcnulty",
|
||||||
|
"mendel",
|
||||||
|
"mendeleev",
|
||||||
|
"meitner",
|
||||||
|
"meninsky",
|
||||||
|
"merkle",
|
||||||
|
"mestorf",
|
||||||
|
"mirzakhani",
|
||||||
|
"moore",
|
||||||
|
"morse",
|
||||||
|
"murdock",
|
||||||
|
"moser",
|
||||||
|
"napier",
|
||||||
|
"nash",
|
||||||
|
"neumann",
|
||||||
|
"newton",
|
||||||
|
"nightingale",
|
||||||
|
"nobel",
|
||||||
|
"noether",
|
||||||
|
"northcutt",
|
||||||
|
"noyce",
|
||||||
|
"panini",
|
||||||
|
"pare",
|
||||||
|
"pascal",
|
||||||
|
"pasteur",
|
||||||
|
"payne",
|
||||||
|
"perlman",
|
||||||
|
"pike",
|
||||||
|
"poincare",
|
||||||
|
"poitras",
|
||||||
|
"proskuriakova",
|
||||||
|
"ptolemy",
|
||||||
|
"raman",
|
||||||
|
"ramanujan",
|
||||||
|
"ride",
|
||||||
|
"montalcini",
|
||||||
|
"ritchie",
|
||||||
|
"rhodes",
|
||||||
|
"robinson",
|
||||||
|
"roentgen",
|
||||||
|
"rosalind",
|
||||||
|
"rubin",
|
||||||
|
"saha",
|
||||||
|
"sammet",
|
||||||
|
"sanderson",
|
||||||
|
"satoshi",
|
||||||
|
"shamir",
|
||||||
|
"shannon",
|
||||||
|
"shaw",
|
||||||
|
"shirley",
|
||||||
|
"shockley",
|
||||||
|
"shtern",
|
||||||
|
"sinoussi",
|
||||||
|
"snyder",
|
||||||
|
"solomon",
|
||||||
|
"spence",
|
||||||
|
"stonebraker",
|
||||||
|
"sutherland",
|
||||||
|
"swanson",
|
||||||
|
"swartz",
|
||||||
|
"swirles",
|
||||||
|
"taussig",
|
||||||
|
"tereshkova",
|
||||||
|
"tesla",
|
||||||
|
"tharp",
|
||||||
|
"thompson",
|
||||||
|
"torvalds",
|
||||||
|
"tu",
|
||||||
|
"turing",
|
||||||
|
"varahamihira",
|
||||||
|
"vaughan",
|
||||||
|
"visvesvaraya",
|
||||||
|
"volhard",
|
||||||
|
"villani",
|
||||||
|
"wescoff",
|
||||||
|
"wilbur",
|
||||||
|
"wiles",
|
||||||
|
"williams",
|
||||||
|
"williamson",
|
||||||
|
"wilson",
|
||||||
|
"wing",
|
||||||
|
"wozniak",
|
||||||
|
"wright",
|
||||||
|
"wu",
|
||||||
|
"yalow",
|
||||||
|
"yonath",
|
||||||
|
"zhukovsky",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
a = random.choice(left)
|
||||||
|
b = random.choice(right)
|
||||||
|
print(f'{a}_{b}')
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
Loading…
Reference in New Issue
Block a user