@akala/pm 5.0.1 → 5.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/changelog.md +14 -1
  2. package/commands.json +22 -22
  3. package/dist/cli.js +4 -4
  4. package/dist/cli.js.map +1 -1
  5. package/dist/commands/install.js +5 -5
  6. package/dist/commands/install.js.map +1 -1
  7. package/dist/commands/link.js +5 -5
  8. package/dist/commands/link.js.map +1 -1
  9. package/dist/commands/plugin/add.d.ts +2 -2
  10. package/dist/commands/plugin/remove.d.ts +2 -2
  11. package/dist/commands/start.js +4 -4
  12. package/dist/commands/start.js.map +1 -1
  13. package/dist/commands/update.js +5 -5
  14. package/dist/commands/update.js.map +1 -1
  15. package/dist/{cli-helper.d.ts → esm/cli-helper.d.ts} +1 -1
  16. package/dist/esm/cli-helper.js +17 -0
  17. package/dist/esm/cli-helper.js.map +1 -0
  18. package/dist/{cli.d.ts → esm/cli.d.ts} +0 -0
  19. package/dist/esm/cli.js +423 -0
  20. package/dist/esm/cli.js.map +1 -0
  21. package/dist/{commands → esm/commands}/$init.d.ts +2 -2
  22. package/dist/esm/commands/$init.js +113 -0
  23. package/dist/esm/commands/$init.js.map +1 -0
  24. package/dist/{commands → esm/commands}/bridge.d.ts +1 -1
  25. package/dist/esm/commands/bridge.js +11 -0
  26. package/dist/esm/commands/bridge.js.map +1 -0
  27. package/dist/{commands → esm/commands}/config.d.ts +1 -1
  28. package/dist/esm/commands/config.js +20 -0
  29. package/dist/esm/commands/config.js.map +1 -0
  30. package/dist/{commands → esm/commands}/connect.d.ts +1 -1
  31. package/dist/esm/commands/connect.js +26 -0
  32. package/dist/esm/commands/connect.js.map +1 -0
  33. package/dist/{commands → esm/commands}/discover.d.ts +3 -3
  34. package/dist/esm/commands/discover.js +72 -0
  35. package/dist/esm/commands/discover.js.map +1 -0
  36. package/dist/{commands → esm/commands}/install.d.ts +2 -2
  37. package/dist/esm/commands/install.js +13 -0
  38. package/dist/esm/commands/install.js.map +1 -0
  39. package/dist/{commands → esm/commands}/link.d.ts +2 -2
  40. package/dist/esm/commands/link.js +11 -0
  41. package/dist/esm/commands/link.js.map +1 -0
  42. package/dist/{commands → esm/commands}/log.d.ts +2 -2
  43. package/dist/esm/commands/log.js +15 -0
  44. package/dist/esm/commands/log.js.map +1 -0
  45. package/dist/{commands → esm/commands}/ls.d.ts +1 -1
  46. package/dist/esm/commands/ls.js +4 -0
  47. package/dist/esm/commands/ls.js.map +1 -0
  48. package/dist/{commands → esm/commands}/map.d.ts +1 -1
  49. package/dist/esm/commands/map.js +9 -0
  50. package/dist/esm/commands/map.js.map +1 -0
  51. package/dist/{commands → esm/commands}/name.d.ts +0 -0
  52. package/dist/esm/commands/name.js +604 -0
  53. package/dist/esm/commands/name.js.map +1 -0
  54. package/dist/esm/commands/plugin/add.d.ts +2 -0
  55. package/dist/esm/commands/plugin/add.js +5 -0
  56. package/dist/esm/commands/plugin/add.js.map +1 -0
  57. package/dist/esm/commands/plugin/remove.d.ts +2 -0
  58. package/dist/esm/commands/plugin/remove.js +7 -0
  59. package/dist/esm/commands/plugin/remove.js.map +1 -0
  60. package/dist/{commands → esm/commands}/proxy.d.ts +1 -1
  61. package/dist/esm/commands/proxy.js +19 -0
  62. package/dist/esm/commands/proxy.js.map +1 -0
  63. package/dist/{commands → esm/commands}/ready.d.ts +2 -2
  64. package/dist/esm/commands/ready.js +22 -0
  65. package/dist/esm/commands/ready.js.map +1 -0
  66. package/dist/{commands → esm/commands}/reload-metadata.d.ts +0 -0
  67. package/dist/esm/commands/reload-metadata.js +7 -0
  68. package/dist/esm/commands/reload-metadata.js.map +1 -0
  69. package/dist/{commands → esm/commands}/restart.d.ts +2 -2
  70. package/dist/esm/commands/restart.js +5 -0
  71. package/dist/esm/commands/restart.js.map +1 -0
  72. package/dist/{commands → esm/commands}/start.d.ts +3 -3
  73. package/dist/esm/commands/start.js +139 -0
  74. package/dist/esm/commands/start.js.map +1 -0
  75. package/dist/{commands → esm/commands}/status.d.ts +1 -1
  76. package/dist/esm/commands/status.js +7 -0
  77. package/dist/esm/commands/status.js.map +1 -0
  78. package/dist/{commands → esm/commands}/stop.d.ts +1 -1
  79. package/dist/esm/commands/stop.js +33 -0
  80. package/dist/esm/commands/stop.js.map +1 -0
  81. package/dist/{commands → esm/commands}/update.d.ts +1 -1
  82. package/dist/esm/commands/update.js +15 -0
  83. package/dist/esm/commands/update.js.map +1 -0
  84. package/dist/{commands → esm/commands}/version.d.ts +1 -1
  85. package/dist/esm/commands/version.js +14 -0
  86. package/dist/esm/commands/version.js.map +1 -0
  87. package/dist/esm/container.d.ts +48 -0
  88. package/dist/esm/container.js +2 -0
  89. package/dist/esm/container.js.map +1 -0
  90. package/dist/{fork.d.ts → esm/fork.d.ts} +0 -0
  91. package/dist/esm/fork.js +146 -0
  92. package/dist/esm/fork.js.map +1 -0
  93. package/dist/{index.d.ts → esm/index.d.ts} +4 -4
  94. package/dist/esm/index.js +43 -0
  95. package/dist/esm/index.js.map +1 -0
  96. package/dist/{ipc-adapter.d.ts → esm/ipc-adapter.d.ts} +2 -2
  97. package/dist/esm/ipc-adapter.js +60 -0
  98. package/dist/esm/ipc-adapter.js.map +1 -0
  99. package/dist/{new-line-prefixer.d.ts → esm/new-line-prefixer.d.ts} +2 -2
  100. package/dist/esm/new-line-prefixer.js +39 -0
  101. package/dist/esm/new-line-prefixer.js.map +1 -0
  102. package/dist/{npm-helper.d.ts → esm/npm-helper.d.ts} +0 -0
  103. package/dist/esm/npm-helper.js +20 -0
  104. package/dist/esm/npm-helper.js.map +1 -0
  105. package/dist/{sidecar.d.ts → esm/sidecar.d.ts} +2 -2
  106. package/dist/esm/sidecar.js +45 -0
  107. package/dist/esm/sidecar.js.map +1 -0
  108. package/dist/esm/standalone.d.ts +2 -0
  109. package/dist/esm/standalone.js +80 -0
  110. package/dist/esm/standalone.js.map +1 -0
  111. package/dist/{state.d.ts → esm/state.d.ts} +1 -1
  112. package/dist/esm/state.js +2 -0
  113. package/dist/esm/state.js.map +1 -0
  114. package/dist/{test → esm/test}/pwet.d.ts +0 -0
  115. package/dist/esm/test/pwet.js +7 -0
  116. package/dist/esm/test/pwet.js.map +1 -0
  117. package/dist/{yarn-helper.d.ts → esm/yarn-helper.d.ts} +0 -0
  118. package/dist/esm/yarn-helper.js +26 -0
  119. package/dist/esm/yarn-helper.js.map +1 -0
  120. package/dist/fork.js +8 -5
  121. package/dist/fork.js.map +1 -1
  122. package/dist/index.js +5 -5
  123. package/dist/index.js.map +1 -1
  124. package/dist/npm-helper.js +4 -4
  125. package/dist/npm-helper.js.map +1 -1
  126. package/dist/sidecar.js +4 -4
  127. package/dist/sidecar.js.map +1 -1
  128. package/dist/standalone.js +108 -0
  129. package/dist/standalone.js.map +1 -0
  130. package/dist/test/pwet.js +2 -2
  131. package/dist/test/pwet.js.map +1 -1
  132. package/dist/tsconfig.esm.tsbuildinfo +1 -0
  133. package/dist/yarn-helper.js +4 -4
  134. package/dist/yarn-helper.js.map +1 -1
  135. package/package.json +24 -12
  136. package/src/cli.ts +4 -4
  137. package/src/commands/$init.ts +2 -2
  138. package/src/commands/bridge.ts +1 -1
  139. package/src/commands/config.ts +1 -1
  140. package/src/commands/connect.ts +1 -1
  141. package/src/commands/discover.ts +3 -3
  142. package/src/commands/install.ts +4 -4
  143. package/src/commands/link.ts +4 -4
  144. package/src/commands/log.ts +1 -1
  145. package/src/commands/ls.ts +1 -1
  146. package/src/commands/map.ts +1 -1
  147. package/src/commands/plugin/add.ts +1 -1
  148. package/src/commands/plugin/remove.ts +1 -1
  149. package/src/commands/proxy.ts +1 -1
  150. package/src/commands/ready.ts +2 -2
  151. package/src/commands/restart.ts +1 -1
  152. package/src/commands/start.ts +4 -4
  153. package/src/commands/status.ts +1 -1
  154. package/src/commands/stop.ts +1 -1
  155. package/src/commands/update.ts +3 -3
  156. package/src/commands/version.ts +1 -1
  157. package/src/container.ts +41 -41
  158. package/src/fork.ts +8 -4
  159. package/src/index.ts +4 -4
  160. package/src/npm-helper.ts +1 -1
  161. package/src/sidecar.ts +2 -2
  162. package/src/standalone.ts +106 -0
  163. package/src/test/pwet.ts +1 -1
  164. package/src/yarn-helper.ts +1 -1
  165. package/tsconfig.cjs.json +22 -0
  166. package/tsconfig.esm.json +22 -0
  167. package/tsconfig.tsbuildinfo +1 -1
  168. package/yarn-error.log +11177 -0
  169. package/dist/container.d.ts +0 -48
@@ -0,0 +1,604 @@
1
+ const left = [
2
+ "admiring",
3
+ "adoring",
4
+ "affectionate",
5
+ "agitated",
6
+ "amazing",
7
+ "angry",
8
+ "awesome",
9
+ "beautiful",
10
+ "blissful",
11
+ "bold",
12
+ "boring",
13
+ "brave",
14
+ "busy",
15
+ "charming",
16
+ "clever",
17
+ "cool",
18
+ "compassionate",
19
+ "competent",
20
+ "condescending",
21
+ "confident",
22
+ "cranky",
23
+ "crazy",
24
+ "dazzling",
25
+ "determined",
26
+ "distracted",
27
+ "dreamy",
28
+ "eager",
29
+ "ecstatic",
30
+ "elastic",
31
+ "elated",
32
+ "elegant",
33
+ "eloquent",
34
+ "epic",
35
+ "exciting",
36
+ "fervent",
37
+ "festive",
38
+ "flamboyant",
39
+ "focused",
40
+ "friendly",
41
+ "frosty",
42
+ "funny",
43
+ "gallant",
44
+ "gifted",
45
+ "goofy",
46
+ "gracious",
47
+ "great",
48
+ "happy",
49
+ "hardcore",
50
+ "heuristic",
51
+ "hopeful",
52
+ "hungry",
53
+ "infallible",
54
+ "inspiring",
55
+ "interesting",
56
+ "intelligent",
57
+ "jolly",
58
+ "jovial",
59
+ "keen",
60
+ "kind",
61
+ "laughing",
62
+ "loving",
63
+ "lucid",
64
+ "magical",
65
+ "mystifying",
66
+ "modest",
67
+ "musing",
68
+ "naughty",
69
+ "nervous",
70
+ "nice",
71
+ "nifty",
72
+ "nostalgic",
73
+ "objective",
74
+ "optimistic",
75
+ "peaceful",
76
+ "pedantic",
77
+ "pensive",
78
+ "practical",
79
+ "priceless",
80
+ "quirky",
81
+ "quizzical",
82
+ "recursing",
83
+ "relaxed",
84
+ "reverent",
85
+ "romantic",
86
+ "sad",
87
+ "serene",
88
+ "sharp",
89
+ "silly",
90
+ "sleepy",
91
+ "stoic",
92
+ "strange",
93
+ "stupefied",
94
+ "suspicious",
95
+ "sweet",
96
+ "tender",
97
+ "thirsty",
98
+ "trusting",
99
+ "unruffled",
100
+ "upbeat",
101
+ "vibrant",
102
+ "vigilant",
103
+ "vigorous",
104
+ "wizardly",
105
+ "wonderful",
106
+ "xenodochial",
107
+ "youthful",
108
+ "zealous",
109
+ "zen",
110
+ ],
111
+ // Docker, starting from 0.7.x, generates names from notable scientists and hackers.
112
+ // Please, for any amazing man that you add to the list, consider adding an equally amazing woman to it, and vice versa.
113
+ right = [
114
+ // Muhammad ibn Jābir al-Ḥarrānī al-Battānī was a founding father of astronomy. https://en.wikipedia.org/wiki/Mu%E1%B8%A5ammad_ibn_J%C4%81bir_al-%E1%B8%A4arr%C4%81n%C4%AB_al-Batt%C4%81n%C4%AB
115
+ "albattani",
116
+ // Frances E. Allen, became the first female IBM Fellow in 1989. In 2006, she became the first female recipient of the ACM's Turing Award. https://en.wikipedia.org/wiki/Frances_E._Allen
117
+ "allen",
118
+ // June Almeida - Scottish virologist who took the first pictures of the rubella virus - https://en.wikipedia.org/wiki/June_Almeida
119
+ "almeida",
120
+ // Kathleen Antonelli, American computer programmer and one of the six original programmers of the ENIAC - https://en.wikipedia.org/wiki/Kathleen_Antonelli
121
+ "antonelli",
122
+ // Maria Gaetana Agnesi - Italian mathematician, philosopher, theologian and humanitarian. She was the first woman to write a mathematics handbook and the first woman appointed as a Mathematics Professor at a University. https://en.wikipedia.org/wiki/Maria_Gaetana_Agnesi
123
+ "agnesi",
124
+ // Archimedes was a physicist, engineer and mathematician who invented too many things to list them here. https://en.wikipedia.org/wiki/Archimedes
125
+ "archimedes",
126
+ // Maria Ardinghelli - Italian translator, mathematician and physicist - https://en.wikipedia.org/wiki/Maria_Ardinghelli
127
+ "ardinghelli",
128
+ // Aryabhata - Ancient Indian mathematician-astronomer during 476-550 CE https://en.wikipedia.org/wiki/Aryabhata
129
+ "aryabhata",
130
+ // Wanda Austin - Wanda Austin is the President and CEO of The Aerospace Corporation, a leading architect for the US security space programs. https://en.wikipedia.org/wiki/Wanda_Austin
131
+ "austin",
132
+ // Charles Babbage invented the concept of a programmable computer. https://en.wikipedia.org/wiki/Charles_Babbage.
133
+ "babbage",
134
+ // Stefan Banach - Polish mathematician, was one of the founders of modern functional analysis. https://en.wikipedia.org/wiki/Stefan_Banach
135
+ "banach",
136
+ // Buckaroo Banzai and his mentor Dr. Hikita perfected the "oscillation overthruster", a device that allows one to pass through solid matter. - https://en.wikipedia.org/wiki/The_Adventures_of_Buckaroo_Banzai_Across_the_8th_Dimension
137
+ "banzai",
138
+ // John Bardeen co-invented the transistor - https://en.wikipedia.org/wiki/John_Bardeen
139
+ "bardeen",
140
+ // Jean Bartik, born Betty Jean Jennings, was one of the original programmers for the ENIAC computer. https://en.wikipedia.org/wiki/Jean_Bartik
141
+ "bartik",
142
+ // Laura Bassi, the world's first female professor https://en.wikipedia.org/wiki/Laura_Bassi
143
+ "bassi",
144
+ // Hugh Beaver, British engineer, founder of the Guinness Book of World Records https://en.wikipedia.org/wiki/Hugh_Beaver
145
+ "beaver",
146
+ // Alexander Graham Bell - an eminent Scottish-born scientist, inventor, engineer and innovator who is credited with inventing the first practical telephone - https://en.wikipedia.org/wiki/Alexander_Graham_Bell
147
+ "bell",
148
+ // Karl Friedrich Benz - a German automobile engineer. Inventor of the first practical motorcar. https://en.wikipedia.org/wiki/Karl_Benz
149
+ "benz",
150
+ // Homi J Bhabha - was an Indian nuclear physicist, founding director, and professor of physics at the Tata Institute of Fundamental Research. Colloquially known as "father of Indian nuclear programme"- https://en.wikipedia.org/wiki/Homi_J._Bhabha
151
+ "bhabha",
152
+ // Bhaskara II - Ancient Indian mathematician-astronomer whose work on calculus predates Newton and Leibniz by over half a millennium - https://en.wikipedia.org/wiki/Bh%C4%81skara_II#Calculus
153
+ "bhaskara",
154
+ // Sue Black - British computer scientist and campaigner. She has been instrumental in saving Bletchley Park, the site of World War II codebreaking - https://en.wikipedia.org/wiki/Sue_Black_(computer_scientist)
155
+ "black",
156
+ // Elizabeth Helen Blackburn - Australian-American Nobel laureate; best known for co-discovering telomerase. https://en.wikipedia.org/wiki/Elizabeth_Blackburn
157
+ "blackburn",
158
+ // Elizabeth Blackwell - American doctor and first American woman to receive a medical degree - https://en.wikipedia.org/wiki/Elizabeth_Blackwell
159
+ "blackwell",
160
+ // Niels Bohr is the father of quantum theory. https://en.wikipedia.org/wiki/Niels_Bohr.
161
+ "bohr",
162
+ // Kathleen Booth, she's credited with writing the first assembly language. https://en.wikipedia.org/wiki/Kathleen_Booth
163
+ "booth",
164
+ // Anita Borg - Anita Borg was the founding director of the Institute for Women and Technology (IWT). https://en.wikipedia.org/wiki/Anita_Borg
165
+ "borg",
166
+ // Satyendra Nath Bose - He provided the foundation for Bose–Einstein statistics and the theory of the Bose–Einstein condensate. - https://en.wikipedia.org/wiki/Satyendra_Nath_Bose
167
+ "bose",
168
+ // Katherine Louise Bouman is an imaging scientist and Assistant Professor of Computer Science at the California Institute of Technology. She researches computational methods for imaging, and developed an algorithm that made possible the picture first visualization of a black hole using the Event Horizon Telescope. - https://en.wikipedia.org/wiki/Katie_Bouman
169
+ "bouman",
170
+ // Evelyn Boyd Granville - She was one of the first African-American woman to receive a Ph.D. in mathematics; she earned it in 1949 from Yale University. https://en.wikipedia.org/wiki/Evelyn_Boyd_Granville
171
+ "boyd",
172
+ // Brahmagupta - Ancient Indian mathematician during 598-670 CE who gave rules to compute with zero - https://en.wikipedia.org/wiki/Brahmagupta#Zero
173
+ "brahmagupta",
174
+ // Walter Houser Brattain co-invented the transistor - https://en.wikipedia.org/wiki/Walter_Houser_Brattain
175
+ "brattain",
176
+ // Emmett Brown invented time travel. https://en.wikipedia.org/wiki/Emmett_Brown (thanks Brian Goff)
177
+ "brown",
178
+ // Linda Brown Buck - American biologist and Nobel laureate best known for her genetic and molecular analyses of the mechanisms of smell. https://en.wikipedia.org/wiki/Linda_B._Buck
179
+ "buck",
180
+ // Dame Susan Jocelyn Bell Burnell - Northern Irish astrophysicist who discovered radio pulsars and was the first to analyse them. https://en.wikipedia.org/wiki/Jocelyn_Bell_Burnell
181
+ "burnell",
182
+ // Annie Jump Cannon - pioneering female astronomer who classified hundreds of thousands of stars and created the system we use to understand stars today. https://en.wikipedia.org/wiki/Annie_Jump_Cannon
183
+ "cannon",
184
+ // Rachel Carson - American marine biologist and conservationist, her book Silent Spring and other writings are credited with advancing the global environmental movement. https://en.wikipedia.org/wiki/Rachel_Carson
185
+ "carson",
186
+ // Dame Mary Lucy Cartwright - British mathematician who was one of the first to study what is now known as chaos theory. Also known for Cartwright's theorem which finds applications in signal processing. https://en.wikipedia.org/wiki/Mary_Cartwright
187
+ "cartwright",
188
+ // George Washington Carver - American agricultural scientist and inventor. He was the most prominent black scientist of the early 20th century. https://en.wikipedia.org/wiki/George_Washington_Carver
189
+ "carver",
190
+ // Vinton Gray Cerf - American Internet pioneer, recognised as one of "the fathers of the Internet". With Robert Elliot Kahn, he designed TCP and IP, the primary data communication protocols of the Internet and other computer networks. https://en.wikipedia.org/wiki/Vint_Cerf
191
+ "cerf",
192
+ // Subrahmanyan Chandrasekhar - Astrophysicist known for his mathematical theory on different stages and evolution in structures of the stars. He has won nobel prize for physics - https://en.wikipedia.org/wiki/Subrahmanyan_Chandrasekhar
193
+ "chandrasekhar",
194
+ // Sergey Alexeyevich Chaplygin (Russian: Серге́й Алексе́евич Чаплы́гин; April 5, 1869 – October 8, 1942) was a Russian and Soviet physicist, mathematician, and mechanical engineer. He is known for mathematical formulas such as Chaplygin's equation and for a hypothetical substance in cosmology called Chaplygin gas, named after him. https://en.wikipedia.org/wiki/Sergey_Chaplygin
195
+ "chaplygin",
196
+ // Émilie du Châtelet - French natural philosopher, mathematician, physicist, and author during the early 1730s, known for her translation of and commentary on Isaac Newton's book Principia containing basic laws of physics. https://en.wikipedia.org/wiki/%C3%89milie_du_Ch%C3%A2telet
197
+ "chatelet",
198
+ // Asima Chatterjee was an Indian organic chemist noted for her research on vinca alkaloids, development of drugs for treatment of epilepsy and malaria - https://en.wikipedia.org/wiki/Asima_Chatterjee
199
+ "chatterjee",
200
+ // Pafnuty Chebyshev - Russian mathematician. He is known fo his works on probability, statistics, mechanics, analytical geometry and number theory https://en.wikipedia.org/wiki/Pafnuty_Chebyshev
201
+ "chebyshev",
202
+ // Bram Cohen - American computer programmer and author of the BitTorrent peer-to-peer protocol. https://en.wikipedia.org/wiki/Bram_Cohen
203
+ "cohen",
204
+ // David Lee Chaum - American computer scientist and cryptographer. Known for his seminal contributions in the field of anonymous communication. https://en.wikipedia.org/wiki/David_Chaum
205
+ "chaum",
206
+ // Joan Clarke - Bletchley Park code breaker during the Second World War who pioneered techniques that remained top secret for decades. Also an accomplished numismatist https://en.wikipedia.org/wiki/Joan_Clarke
207
+ "clarke",
208
+ // Jane Colden - American botanist widely considered the first female American botanist - https://en.wikipedia.org/wiki/Jane_Colden
209
+ "colden",
210
+ // Gerty Theresa Cori - American biochemist who became the third woman—and first American woman—to win a Nobel Prize in science, and the first woman to be awarded the Nobel Prize in Physiology or Medicine. Cori was born in Prague. https://en.wikipedia.org/wiki/Gerty_Cori
211
+ "cori",
212
+ // Seymour Roger Cray was an American electrical engineer and supercomputer architect who designed a series of computers that were the fastest in the world for decades. https://en.wikipedia.org/wiki/Seymour_Cray
213
+ "cray",
214
+ // This entry reflects a husband and wife team who worked together:
215
+ // Joan Curran was a Welsh scientist who developed radar and invented chaff, a radar countermeasure. https://en.wikipedia.org/wiki/Joan_Curran
216
+ // Samuel Curran was an Irish physicist who worked alongside his wife during WWII and invented the proximity fuse. https://en.wikipedia.org/wiki/Samuel_Curran
217
+ "curran",
218
+ // Marie Curie discovered radioactivity. https://en.wikipedia.org/wiki/Marie_Curie.
219
+ "curie",
220
+ // Charles Darwin established the principles of natural evolution. https://en.wikipedia.org/wiki/Charles_Darwin.
221
+ "darwin",
222
+ // Leonardo Da Vinci invented too many things to list here. https://en.wikipedia.org/wiki/Leonardo_da_Vinci.
223
+ "davinci",
224
+ // A. K. (Alexander Keewatin) Dewdney, Canadian mathematician, computer scientist, author and filmmaker. Contributor to Scientific American's "Computer Recreations" from 1984 to 1991. Author of Core War (program), The Planiverse, The Armchair Universe, The Magic Machine, The New Turing Omnibus, and more. https://en.wikipedia.org/wiki/Alexander_Dewdney
225
+ "dewdney",
226
+ // Satish Dhawan - Indian mathematician and aerospace engineer, known for leading the successful and indigenous development of the Indian space programme. https://en.wikipedia.org/wiki/Satish_Dhawan
227
+ "dhawan",
228
+ // Bailey Whitfield Diffie - American cryptographer and one of the pioneers of public-key cryptography. https://en.wikipedia.org/wiki/Whitfield_Diffie
229
+ "diffie",
230
+ // Edsger Wybe Dijkstra was a Dutch computer scientist and mathematical scientist. https://en.wikipedia.org/wiki/Edsger_W._Dijkstra.
231
+ "dijkstra",
232
+ // Paul Adrien Maurice Dirac - English theoretical physicist who made fundamental contributions to the early development of both quantum mechanics and quantum electrodynamics. https://en.wikipedia.org/wiki/Paul_Dirac
233
+ "dirac",
234
+ // Agnes Meyer Driscoll - American cryptanalyst during World Wars I and II who successfully cryptanalysed a number of Japanese ciphers. She was also the co-developer of one of the cipher machines of the US Navy, the CM. https://en.wikipedia.org/wiki/Agnes_Meyer_Driscoll
235
+ "driscoll",
236
+ // Donna Dubinsky - played an integral role in the development of personal digital assistants (PDAs) serving as CEO of Palm, Inc. and co-founding Handspring. https://en.wikipedia.org/wiki/Donna_Dubinsky
237
+ "dubinsky",
238
+ // Annie Easley - She was a leading member of the team which developed software for the Centaur rocket stage and one of the first African-Americans in her field. https://en.wikipedia.org/wiki/Annie_Easley
239
+ "easley",
240
+ // Thomas Alva Edison, prolific inventor https://en.wikipedia.org/wiki/Thomas_Edison
241
+ "edison",
242
+ // Albert Einstein invented the general theory of relativity. https://en.wikipedia.org/wiki/Albert_Einstein
243
+ "einstein",
244
+ // Alexandra Asanovna Elbakyan (Russian: Алекса́ндра Аса́новна Элбакя́н) is a Kazakhstani graduate student, computer programmer, internet pirate in hiding, and the creator of the site Sci-Hub. Nature has listed her in 2016 in the top ten people that mattered in science, and Ars Technica has compared her to Aaron Swartz. - https://en.wikipedia.org/wiki/Alexandra_Elbakyan
245
+ "elbakyan",
246
+ // Taher A. ElGamal - Egyptian cryptographer best known for the ElGamal discrete log cryptosystem and the ElGamal digital signature scheme. https://en.wikipedia.org/wiki/Taher_Elgamal
247
+ "elgamal",
248
+ // Gertrude Elion - American biochemist, pharmacologist and the 1988 recipient of the Nobel Prize in Medicine - https://en.wikipedia.org/wiki/Gertrude_Elion
249
+ "elion",
250
+ // James Henry Ellis - British engineer and cryptographer employed by the GCHQ. Best known for conceiving for the first time, the idea of public-key cryptography. https://en.wikipedia.org/wiki/James_H._Ellis
251
+ "ellis",
252
+ // Douglas Engelbart gave the mother of all demos: https://en.wikipedia.org/wiki/Douglas_Engelbart
253
+ "engelbart",
254
+ // Euclid invented geometry. https://en.wikipedia.org/wiki/Euclid
255
+ "euclid",
256
+ // Leonhard Euler invented large parts of modern mathematics. https://de.wikipedia.org/wiki/Leonhard_Euler
257
+ "euler",
258
+ // Michael Faraday - British scientist who contributed to the study of electromagnetism and electrochemistry. https://en.wikipedia.org/wiki/Michael_Faraday
259
+ "faraday",
260
+ // Horst Feistel - German-born American cryptographer who was one of the earliest non-government researchers to study the design and theory of block ciphers. Co-developer of DES and Lucifer. Feistel networks, a symmetric structure used in the construction of block ciphers are named after him. https://en.wikipedia.org/wiki/Horst_Feistel
261
+ "feistel",
262
+ // Pierre de Fermat pioneered several aspects of modern mathematics. https://en.wikipedia.org/wiki/Pierre_de_Fermat
263
+ "fermat",
264
+ // Enrico Fermi invented the first nuclear reactor. https://en.wikipedia.org/wiki/Enrico_Fermi.
265
+ "fermi",
266
+ // Richard Feynman was a key contributor to quantum mechanics and particle physics. https://en.wikipedia.org/wiki/Richard_Feynman
267
+ "feynman",
268
+ // Benjamin Franklin is famous for his experiments in electricity and the invention of the lightning rod.
269
+ "franklin",
270
+ // Yuri Alekseyevich Gagarin - Soviet pilot and cosmonaut, best known as the first human to journey into outer space. https://en.wikipedia.org/wiki/Yuri_Gagarin
271
+ "gagarin",
272
+ // Galileo was a founding father of modern astronomy, and faced politics and obscurantism to establish scientific truth. https://en.wikipedia.org/wiki/Galileo_Galilei
273
+ "galileo",
274
+ // Évariste Galois - French mathematician whose work laid the foundations of Galois theory and group theory, two major branches of abstract algebra, and the subfield of Galois connections, all while still in his late teens. https://en.wikipedia.org/wiki/%C3%89variste_Galois
275
+ "galois",
276
+ // Kadambini Ganguly - Indian physician, known for being the first South Asian female physician, trained in western medicine, to graduate in South Asia. https://en.wikipedia.org/wiki/Kadambini_Ganguly
277
+ "ganguly",
278
+ // William Henry "Bill" Gates III is an American business magnate, philanthropist, investor, computer programmer, and inventor. https://en.wikipedia.org/wiki/Bill_Gates
279
+ "gates",
280
+ // Johann Carl Friedrich Gauss - German mathematician who made significant contributions to many fields, including number theory, algebra, statistics, analysis, differential geometry, geodesy, geophysics, mechanics, electrostatics, magnetic fields, astronomy, matrix theory, and optics. https://en.wikipedia.org/wiki/Carl_Friedrich_Gauss
281
+ "gauss",
282
+ // Marie-Sophie Germain - French mathematician, physicist and philosopher. Known for her work on elasticity theory, number theory and philosophy. https://en.wikipedia.org/wiki/Sophie_Germain
283
+ "germain",
284
+ // Adele Goldberg, was one of the designers and developers of the Smalltalk language. https://en.wikipedia.org/wiki/Adele_Goldberg_(computer_scientist)
285
+ "goldberg",
286
+ // Adele Goldstine, born Adele Katz, wrote the complete technical description for the first electronic digital computer, ENIAC. https://en.wikipedia.org/wiki/Adele_Goldstine
287
+ "goldstine",
288
+ // Shafi Goldwasser is a computer scientist known for creating theoretical foundations of modern cryptography. Winner of 2012 ACM Turing Award. https://en.wikipedia.org/wiki/Shafi_Goldwasser
289
+ "goldwasser",
290
+ // James Golick, all around gangster.
291
+ "golick",
292
+ // Jane Goodall - British primatologist, ethologist, and anthropologist who is considered to be the world's foremost expert on chimpanzees - https://en.wikipedia.org/wiki/Jane_Goodall
293
+ "goodall",
294
+ // Stephen Jay Gould was was an American paleontologist, evolutionary biologist, and historian of science. He is most famous for the theory of punctuated equilibrium - https://en.wikipedia.org/wiki/Stephen_Jay_Gould
295
+ "gould",
296
+ // Carolyn Widney Greider - American molecular biologist and joint winner of the 2009 Nobel Prize for Physiology or Medicine for the discovery of telomerase. https://en.wikipedia.org/wiki/Carol_W._Greider
297
+ "greider",
298
+ // Alexander Grothendieck - German-born French mathematician who became a leading figure in the creation of modern algebraic geometry. https://en.wikipedia.org/wiki/Alexander_Grothendieck
299
+ "grothendieck",
300
+ // Lois Haibt - American computer scientist, part of the team at IBM that developed FORTRAN - https://en.wikipedia.org/wiki/Lois_Haibt
301
+ "haibt",
302
+ // Margaret Hamilton - Director of the Software Engineering Division of the MIT Instrumentation Laboratory, which developed on-board flight software for the Apollo space program. https://en.wikipedia.org/wiki/Margaret_Hamilton_(scientist)
303
+ "hamilton",
304
+ // Caroline Harriet Haslett - English electrical engineer, electricity industry administrator and champion of women's rights. Co-author of British Standard 1363 that specifies AC power plugs and sockets used across the United Kingdom (which is widely considered as one of the safest designs). https://en.wikipedia.org/wiki/Caroline_Haslett
305
+ "haslett",
306
+ // Stephen Hawking pioneered the field of cosmology by combining general relativity and quantum mechanics. https://en.wikipedia.org/wiki/Stephen_Hawking
307
+ "hawking",
308
+ // Martin Edward Hellman - American cryptologist, best known for his invention of public-key cryptography in co-operation with Whitfield Diffie and Ralph Merkle. https://en.wikipedia.org/wiki/Martin_Hellman
309
+ "hellman",
310
+ // Werner Heisenberg was a founding father of quantum mechanics. https://en.wikipedia.org/wiki/Werner_Heisenberg
311
+ "heisenberg",
312
+ // Grete Hermann was a German philosopher noted for her philosophical work on the foundations of quantum mechanics. https://en.wikipedia.org/wiki/Grete_Hermann
313
+ "hermann",
314
+ // Caroline Lucretia Herschel - German astronomer and discoverer of several comets. https://en.wikipedia.org/wiki/Caroline_Herschel
315
+ "herschel",
316
+ // Heinrich Rudolf Hertz - German physicist who first conclusively proved the existence of the electromagnetic waves. https://en.wikipedia.org/wiki/Heinrich_Hertz
317
+ "hertz",
318
+ // Jaroslav Heyrovský was the inventor of the polarographic method, father of the electroanalytical method, and recipient of the Nobel Prize in 1959. His main field of work was polarography. https://en.wikipedia.org/wiki/Jaroslav_Heyrovsk%C3%BD
319
+ "heyrovsky",
320
+ // Dorothy Hodgkin was a British biochemist, credited with the development of protein crystallography. She was awarded the Nobel Prize in Chemistry in 1964. https://en.wikipedia.org/wiki/Dorothy_Hodgkin
321
+ "hodgkin",
322
+ // Douglas R. Hofstadter is an American professor of cognitive science and author of the Pulitzer Prize and American Book Award-winning work Goedel, Escher, Bach: An Eternal Golden Braid in 1979. A mind-bending work which coined Hofstadter's Law: "It always takes longer than you expect, even when you take into account Hofstadter's Law." https://en.wikipedia.org/wiki/Douglas_Hofstadter
323
+ "hofstadter",
324
+ // Erna Schneider Hoover revolutionized modern communication by inventing a computerized telephone switching method. https://en.wikipedia.org/wiki/Erna_Schneider_Hoover
325
+ "hoover",
326
+ // Grace Hopper developed the first compiler for a computer programming language and is credited with popularizing the term "debugging" for fixing computer glitches. https://en.wikipedia.org/wiki/Grace_Hopper
327
+ "hopper",
328
+ // Frances Hugle, she was an American scientist, engineer, and inventor who contributed to the understanding of semiconductors, integrated circuitry, and the unique electrical principles of microscopic materials. https://en.wikipedia.org/wiki/Frances_Hugle
329
+ "hugle",
330
+ // Hypatia - Greek Alexandrine Neoplatonist philosopher in Egypt who was one of the earliest mothers of mathematics - https://en.wikipedia.org/wiki/Hypatia
331
+ "hypatia",
332
+ // Teruko Ishizaka - Japanese scientist and immunologist who co-discovered the antibody class Immunoglobulin E. https://en.wikipedia.org/wiki/Teruko_Ishizaka
333
+ "ishizaka",
334
+ // Mary Jackson, American mathematician and aerospace engineer who earned the highest title within NASA's engineering department - https://en.wikipedia.org/wiki/Mary_Jackson_(engineer)
335
+ "jackson",
336
+ // Yeong-Sil Jang was a Korean scientist and astronomer during the Joseon Dynasty; he invented the first metal printing press and water gauge. https://en.wikipedia.org/wiki/Jang_Yeong-sil
337
+ "jang",
338
+ // Mae Carol Jemison - is an American engineer, physician, and former NASA astronaut. She became the first black woman to travel in space when she served as a mission specialist aboard the Space Shuttle Endeavour - https://en.wikipedia.org/wiki/Mae_Jemison
339
+ "jemison",
340
+ // Betty Jennings - one of the original programmers of the ENIAC. https://en.wikipedia.org/wiki/ENIAC - https://en.wikipedia.org/wiki/Jean_Bartik
341
+ "jennings",
342
+ // Mary Lou Jepsen, was the founder and chief technology officer of One Laptop Per Child (OLPC), and the founder of Pixel Qi. https://en.wikipedia.org/wiki/Mary_Lou_Jepsen
343
+ "jepsen",
344
+ // Katherine Coleman Goble Johnson - American physicist and mathematician contributed to the NASA. https://en.wikipedia.org/wiki/Katherine_Johnson
345
+ "johnson",
346
+ // Irène Joliot-Curie - French scientist who was awarded the Nobel Prize for Chemistry in 1935. Daughter of Marie and Pierre Curie. https://en.wikipedia.org/wiki/Ir%C3%A8ne_Joliot-Curie
347
+ "joliot",
348
+ // Karen Spärck Jones came up with the concept of inverse document frequency, which is used in most search engines today. https://en.wikipedia.org/wiki/Karen_Sp%C3%A4rck_Jones
349
+ "jones",
350
+ // A. P. J. Abdul Kalam - is an Indian scientist aka Missile Man of India for his work on the development of ballistic missile and launch vehicle technology - https://en.wikipedia.org/wiki/A._P._J._Abdul_Kalam
351
+ "kalam",
352
+ // Sergey Petrovich Kapitsa (Russian: Серге́й Петро́вич Капи́ца; 14 February 1928 – 14 August 2012) was a Russian physicist and demographer. He was best known as host of the popular and long-running Russian scientific TV show, Evident, but Incredible. His father was the Nobel laureate Soviet-era physicist Pyotr Kapitsa, and his brother was the geographer and Antarctic explorer Andrey Kapitsa. - https://en.wikipedia.org/wiki/Sergey_Kapitsa
353
+ "kapitsa",
354
+ // Susan Kare, created the icons and many of the interface elements for the original Apple Macintosh in the 1980s, and was an original employee of NeXT, working as the Creative Director. https://en.wikipedia.org/wiki/Susan_Kare
355
+ "kare",
356
+ // Mstislav Keldysh - a Soviet scientist in the field of mathematics and mechanics, academician of the USSR Academy of Sciences (1946), President of the USSR Academy of Sciences (1961–1975), three times Hero of Socialist Labor (1956, 1961, 1971), fellow of the Royal Society of Edinburgh (1968). https://en.wikipedia.org/wiki/Mstislav_Keldysh
357
+ "keldysh",
358
+ // Mary Kenneth Keller, Sister Mary Kenneth Keller became the first American woman to earn a PhD in Computer Science in 1965. https://en.wikipedia.org/wiki/Mary_Kenneth_Keller
359
+ "keller",
360
+ // Johannes Kepler, German astronomer known for his three laws of planetary motion - https://en.wikipedia.org/wiki/Johannes_Kepler
361
+ "kepler",
362
+ // Omar Khayyam - Persian mathematician, astronomer and poet. Known for his work on the classification and solution of cubic equations, for his contribution to the understanding of Euclid's fifth postulate and for computing the length of a year very accurately. https://en.wikipedia.org/wiki/Omar_Khayyam
363
+ "khayyam",
364
+ // Har Gobind Khorana - Indian-American biochemist who shared the 1968 Nobel Prize for Physiology - https://en.wikipedia.org/wiki/Har_Gobind_Khorana
365
+ "khorana",
366
+ // Jack Kilby invented silicon integrated circuits and gave Silicon Valley its name. - https://en.wikipedia.org/wiki/Jack_Kilby
367
+ "kilby",
368
+ // Maria Kirch - German astronomer and first woman to discover a comet - https://en.wikipedia.org/wiki/Maria_Margarethe_Kirch
369
+ "kirch",
370
+ // Donald Knuth - American computer scientist, author of "The Art of Computer Programming" and creator of the TeX typesetting system. https://en.wikipedia.org/wiki/Donald_Knuth
371
+ "knuth",
372
+ // Sophie Kowalevski - Russian mathematician responsible for important original contributions to analysis, differential equations and mechanics - https://en.wikipedia.org/wiki/Sofia_Kovalevskaya
373
+ "kowalevski",
374
+ // Marie-Jeanne de Lalande - French astronomer, mathematician and cataloguer of stars - https://en.wikipedia.org/wiki/Marie-Jeanne_de_Lalande
375
+ "lalande",
376
+ // Hedy Lamarr - Actress and inventor. The principles of her work are now incorporated into modern Wi-Fi, CDMA and Bluetooth technology. https://en.wikipedia.org/wiki/Hedy_Lamarr
377
+ "lamarr",
378
+ // Leslie B. Lamport - American computer scientist. Lamport is best known for his seminal work in distributed systems and was the winner of the 2013 Turing Award. https://en.wikipedia.org/wiki/Leslie_Lamport
379
+ "lamport",
380
+ // Mary Leakey - British paleoanthropologist who discovered the first fossilized Proconsul skull - https://en.wikipedia.org/wiki/Mary_Leakey
381
+ "leakey",
382
+ // Henrietta Swan Leavitt - she was an American astronomer who discovered the relation between the luminosity and the period of Cepheid variable stars. https://en.wikipedia.org/wiki/Henrietta_Swan_Leavitt
383
+ "leavitt",
384
+ // Esther Miriam Zimmer Lederberg - American microbiologist and a pioneer of bacterial genetics. https://en.wikipedia.org/wiki/Esther_Lederberg
385
+ "lederberg",
386
+ // Inge Lehmann - Danish seismologist and geophysicist. Known for discovering in 1936 that the Earth has a solid inner core inside a molten outer core. https://en.wikipedia.org/wiki/Inge_Lehmann
387
+ "lehmann",
388
+ // Daniel Lewin - Mathematician, Akamai co-founder, soldier, 9/11 victim-- Developed optimization techniques for routing traffic on the internet. Died attempting to stop the 9-11 hijackers. https://en.wikipedia.org/wiki/Daniel_Lewin
389
+ "lewin",
390
+ // Ruth Lichterman - one of the original programmers of the ENIAC. https://en.wikipedia.org/wiki/ENIAC - https://en.wikipedia.org/wiki/Ruth_Teitelbaum
391
+ "lichterman",
392
+ // Barbara Liskov - co-developed the Liskov substitution principle. Liskov was also the winner of the Turing Prize in 2008. - https://en.wikipedia.org/wiki/Barbara_Liskov
393
+ "liskov",
394
+ // Ada Lovelace invented the first algorithm. https://en.wikipedia.org/wiki/Ada_Lovelace (thanks James Turnbull)
395
+ "lovelace",
396
+ // Auguste and Louis Lumière - the first filmmakers in history - https://en.wikipedia.org/wiki/Auguste_and_Louis_Lumi%C3%A8re
397
+ "lumiere",
398
+ // Mahavira - Ancient Indian mathematician during 9th century AD who discovered basic algebraic identities - https://en.wikipedia.org/wiki/Mah%C4%81v%C4%ABra_(mathematician)
399
+ "mahavira",
400
+ // Lynn Margulis (b. Lynn Petra Alexander) - an American evolutionary theorist and biologist, science author, educator, and popularizer, and was the primary modern proponent for the significance of symbiosis in evolution. - https://en.wikipedia.org/wiki/Lynn_Margulis
401
+ "margulis",
402
+ // Yukihiro Matsumoto - Japanese computer scientist and software programmer best known as the chief designer of the Ruby programming language. https://en.wikipedia.org/wiki/Yukihiro_Matsumoto
403
+ "matsumoto",
404
+ // James Clerk Maxwell - Scottish physicist, best known for his formulation of electromagnetic theory. https://en.wikipedia.org/wiki/James_Clerk_Maxwell
405
+ "maxwell",
406
+ // Maria Mayer - American theoretical physicist and Nobel laureate in Physics for proposing the nuclear shell model of the atomic nucleus - https://en.wikipedia.org/wiki/Maria_Mayer
407
+ "mayer",
408
+ // John McCarthy invented LISP: https://en.wikipedia.org/wiki/John_McCarthy_(computer_scientist)
409
+ "mccarthy",
410
+ // Barbara McClintock - a distinguished American cytogeneticist, 1983 Nobel Laureate in Physiology or Medicine for discovering transposons. https://en.wikipedia.org/wiki/Barbara_McClintock
411
+ "mcclintock",
412
+ // Anne Laura Dorinthea McLaren - British developmental biologist whose work helped lead to human in-vitro fertilisation. https://en.wikipedia.org/wiki/Anne_McLaren
413
+ "mclaren",
414
+ // Malcolm McLean invented the modern shipping container: https://en.wikipedia.org/wiki/Malcom_McLean
415
+ "mclean",
416
+ // Kay McNulty - one of the original programmers of the ENIAC. https://en.wikipedia.org/wiki/ENIAC - https://en.wikipedia.org/wiki/Kathleen_Antonelli
417
+ "mcnulty",
418
+ // Gregor Johann Mendel - Czech scientist and founder of genetics. https://en.wikipedia.org/wiki/Gregor_Mendel
419
+ "mendel",
420
+ // Dmitri Mendeleev - a chemist and inventor. He formulated the Periodic Law, created a farsighted version of the periodic table of elements, and used it to correct the properties of some already discovered elements and also to predict the properties of eight elements yet to be discovered. https://en.wikipedia.org/wiki/Dmitri_Mendeleev
421
+ "mendeleev",
422
+ // Lise Meitner - Austrian/Swedish physicist who was involved in the discovery of nuclear fission. The element meitnerium is named after her - https://en.wikipedia.org/wiki/Lise_Meitner
423
+ "meitner",
424
+ // Carla Meninsky, was the game designer and programmer for Atari 2600 games Dodge 'Em and Warlords. https://en.wikipedia.org/wiki/Carla_Meninsky
425
+ "meninsky",
426
+ // Ralph C. Merkle - American computer scientist, known for devising Merkle's puzzles - one of the very first schemes for public-key cryptography. Also, inventor of Merkle trees and co-inventor of the Merkle-Damgård construction for building collision-resistant cryptographic hash functions and the Merkle-Hellman knapsack cryptosystem. https://en.wikipedia.org/wiki/Ralph_Merkle
427
+ "merkle",
428
+ // Johanna Mestorf - German prehistoric archaeologist and first female museum director in Germany - https://en.wikipedia.org/wiki/Johanna_Mestorf
429
+ "mestorf",
430
+ // Maryam Mirzakhani - an Iranian mathematician and the first woman to win the Fields Medal. https://en.wikipedia.org/wiki/Maryam_Mirzakhani
431
+ "mirzakhani",
432
+ // Rita Levi-Montalcini - Won Nobel Prize in Physiology or Medicine jointly with colleague Stanley Cohen for the discovery of nerve growth factor (https://en.wikipedia.org/wiki/Rita_Levi-Montalcini)
433
+ "montalcini",
434
+ // Gordon Earle Moore - American engineer, Silicon Valley founding father, author of Moore's law. https://en.wikipedia.org/wiki/Gordon_Moore
435
+ "moore",
436
+ // Samuel Morse - contributed to the invention of a single-wire telegraph system based on European telegraphs and was a co-developer of the Morse code - https://en.wikipedia.org/wiki/Samuel_Morse
437
+ "morse",
438
+ // Ian Murdock - founder of the Debian project - https://en.wikipedia.org/wiki/Ian_Murdock
439
+ "murdock",
440
+ // May-Britt Moser - Nobel prize winner neuroscientist who contributed to the discovery of grid cells in the brain. https://en.wikipedia.org/wiki/May-Britt_Moser
441
+ "moser",
442
+ // John Napier of Merchiston - Scottish landowner known as an astronomer, mathematician and physicist. Best known for his discovery of logarithms. https://en.wikipedia.org/wiki/John_Napier
443
+ "napier",
444
+ // John Forbes Nash, Jr. - American mathematician who made fundamental contributions to game theory, differential geometry, and the study of partial differential equations. https://en.wikipedia.org/wiki/John_Forbes_Nash_Jr.
445
+ "nash",
446
+ // John von Neumann - todays computer architectures are based on the von Neumann architecture. https://en.wikipedia.org/wiki/Von_Neumann_architecture
447
+ "neumann",
448
+ // Isaac Newton invented classic mechanics and modern optics. https://en.wikipedia.org/wiki/Isaac_Newton
449
+ "newton",
450
+ // Florence Nightingale, more prominently known as a nurse, was also the first female member of the Royal Statistical Society and a pioneer in statistical graphics https://en.wikipedia.org/wiki/Florence_Nightingale#Statistics_and_sanitary_reform
451
+ "nightingale",
452
+ // Alfred Nobel - a Swedish chemist, engineer, innovator, and armaments manufacturer (inventor of dynamite) - https://en.wikipedia.org/wiki/Alfred_Nobel
453
+ "nobel",
454
+ // Emmy Noether, German mathematician. Noether's Theorem is named after her. https://en.wikipedia.org/wiki/Emmy_Noether
455
+ "noether",
456
+ // Poppy Northcutt. Poppy Northcutt was the first woman to work as part of NASA’s Mission Control. http://www.businessinsider.com/poppy-northcutt-helped-apollo-astronauts-2014-12?op=1
457
+ "northcutt",
458
+ // Robert Noyce invented silicon integrated circuits and gave Silicon Valley its name. - https://en.wikipedia.org/wiki/Robert_Noyce
459
+ "noyce",
460
+ // Panini - Ancient Indian linguist and grammarian from 4th century CE who worked on the world's first formal system - https://en.wikipedia.org/wiki/P%C4%81%E1%B9%87ini#Comparison_with_modern_formal_systems
461
+ "panini",
462
+ // Ambroise Pare invented modern surgery. https://en.wikipedia.org/wiki/Ambroise_Par%C3%A9
463
+ "pare",
464
+ // Blaise Pascal, French mathematician, physicist, and inventor - https://en.wikipedia.org/wiki/Blaise_Pascal
465
+ "pascal",
466
+ // Louis Pasteur discovered vaccination, fermentation and pasteurization. https://en.wikipedia.org/wiki/Louis_Pasteur.
467
+ "pasteur",
468
+ // Cecilia Payne-Gaposchkin was an astronomer and astrophysicist who, in 1925, proposed in her Ph.D. thesis an explanation for the composition of stars in terms of the relative abundances of hydrogen and helium. https://en.wikipedia.org/wiki/Cecilia_Payne-Gaposchkin
469
+ "payne",
470
+ // Radia Perlman is a software designer and network engineer and most famous for her invention of the spanning-tree protocol (STP). https://en.wikipedia.org/wiki/Radia_Perlman
471
+ "perlman",
472
+ // Nicolas Penin is the developer of this awesome framework
473
+ "penin",
474
+ // Rob Pike was a key contributor to Unix, Plan 9, the X graphic system, utf-8, and the Go programming language. https://en.wikipedia.org/wiki/Rob_Pike
475
+ "pike",
476
+ // Henri Poincaré made fundamental contributions in several fields of mathematics. https://en.wikipedia.org/wiki/Henri_Poincar%C3%A9
477
+ "poincare",
478
+ // Laura Poitras is a director and producer whose work, made possible by open source crypto tools, advances the causes of truth and freedom of information by reporting disclosures by whistleblowers such as Edward Snowden. https://en.wikipedia.org/wiki/Laura_Poitras
479
+ "poitras",
480
+ // Tat’yana Avenirovna Proskuriakova (Russian: Татья́на Авени́ровна Проскуряко́ва) (January 23 [O.S. January 10] 1909 – August 30, 1985) was a Russian-American Mayanist scholar and archaeologist who contributed significantly to the deciphering of Maya hieroglyphs, the writing system of the pre-Columbian Maya civilization of Mesoamerica. https://en.wikipedia.org/wiki/Tatiana_Proskouriakoff
481
+ "proskuriakova",
482
+ // Claudius Ptolemy - a Greco-Egyptian writer of Alexandria, known as a mathematician, astronomer, geographer, astrologer, and poet of a single epigram in the Greek Anthology - https://en.wikipedia.org/wiki/Ptolemy
483
+ "ptolemy",
484
+ // C. V. Raman - Indian physicist who won the Nobel Prize in 1930 for proposing the Raman effect. - https://en.wikipedia.org/wiki/C._V._Raman
485
+ "raman",
486
+ // Srinivasa Ramanujan - Indian mathematician and autodidact who made extraordinary contributions to mathematical analysis, number theory, infinite series, and continued fractions. - https://en.wikipedia.org/wiki/Srinivasa_Ramanujan
487
+ "ramanujan",
488
+ // Sally Kristen Ride was an American physicist and astronaut. She was the first American woman in space, and the youngest American astronaut. https://en.wikipedia.org/wiki/Sally_Ride
489
+ "ride",
490
+ // Dennis Ritchie - co-creator of UNIX and the C programming language. - https://en.wikipedia.org/wiki/Dennis_Ritchie
491
+ "ritchie",
492
+ // Ida Rhodes - American pioneer in computer programming, designed the first computer used for Social Security. https://en.wikipedia.org/wiki/Ida_Rhodes
493
+ "rhodes",
494
+ // Julia Hall Bowman Robinson - American mathematician renowned for her contributions to the fields of computability theory and computational complexity theory. https://en.wikipedia.org/wiki/Julia_Robinson
495
+ "robinson",
496
+ // Wilhelm Conrad Röntgen - German physicist who was awarded the first Nobel Prize in Physics in 1901 for the discovery of X-rays (Röntgen rays). https://en.wikipedia.org/wiki/Wilhelm_R%C3%B6ntgen
497
+ "roentgen",
498
+ // Rosalind Franklin - British biophysicist and X-ray crystallographer whose research was critical to the understanding of DNA - https://en.wikipedia.org/wiki/Rosalind_Franklin
499
+ "rosalind",
500
+ // Vera Rubin - American astronomer who pioneered work on galaxy rotation rates. https://en.wikipedia.org/wiki/Vera_Rubin
501
+ "rubin",
502
+ // Meghnad Saha - Indian astrophysicist best known for his development of the Saha equation, used to describe chemical and physical conditions in stars - https://en.wikipedia.org/wiki/Meghnad_Saha
503
+ "saha",
504
+ // Jean E. Sammet developed FORMAC, the first widely used computer language for symbolic manipulation of mathematical formulas. https://en.wikipedia.org/wiki/Jean_E._Sammet
505
+ "sammet",
506
+ // Mildred Sanderson - American mathematician best known for Sanderson's theorem concerning modular invariants. https://en.wikipedia.org/wiki/Mildred_Sanderson
507
+ "sanderson",
508
+ // Satoshi Nakamoto is the name used by the unknown person or group of people who developed bitcoin, authored the bitcoin white paper, and created and deployed bitcoin's original reference implementation. https://en.wikipedia.org/wiki/Satoshi_Nakamoto
509
+ "satoshi",
510
+ // Adi Shamir - Israeli cryptographer whose numerous inventions and contributions to cryptography include the Ferge Fiat Shamir identification scheme, the Rivest Shamir Adleman (RSA) public-key cryptosystem, the Shamir's secret sharing scheme, the breaking of the Merkle-Hellman cryptosystem, the TWINKLE and TWIRL factoring devices and the discovery of differential cryptanalysis (with Eli Biham). https://en.wikipedia.org/wiki/Adi_Shamir
511
+ "shamir",
512
+ // Claude Shannon - The father of information theory and founder of digital circuit design theory. (https://en.wikipedia.org/wiki/Claude_Shannon)
513
+ "shannon",
514
+ // Carol Shaw - Originally an Atari employee, Carol Shaw is said to be the first female video game designer. https://en.wikipedia.org/wiki/Carol_Shaw_(video_game_designer)
515
+ "shaw",
516
+ // Dame Stephanie "Steve" Shirley - Founded a software company in 1962 employing women working from home. https://en.wikipedia.org/wiki/Steve_Shirley
517
+ "shirley",
518
+ // William Shockley co-invented the transistor - https://en.wikipedia.org/wiki/William_Shockley
519
+ "shockley",
520
+ // Lina Solomonovna Stern (or Shtern; Russian: Лина Соломоновна Штерн; 26 August 1878 – 7 March 1968) was a Soviet biochemist, physiologist and humanist whose medical discoveries saved thousands of lives at the fronts of World War II. She is best known for her pioneering work on blood–brain barrier, which she described as hemato-encephalic barrier in 1921. https://en.wikipedia.org/wiki/Lina_Stern
521
+ "shtern",
522
+ // Françoise Barré-Sinoussi - French virologist and Nobel Prize Laureate in Physiology or Medicine; her work was fundamental in identifying HIV as the cause of AIDS. https://en.wikipedia.org/wiki/Fran%C3%A7oise_Barr%C3%A9-Sinoussi
523
+ "sinoussi",
524
+ // Betty Snyder - one of the original programmers of the ENIAC. https://en.wikipedia.org/wiki/ENIAC - https://en.wikipedia.org/wiki/Betty_Holberton
525
+ "snyder",
526
+ // Cynthia Solomon - Pioneer in the fields of artificial intelligence, computer science and educational computing. Known for creation of Logo, an educational programming language. https://en.wikipedia.org/wiki/Cynthia_Solomon
527
+ "solomon",
528
+ // Frances Spence - one of the original programmers of the ENIAC. https://en.wikipedia.org/wiki/ENIAC - https://en.wikipedia.org/wiki/Frances_Spence
529
+ "spence",
530
+ // Michael Stonebraker is a database research pioneer and architect of Ingres, Postgres, VoltDB and SciDB. Winner of 2014 ACM Turing Award. https://en.wikipedia.org/wiki/Michael_Stonebraker
531
+ "stonebraker",
532
+ // Ivan Edward Sutherland - American computer scientist and Internet pioneer, widely regarded as the father of computer graphics. https://en.wikipedia.org/wiki/Ivan_Sutherland
533
+ "sutherland",
534
+ // Janese Swanson (with others) developed the first of the Carmen Sandiego games. She went on to found Girl Tech. https://en.wikipedia.org/wiki/Janese_Swanson
535
+ "swanson",
536
+ // Aaron Swartz was influential in creating RSS, Markdown, Creative Commons, Reddit, and much of the internet as we know it today. He was devoted to freedom of information on the web. https://en.wikiquote.org/wiki/Aaron_Swartz
537
+ "swartz",
538
+ // Bertha Swirles was a theoretical physicist who made a number of contributions to early quantum theory. https://en.wikipedia.org/wiki/Bertha_Swirles
539
+ "swirles",
540
+ // Helen Brooke Taussig - American cardiologist and founder of the field of paediatric cardiology. https://en.wikipedia.org/wiki/Helen_B._Taussig
541
+ "taussig",
542
+ // Valentina Tereshkova is a Russian engineer, cosmonaut and politician. She was the first woman to fly to space in 1963. In 2013, at the age of 76, she offered to go on a one-way mission to Mars. https://en.wikipedia.org/wiki/Valentina_Tereshkova
543
+ "tereshkova",
544
+ // Nikola Tesla invented the AC electric system and every gadget ever used by a James Bond villain. https://en.wikipedia.org/wiki/Nikola_Tesla
545
+ "tesla",
546
+ // Marie Tharp - American geologist and oceanic cartographer who co-created the first scientific map of the Atlantic Ocean floor. Her work led to the acceptance of the theories of plate tectonics and continental drift. https://en.wikipedia.org/wiki/Marie_Tharp
547
+ "tharp",
548
+ // Ken Thompson - co-creator of UNIX and the C programming language - https://en.wikipedia.org/wiki/Ken_Thompson
549
+ "thompson",
550
+ // Linus Torvalds invented Linux and Git. https://en.wikipedia.org/wiki/Linus_Torvalds
551
+ "torvalds",
552
+ // Youyou Tu - Chinese pharmaceutical chemist and educator known for discovering artemisinin and dihydroartemisinin, used to treat malaria, which has saved millions of lives. Joint winner of the 2015 Nobel Prize in Physiology or Medicine. https://en.wikipedia.org/wiki/Tu_Youyou
553
+ "tu",
554
+ // Alan Turing was a founding father of computer science. https://en.wikipedia.org/wiki/Alan_Turing.
555
+ "turing",
556
+ // Varahamihira - Ancient Indian mathematician who discovered trigonometric formulae during 505-587 CE - https://en.wikipedia.org/wiki/Var%C4%81hamihira#Contributions
557
+ "varahamihira",
558
+ // Dorothy Vaughan was a NASA mathematician and computer programmer on the SCOUT launch vehicle program that put America's first satellites into space - https://en.wikipedia.org/wiki/Dorothy_Vaughan
559
+ "vaughan",
560
+ // Sir Mokshagundam Visvesvaraya - is a notable Indian engineer. He is a recipient of the Indian Republic's highest honour, the Bharat Ratna, in 1955. On his birthday, 15 September is celebrated as Engineer's Day in India in his memory - https://en.wikipedia.org/wiki/Visvesvaraya
561
+ "visvesvaraya",
562
+ // Christiane Nüsslein-Volhard - German biologist, won Nobel Prize in Physiology or Medicine in 1995 for research on the genetic control of embryonic development. https://en.wikipedia.org/wiki/Christiane_N%C3%BCsslein-Volhard
563
+ "volhard",
564
+ // Cédric Villani - French mathematician, won Fields Medal, Fermat Prize and Poincaré Price for his work in differential geometry and statistical mechanics. https://en.wikipedia.org/wiki/C%C3%A9dric_Villani
565
+ "villani",
566
+ // Marlyn Wescoff - one of the original programmers of the ENIAC. https://en.wikipedia.org/wiki/ENIAC - https://en.wikipedia.org/wiki/Marlyn_Meltzer
567
+ "wescoff",
568
+ // Sylvia B. Wilbur - British computer scientist who helped develop the ARPANET, was one of the first to exchange email in the UK and a leading researcher in computer-supported collaborative work. https://en.wikipedia.org/wiki/Sylvia_Wilbur
569
+ "wilbur",
570
+ // Andrew Wiles - Notable British mathematician who proved the enigmatic Fermat's Last Theorem - https://en.wikipedia.org/wiki/Andrew_Wiles
571
+ "wiles",
572
+ // Roberta Williams, did pioneering work in graphical adventure games for personal computers, particularly the King's Quest series. https://en.wikipedia.org/wiki/Roberta_Williams
573
+ "williams",
574
+ // Malcolm John Williamson - British mathematician and cryptographer employed by the GCHQ. Developed in 1974 what is now known as Diffie-Hellman key exchange (Diffie and Hellman first published the scheme in 1976). https://en.wikipedia.org/wiki/Malcolm_J._Williamson
575
+ "williamson",
576
+ // Sophie Wilson designed the first Acorn Micro-Computer and the instruction set for ARM processors. https://en.wikipedia.org/wiki/Sophie_Wilson
577
+ "wilson",
578
+ // Jeannette Wing - co-developed the Liskov substitution principle. - https://en.wikipedia.org/wiki/Jeannette_Wing
579
+ "wing",
580
+ // Steve Wozniak invented the Apple I and Apple II. https://en.wikipedia.org/wiki/Steve_Wozniak
581
+ "wozniak",
582
+ // The Wright brothers, Orville and Wilbur - credited with inventing and building the world's first successful airplane and making the first controlled, powered and sustained heavier-than-air human flight - https://en.wikipedia.org/wiki/Wright_brothers
583
+ "wright",
584
+ // Chien-Shiung Wu - Chinese-American experimental physicist who made significant contributions to nuclear physics. https://en.wikipedia.org/wiki/Chien-Shiung_Wu
585
+ "wu",
586
+ // Rosalyn Sussman Yalow - Rosalyn Sussman Yalow was an American medical physicist, and a co-winner of the 1977 Nobel Prize in Physiology or Medicine for development of the radioimmunoassay technique. https://en.wikipedia.org/wiki/Rosalyn_Sussman_Yalow
587
+ "yalow",
588
+ // Ada Yonath - an Israeli crystallographer, the first woman from the Middle East to win a Nobel prize in the sciences. https://en.wikipedia.org/wiki/Ada_Yonath
589
+ "yonath",
590
+ // Nikolay Yegorovich Zhukovsky (Russian: Никола́й Его́рович Жуко́вский, January 17 1847 – March 17, 1921) was a Russian scientist, mathematician and engineer, and a founding father of modern aero- and hydrodynamics. Whereas contemporary scientists scoffed at the idea of human flight, Zhukovsky was the first to undertake the study of airflow. He is often called the Father of Russian Aviation. https://en.wikipedia.org/wiki/Nikolay_Yegorovich_Zhukovsky
591
+ "zhukovsky",
592
+ ];
593
+ // GetRandomName generates a random name from the list of adjectives and surnames in this package
594
+ // formatted as "adjective_surname". For example 'focused_turing'. If retry is non-zero, a random
595
+ // integer between 0 and 10 will be added to the end of the name, e.g `focused_turing3`
596
+ export default function getRandomName(retry) {
597
+ const name = `${left[Math.round(Math.random() * left.length)]}_${right[Math.round(Math.random() * right.length)]}`;
598
+ if (name == 'boring_wozniak' || name == 'boring_penin') /* Steve Wozniak and Nicolas Penin are not boring */
599
+ return getRandomName(retry);
600
+ if (retry)
601
+ return `${name}${Math.round(Math.random() * 10)}`;
602
+ return name;
603
+ }
604
+ //# sourceMappingURL=name.js.map