github.com/unigraph-dev/dgraph@v1.1.1-0.20200923154953-8b52b426f765/x/names-generator.go (about)

     1  // Taken from https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go
     2  // Modified for use in Dgraph.
     3  /*
     4                                   Apache License
     5                             Version 2.0, January 2004
     6                          https://www.apache.org/licenses/
     7  
     8     TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
     9  
    10     1. Definitions.
    11  
    12        "License" shall mean the terms and conditions for use, reproduction,
    13        and distribution as defined by Sections 1 through 9 of this document.
    14  
    15        "Licensor" shall mean the copyright owner or entity authorized by
    16        the copyright owner that is granting the License.
    17  
    18        "Legal Entity" shall mean the union of the acting entity and all
    19        other entities that control, are controlled by, or are under common
    20        control with that entity. For the purposes of this definition,
    21        "control" means (i) the power, direct or indirect, to cause the
    22        direction or management of such entity, whether by contract or
    23        otherwise, or (ii) ownership of fifty percent (50%) or more of the
    24        outstanding shares, or (iii) beneficial ownership of such entity.
    25  
    26        "You" (or "Your") shall mean an individual or Legal Entity
    27        exercising permissions granted by this License.
    28  
    29        "Source" form shall mean the preferred form for making modifications,
    30        including but not limited to software source code, documentation
    31        source, and configuration files.
    32  
    33        "Object" form shall mean any form resulting from mechanical
    34        transformation or translation of a Source form, including but
    35        not limited to compiled object code, generated documentation,
    36        and conversions to other media types.
    37  
    38        "Work" shall mean the work of authorship, whether in Source or
    39        Object form, made available under the License, as indicated by a
    40        copyright notice that is included in or attached to the work
    41        (an example is provided in the Appendix below).
    42  
    43        "Derivative Works" shall mean any work, whether in Source or Object
    44        form, that is based on (or derived from) the Work and for which the
    45        editorial revisions, annotations, elaborations, or other modifications
    46        represent, as a whole, an original work of authorship. For the purposes
    47        of this License, Derivative Works shall not include works that remain
    48        separable from, or merely link (or bind by name) to the interfaces of,
    49        the Work and Derivative Works thereof.
    50  
    51        "Contribution" shall mean any work of authorship, including
    52        the original version of the Work and any modifications or additions
    53        to that Work or Derivative Works thereof, that is intentionally
    54        submitted to Licensor for inclusion in the Work by the copyright owner
    55        or by an individual or Legal Entity authorized to submit on behalf of
    56        the copyright owner. For the purposes of this definition, "submitted"
    57        means any form of electronic, verbal, or written communication sent
    58        to the Licensor or its representatives, including but not limited to
    59        communication on electronic mailing lists, source code control systems,
    60        and issue tracking systems that are managed by, or on behalf of, the
    61        Licensor for the purpose of discussing and improving the Work, but
    62        excluding communication that is conspicuously marked or otherwise
    63        designated in writing by the copyright owner as "Not a Contribution."
    64  
    65        "Contributor" shall mean Licensor and any individual or Legal Entity
    66        on behalf of whom a Contribution has been received by Licensor and
    67        subsequently incorporated within the Work.
    68  
    69     2. Grant of Copyright License. Subject to the terms and conditions of
    70        this License, each Contributor hereby grants to You a perpetual,
    71        worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    72        copyright license to reproduce, prepare Derivative Works of,
    73        publicly display, publicly perform, sublicense, and distribute the
    74        Work and such Derivative Works in Source or Object form.
    75  
    76     3. Grant of Patent License. Subject to the terms and conditions of
    77        this License, each Contributor hereby grants to You a perpetual,
    78        worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    79        (except as stated in this section) patent license to make, have made,
    80        use, offer to sell, sell, import, and otherwise transfer the Work,
    81        where such license applies only to those patent claims licensable
    82        by such Contributor that are necessarily infringed by their
    83        Contribution(s) alone or by combination of their Contribution(s)
    84        with the Work to which such Contribution(s) was submitted. If You
    85        institute patent litigation against any entity (including a
    86        cross-claim or counterclaim in a lawsuit) alleging that the Work
    87        or a Contribution incorporated within the Work constitutes direct
    88        or contributory patent infringement, then any patent licenses
    89        granted to You under this License for that Work shall terminate
    90        as of the date such litigation is filed.
    91  
    92     4. Redistribution. You may reproduce and distribute copies of the
    93        Work or Derivative Works thereof in any medium, with or without
    94        modifications, and in Source or Object form, provided that You
    95        meet the following conditions:
    96  
    97        (a) You must give any other recipients of the Work or
    98            Derivative Works a copy of this License; and
    99  
   100        (b) You must cause any modified files to carry prominent notices
   101            stating that You changed the files; and
   102  
   103        (c) You must retain, in the Source form of any Derivative Works
   104            that You distribute, all copyright, patent, trademark, and
   105            attribution notices from the Source form of the Work,
   106            excluding those notices that do not pertain to any part of
   107            the Derivative Works; and
   108  
   109        (d) If the Work includes a "NOTICE" text file as part of its
   110            distribution, then any Derivative Works that You distribute must
   111            include a readable copy of the attribution notices contained
   112            within such NOTICE file, excluding those notices that do not
   113            pertain to any part of the Derivative Works, in at least one
   114            of the following places: within a NOTICE text file distributed
   115            as part of the Derivative Works; within the Source form or
   116            documentation, if provided along with the Derivative Works; or,
   117            within a display generated by the Derivative Works, if and
   118            wherever such third-party notices normally appear. The contents
   119            of the NOTICE file are for informational purposes only and
   120            do not modify the License. You may add Your own attribution
   121            notices within Derivative Works that You distribute, alongside
   122            or as an addendum to the NOTICE text from the Work, provided
   123            that such additional attribution notices cannot be construed
   124            as modifying the License.
   125  
   126        You may add Your own copyright statement to Your modifications and
   127        may provide additional or different license terms and conditions
   128        for use, reproduction, or distribution of Your modifications, or
   129        for any such Derivative Works as a whole, provided Your use,
   130        reproduction, and distribution of the Work otherwise complies with
   131        the conditions stated in this License.
   132  
   133     5. Submission of Contributions. Unless You explicitly state otherwise,
   134        any Contribution intentionally submitted for inclusion in the Work
   135        by You to the Licensor shall be under the terms and conditions of
   136        this License, without any additional terms or conditions.
   137        Notwithstanding the above, nothing herein shall supersede or modify
   138        the terms of any separate license agreement you may have executed
   139        with Licensor regarding such Contributions.
   140  
   141     6. Trademarks. This License does not grant permission to use the trade
   142        names, trademarks, service marks, or product names of the Licensor,
   143        except as required for reasonable and customary use in describing the
   144        origin of the Work and reproducing the content of the NOTICE file.
   145  
   146     7. Disclaimer of Warranty. Unless required by applicable law or
   147        agreed to in writing, Licensor provides the Work (and each
   148        Contributor provides its Contributions) on an "AS IS" BASIS,
   149        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
   150        implied, including, without limitation, any warranties or conditions
   151        of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
   152        PARTICULAR PURPOSE. You are solely responsible for determining the
   153        appropriateness of using or redistributing the Work and assume any
   154        risks associated with Your exercise of permissions under this License.
   155  
   156     8. Limitation of Liability. In no event and under no legal theory,
   157        whether in tort (including negligence), contract, or otherwise,
   158        unless required by applicable law (such as deliberate and grossly
   159        negligent acts) or agreed to in writing, shall any Contributor be
   160        liable to You for damages, including any direct, indirect, special,
   161        incidental, or consequential damages of any character arising as a
   162        result of this License or out of the use or inability to use the
   163        Work (including but not limited to damages for loss of goodwill,
   164        work stoppage, computer failure or malfunction, or any and all
   165        other commercial damages or losses), even if such Contributor
   166        has been advised of the possibility of such damages.
   167  
   168     9. Accepting Warranty or Additional Liability. While redistributing
   169        the Work or Derivative Works thereof, You may choose to offer,
   170        and charge a fee for, acceptance of support, warranty, indemnity,
   171        or other liability obligations and/or rights consistent with this
   172        License. However, in accepting such obligations, You may act only
   173        on Your own behalf and on Your sole responsibility, not on behalf
   174        of any other Contributor, and only if You agree to indemnify,
   175        defend, and hold each Contributor harmless for any liability
   176        incurred by, or claims asserted against, such Contributor by reason
   177        of your accepting any such warranty or additional liability.
   178  
   179     END OF TERMS AND CONDITIONS
   180  
   181     Copyright 2013-2018 Docker, Inc.
   182  
   183     Licensed under the Apache License, Version 2.0 (the "License");
   184     you may not use this file except in compliance with the License.
   185     You may obtain a copy of the License at
   186  
   187         https://www.apache.org/licenses/LICENSE-2.0
   188  
   189     Unless required by applicable law or agreed to in writing, software
   190     distributed under the License is distributed on an "AS IS" BASIS,
   191     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   192     See the License for the specific language governing permissions and
   193     limitations under the License.
   194  */
   195  
   196  package x
   197  
   198  import (
   199  	"fmt"
   200  	"math/rand"
   201  )
   202  
   203  var (
   204  	left = [...]string{
   205  		"admiring",
   206  		"adoring",
   207  		"affectionate",
   208  		"agitated",
   209  		"amazing",
   210  		"angry",
   211  		"awesome",
   212  		"beautiful",
   213  		"blissful",
   214  		"bold",
   215  		"boring",
   216  		"brave",
   217  		"busy",
   218  		"charming",
   219  		"clever",
   220  		"cocky",
   221  		"cool",
   222  		"compassionate",
   223  		"competent",
   224  		"condescending",
   225  		"confident",
   226  		"cranky",
   227  		"crazy",
   228  		"dazzling",
   229  		"determined",
   230  		"distracted",
   231  		"dreamy",
   232  		"eager",
   233  		"ecstatic",
   234  		"elastic",
   235  		"elated",
   236  		"elegant",
   237  		"eloquent",
   238  		"epic",
   239  		"exciting",
   240  		"fervent",
   241  		"festive",
   242  		"flamboyant",
   243  		"focused",
   244  		"friendly",
   245  		"frosty",
   246  		"funny",
   247  		"gallant",
   248  		"gifted",
   249  		"goofy",
   250  		"gracious",
   251  		"great",
   252  		"happy",
   253  		"hardcore",
   254  		"heuristic",
   255  		"hopeful",
   256  		"hungry",
   257  		"infallible",
   258  		"inspiring",
   259  		"interesting",
   260  		"intelligent",
   261  		"jolly",
   262  		"jovial",
   263  		"keen",
   264  		"kind",
   265  		"laughing",
   266  		"loving",
   267  		"lucid",
   268  		"magical",
   269  		"mystifying",
   270  		"modest",
   271  		"musing",
   272  		"naughty",
   273  		"nervous",
   274  		"nice",
   275  		"nifty",
   276  		"nostalgic",
   277  		"objective",
   278  		"optimistic",
   279  		"peaceful",
   280  		"pedantic",
   281  		"pensive",
   282  		"practical",
   283  		"priceless",
   284  		"quirky",
   285  		"quizzical",
   286  		"recursing",
   287  		"relaxed",
   288  		"reverent",
   289  		"romantic",
   290  		"sad",
   291  		"serene",
   292  		"sharp",
   293  		"silly",
   294  		"sleepy",
   295  		"stoic",
   296  		"strange",
   297  		"stupefied",
   298  		"suspicious",
   299  		"sweet",
   300  		"tender",
   301  		"thirsty",
   302  		"trusting",
   303  		"unruffled",
   304  		"upbeat",
   305  		"vibrant",
   306  		"vigilant",
   307  		"vigorous",
   308  		"wizardly",
   309  		"wonderful",
   310  		"xenodochial",
   311  		"youthful",
   312  		"zealous",
   313  		"zen",
   314  	}
   315  
   316  	// Docker, starting from 0.7.x, generates names from notable scientists and hackers.
   317  	// Please, for any amazing man that you add to the list, consider adding an equally amazing
   318  	// woman to it, and vice versa.
   319  	right = [...]string{
   320  		// Muhammad ibn Jābir al-Ḥarrānī al-Battānī was a founding father of astronomy.
   321  		"albattani",
   322  
   323  		// Frances E. Allen, became the first female IBM Fellow in 1989. In 2006, she became the
   324  		// first female recipient of the ACM's Turing Award.
   325  		"allen",
   326  
   327  		// June Almeida - Scottish virologist who took the first pictures of the rubella virus.
   328  		"almeida",
   329  
   330  		// Kathleen Antonelli, American computer programmer and one of the six original programmers
   331  		// of the ENIAC.
   332  		"antonelli",
   333  
   334  		// Maria Gaetana Agnesi - Italian mathematician, philosopher, theologian and humanitarian.
   335  		// She was the first woman to write a mathematics handbook and the first woman appointed
   336  		// as a Mathematics Professor at a University.
   337  		"agnesi",
   338  
   339  		// Archimedes was a physicist, engineer and mathematician who invented too many things to
   340  		// list them here.
   341  		"archimedes",
   342  
   343  		// Maria Ardinghelli - Italian translator, mathematician and physicist.
   344  		"ardinghelli",
   345  
   346  		// Aryabhata - Ancient Indian mathematician-astronomer during 476-550 CE.
   347  		"aryabhata",
   348  
   349  		// Wanda Austin - Wanda Austin is the President and CEO of The Aerospace Corporation, a
   350  		// leading architect for the US security space programs.
   351  		"austin",
   352  
   353  		// Charles Babbage invented the concept of a programmable computer.
   354  		"babbage",
   355  
   356  		// Stefan Banach - Polish mathematician, was one of the founders of modern functional
   357  		// analysis.
   358  		"banach",
   359  
   360  		// Buckaroo Banzai and his mentor Dr. Hikita perfectd the "oscillation overthruster", a
   361  		// device that allows one to pass through solid matter.
   362  		"banzai",
   363  
   364  		// John Bardeen co-invented the transistor.
   365  		"bardeen",
   366  
   367  		// Jean Bartik, born Betty Jean Jennings, was one of the original programmers for the ENIAC
   368  		// computer.
   369  		"bartik",
   370  
   371  		// Laura Bassi, the world's first female professor.
   372  		"bassi",
   373  
   374  		// Hugh Beaver, British engineer, founder of the Guinness Book of World Records.
   375  		"beaver",
   376  
   377  		// Alexander Graham Bell - an eminent Scottish-born scientist, inventor, engineer and
   378  		// innovator who is credited with inventing the first practical telephone.
   379  		"bell",
   380  
   381  		// Karl Friedrich Benz - a German automobile engineer. Inventor of the first practical
   382  		// motorcar.
   383  		"benz",
   384  
   385  		// Homi J Bhabha - was an Indian nuclear physicist, founding director, and professor of
   386  		// physics at the Tata Institute of Fundamental Research. Colloquially known as "father of
   387  		// Indian nuclear programme".
   388  		"bhabha",
   389  
   390  		// Bhaskara II - Ancient Indian mathematician-astronomer whose work on calculus predates
   391  		// Newton and Leibniz by over half a millennium.
   392  		"bhaskara",
   393  
   394  		// Sue Black - British computer scientist and campaigner. She has been instrumental in
   395  		// saving Bletchley Park, the site of World War II codebreaking.
   396  		"black",
   397  
   398  		// Elizabeth Helen Blackburn - Australian-American Nobel laureate; best known for
   399  		// co-discovering telomerase.
   400  		"blackburn",
   401  
   402  		// Elizabeth Blackwell - American doctor and first American woman to receive a medical
   403  		// degree.
   404  		"blackwell",
   405  
   406  		// Niels Bohr is the father of quantum theory.
   407  		"bohr",
   408  
   409  		// Kathleen Booth, she's credited with writing the first assembly language.
   410  		"booth",
   411  
   412  		// Anita Borg - Anita Borg was the founding director of the Institute for Women and
   413  		// Technology (IWT).
   414  		"borg",
   415  
   416  		// Satyendra Nath Bose - He provided the foundation for Bose–Einstein statistics and the
   417  		// theory of the Bose–Einstein condensate. -
   418  		"bose",
   419  
   420  		// Katherine Louise Bouman is an imaging scientist and Assistant Professor of Computer
   421  		// Science at the California Institute of Technology. She researches computational methods
   422  		// for imaging, and developed an algorithm that made possible the picture first
   423  		// visualization of a black hole using the Event Horizon Telescope.
   424  		"bouman",
   425  
   426  		// Evelyn Boyd Granville - She was one of the first African-American woman to receive a
   427  		// Ph.D. in mathematics; she earned it in 1949 from Yale University.
   428  		"boyd",
   429  
   430  		// Brahmagupta - Ancient Indian mathematician during 598-670 CE who gave rules to compute
   431  		// with zero.
   432  		"brahmagupta",
   433  
   434  		// Walter Houser Brattain co-invented the transistor.
   435  		"brattain",
   436  
   437  		// Emmett Brown invented time travel.
   438  		"brown",
   439  
   440  		// Linda Brown Buck - American biologist and Nobel laureate best known for her genetic and
   441  		// molecular analyses of the mechanisms of smell.
   442  		"buck",
   443  
   444  		// Dame Susan Jocelyn Bell Burnell - Northern Irish astrophysicist who discovered radio
   445  		// pulsars and was the first to analyse them.
   446  		"burnell",
   447  
   448  		// Annie Jump Cannon - pioneering female astronomer who classified hundreds of thousands of
   449  		// stars and created the system we use to understand stars today.
   450  		"cannon",
   451  
   452  		// Rachel Carson - American marine biologist and conservationist, her book Silent Spring and
   453  		// other writings are credited with advancing the global environmental movement.
   454  		"carson",
   455  
   456  		// Dame Mary Lucy Cartwright - British mathematician who was one of the first to study what
   457  		// is now known as chaos theory. Also known for Cartwright's theorem which finds
   458  		// applications in signal processing.
   459  		"cartwright",
   460  
   461  		// Vinton Gray Cerf - American Internet pioneer, recognised as one of "the fathers of the
   462  		// Internet". With Robert Elliot Kahn, he designed TCP and IP, the primary data
   463  		// communication protocols of the Internet and other computer networks.
   464  		"cerf",
   465  
   466  		// Subrahmanyan Chandrasekhar - Astrophysicist known for his mathematical theory on
   467  		// different stages and evolution in structures of the stars. He has won nobel prize for
   468  		// physics -
   469  		"chandrasekhar",
   470  
   471  		// Sergey Alexeyevich Chaplygin (Russian: Серге́й Алексе́евич Чаплы́гин; April 5, 1869 –
   472  		// October 8, 1942) was a Russian and Soviet physicist, mathematician, and mechanical
   473  		// engineer. He is known for mathematical formulas such as Chaplygin's equation and for a
   474  		// hypothetical substance in cosmology called Chaplygin gas, named after him.
   475  		"chaplygin",
   476  
   477  		// Émilie du Châtelet - French natural philosopher, mathematician, physicist, and author
   478  		// during the early 1730s, known for her translation of and commentary on Isaac Newton's
   479  		// book Principia containing basic laws of physics.
   480  		"chatelet",
   481  
   482  		// Asima Chatterjee was an Indian organic chemist noted for her research on vinca alkaloids,
   483  		// development of drugs for treatment of epilepsy and malaria -
   484  		"chatterjee",
   485  
   486  		// Pafnuty Chebyshev - Russian mathematician. He is known fo his works on probability,
   487  		// statistics, mechanics, analytical geometry and number theory
   488  		"chebyshev",
   489  
   490  		// Bram Cohen - American computer programmer and author of the BitTorrent peer-to-peer
   491  		// protocol.
   492  		"cohen",
   493  
   494  		// David Lee Chaum - American computer scientist and cryptographer. Known for his seminal
   495  		// contributions in the field of anonymous communication.
   496  		"chaum",
   497  
   498  		// Joan Clarke - Bletchley Park code breaker during the Second World War who pioneered
   499  		// techniques that remained top secret for decades. Also an accomplished numismatist.
   500  		"clarke",
   501  
   502  		// Jane Colden - American botanist widely considered the first female American botanist.
   503  		"colden",
   504  
   505  		// Gerty Theresa Cori - American biochemist who became the third woman—and first American
   506  		// woman—to win a Nobel Prize in science, and the first woman to be awarded the Nobel Prize
   507  		// in Physiology or Medicine. Cori was born in Prague.
   508  		"cori",
   509  
   510  		// Seymour Roger Cray was an American electrical engineer and supercomputer architect who
   511  		// designed a series of computers that were the fastest in the world for decades.
   512  		"cray",
   513  
   514  		// This entry reflects a husband and wife team who worked together: Joan Curran was a Welsh
   515  		// scientist who developed radar and invented chaff, a radar countermeasure. Samuel Curran
   516  		// was an Irish physicist who worked alongside his wife during WWII and invented the
   517  		// proximity fuse.
   518  		"curran",
   519  
   520  		// Marie Curie discovered radioactivity.
   521  		"curie",
   522  
   523  		// Charles Darwin established the principles of natural evolution.
   524  		"darwin",
   525  
   526  		// Leonardo Da Vinci invented too many things to list here.
   527  		"davinci",
   528  
   529  		// A. K. (Alexander Keewatin) Dewdney, Canadian mathematician, computer scientist, author
   530  		// and filmmaker. Contributor to Scientific American's "Computer Recreations" from 1984 to
   531  		// 1991. Author of Core War (program), The Planiverse, The Armchair Universe, The Magic
   532  		// Machine, The New Turing Omnibus, and more.
   533  		"dewdney",
   534  
   535  		// Satish Dhawan - Indian mathematician and aerospace engineer, known for leading the
   536  		// successful and indigenous development of the Indian space programme.
   537  		"dhawan",
   538  
   539  		// Bailey Whitfield Diffie - American cryptographer and one of the pioneers of public-key
   540  		// cryptography.
   541  		"diffie",
   542  
   543  		// Edsger Wybe Dijkstra was a Dutch computer scientist and mathematical scientist.
   544  		"dijkstra",
   545  
   546  		// Paul Adrien Maurice Dirac - English theoretical physicist who made fundamental
   547  		// contributions to the early development of both quantum mechanics and quantum
   548  		// electrodynamics.
   549  		"dirac",
   550  
   551  		// Agnes Meyer Driscoll - American cryptanalyst during World Wars I and II who successfully
   552  		// cryptanalysed a number of Japanese ciphers. She was also the co-developer of one of the
   553  		// cipher machines of the US Navy, the CM.
   554  		"driscoll",
   555  
   556  		// Donna Dubinsky - played an integral role in the development of personal digital
   557  		// assistants (PDAs) serving as CEO of Palm, Inc. and co-founding Handspring.
   558  		"dubinsky",
   559  
   560  		// Annie Easley - She was a leading member of the team which developed software for the
   561  		// Centaur rocket stage and one of the first African-Americans in her field.
   562  		"easley",
   563  
   564  		// Thomas Alva Edison, prolific inventor.
   565  		"edison",
   566  
   567  		// Albert Einstein invented the general theory of relativity.
   568  		"einstein",
   569  
   570  		// Alexandra Asanovna Elbakyan (Russian: Алекса́ндра Аса́новна Элбакя́н) is a Kazakhstani
   571  		// graduate student, computer programmer, internet pirate in hiding, and the creator of the
   572  		// site Sci-Hub. Nature has listed her in 2016 in the top ten people that mattered in
   573  		// science, and Ars Technica has compared her to Aaron Swartz.
   574  		"elbakyan",
   575  
   576  		// Taher A. ElGamal - Egyptian cryptographer best known for the ElGamal discrete log
   577  		// cryptosystem and the ElGamal digital signature scheme.
   578  		"elgamal",
   579  
   580  		// Gertrude Elion - American biochemist, pharmacologist and the 1988 recipient of the Nobel
   581  		// Prize in Medicine -
   582  		"elion",
   583  
   584  		// James Henry Ellis - British engineer and cryptographer employed by the GCHQ. Best known
   585  		// for conceiving for the first time, the idea of public-key cryptography.
   586  		"ellis",
   587  
   588  		// Douglas Engelbart gave the mother of all demos.
   589  		"engelbart",
   590  
   591  		// Euclid invented geometry.
   592  		"euclid",
   593  
   594  		// Leonhard Euler invented large parts of modern mathematics.
   595  		"euler",
   596  
   597  		// Michael Faraday - British scientist who contributed to the study of electromagnetism and
   598  		// electrochemistry.
   599  		"faraday",
   600  
   601  		// Horst Feistel - German-born American cryptographer who was one of the earliest
   602  		// non-government researchers to study the design and theory of block ciphers. Co-developer
   603  		// of DES and Lucifer. Feistel networks, a symmetric structure used in the construction of
   604  		// block ciphers are named after him.
   605  		"feistel",
   606  
   607  		// Pierre de Fermat pioneered several aspects of modern mathematics.
   608  		"fermat",
   609  
   610  		// Enrico Fermi invented the first nuclear reactor.
   611  		"fermi",
   612  
   613  		// Richard Feynman was a key contributor to quantum mechanics and particle physics.
   614  		"feynman",
   615  
   616  		// Benjamin Franklin is famous for his experiments in electricity and the invention of the
   617  		// lightning rod.
   618  		"franklin",
   619  
   620  		// Yuri Alekseyevich Gagarin - Soviet pilot and cosmonaut, best known as the first human to
   621  		// journey into outer space.
   622  		"gagarin",
   623  
   624  		// Galileo was a founding father of modern astronomy, and faced politics and obscurantism to
   625  		// establish scientific truth.
   626  		"galileo",
   627  
   628  		// Évariste Galois - French mathematician whose work laid the foundations of Galois theory
   629  		// and group theory, two major branches of abstract algebra, and the subfield of Galois
   630  		// connections, all while still in his late teens.
   631  		"galois",
   632  
   633  		// Kadambini Ganguly - Indian physician, known for being the first South Asian female
   634  		// physician, trained in western medicine, to graduate in South Asia.
   635  		"ganguly",
   636  
   637  		// William Henry "Bill" Gates III is an American business magnate, philanthropist, investor,
   638  		// computer programmer, and inventor.
   639  		"gates",
   640  
   641  		// Johann Carl Friedrich Gauss - German mathematician who made significant contributions to
   642  		// many fields, including number theory, algebra, statistics, analysis, differential
   643  		// geometry, geodesy, geophysics, mechanics, electrostatics, magnetic fields, astronomy,
   644  		// matrix theory, and optics.
   645  		"gauss",
   646  
   647  		// Marie-Sophie Germain - French mathematician, physicist and philosopher. Known for her
   648  		// work on elasticity theory, number theory and philosophy.
   649  		"germain",
   650  
   651  		// Adele Goldberg, was one of the designers and developers of the Smalltalk language.
   652  		"goldberg",
   653  
   654  		// Adele Goldstine, born Adele Katz, wrote the complete technical description for the first
   655  		// electronic digital computer, ENIAC.
   656  		"goldstine",
   657  
   658  		// Shafi Goldwasser is a computer scientist known for creating theoretical foundations of
   659  		// modern cryptography. Winner of 2012 ACM Turing Award.
   660  		"goldwasser",
   661  
   662  		// James Golick, all around gangster.
   663  		"golick",
   664  
   665  		// Jane Goodall - British primatologist, ethologist, and anthropologist who is considered to
   666  		// be the world's foremost expert on chimpanzees.
   667  		"goodall",
   668  
   669  		// Stephen Jay Gould was was an American paleontologist, evolutionary biologist, and
   670  		// historian of science. He is most famous for the theory of punctuated equilibrium -
   671  		"gould",
   672  
   673  		// Carolyn Widney Greider - American molecular biologist and joint winner of the 2009 Nobel
   674  		// Prize for Physiology or Medicine for the discovery of telomerase.
   675  		"greider",
   676  
   677  		// Alexander Grothendieck - German-born French mathematician who became a leading figure in
   678  		// the creation of modern algebraic geometry.
   679  		"grothendieck",
   680  
   681  		// Lois Haibt - American computer scientist, part of the team at IBM that developed FORTRAN.
   682  		"haibt",
   683  
   684  		// Margaret Hamilton - Director of the Software Engineering Division of the MIT
   685  		// Instrumentation Laboratory, which developed on-board flight software for the Apollo space
   686  		// program.
   687  		"hamilton",
   688  
   689  		// Caroline Harriet Haslett - English electrical engineer, electricity industry
   690  		// administrator and champion of women's rights. Co-author of British Standard 1363 that
   691  		// specifies AC power plugs and sockets used across the United Kingdom (which is widely
   692  		// considered as one of the safest designs).
   693  		"haslett",
   694  
   695  		// Stephen Hawking pioneered the field of cosmology by combining general relativity and
   696  		// quantum mechanics.
   697  		"hawking",
   698  
   699  		// Martin Edward Hellman - American cryptologist, best known for his invention of public-key
   700  		// cryptography in co-operation with Whitfield Diffie and Ralph Merkle.
   701  		"hellman",
   702  
   703  		// Werner Heisenberg was a founding father of quantum mechanics.
   704  		"heisenberg",
   705  
   706  		// Grete Hermann was a German philosopher noted for her philosophical work on the
   707  		// foundations of quantum mechanics.
   708  		"hermann",
   709  
   710  		// Caroline Lucretia Herschel - German astronomer and discoverer of several comets.
   711  		"herschel",
   712  
   713  		// Heinrich Rudolf Hertz - German physicist who first conclusively proved the existence of
   714  		// the electromagnetic waves.
   715  		"hertz",
   716  
   717  		// Jaroslav Heyrovský was the inventor of the polarographic method, father of the
   718  		// electroanalytical method, and recipient of the Nobel Prize in 1959. His main field of
   719  		// work was polarography.
   720  		"heyrovsky",
   721  
   722  		// Dorothy Hodgkin was a British biochemist, credited with the development of protein
   723  		// crystallography. She was awarded the Nobel Prize in Chemistry in 1964.
   724  		"hodgkin",
   725  
   726  		// Douglas R. Hofstadter is an American professor of cognitive science and author of the
   727  		// Pulitzer Prize and American Book Award-winning work Goedel, Escher, Bach: An Eternal
   728  		// Golden Braid in 1979. A mind-bending work which coined Hofstadter's Law: "It always takes
   729  		// longer than you expect, even when you take into account Hofstadter's Law."
   730  		"hofstadter",
   731  
   732  		// Erna Schneider Hoover revolutionized modern communication by inventing a computerized
   733  		// telephone switching method.
   734  		"hoover",
   735  
   736  		// Grace Hopper developed the first compiler for a computer programming language and is
   737  		// credited with popularizing the term "debugging" for fixing computer glitches.
   738  		"hopper",
   739  
   740  		// Frances Hugle, she was an American scientist, engineer, and inventor who contributed to
   741  		// the understanding of semiconductors, integrated circuitry, and the unique electrical
   742  		// principles of microscopic materials.
   743  		"hugle",
   744  
   745  		// Hypatia - Greek Alexandrine Neoplatonist philosopher in Egypt who was one of the earliest
   746  		// mothers of mathematics.
   747  		"hypatia",
   748  
   749  		// Teruko Ishizaka - Japanese scientist and immunologist who co-discovered the antibody
   750  		// class Immunoglobulin E.
   751  		"ishizaka",
   752  
   753  		// Mary Jackson, American mathematician and aerospace engineer who earned the highest title
   754  		// within NASA's engineering department -
   755  		"jackson",
   756  
   757  		// Yeong-Sil Jang was a Korean scientist and astronomer during the Joseon Dynasty; he
   758  		// invented the first metal printing press and water gauge.
   759  		"jang",
   760  
   761  		// Betty Jennings - one of the original programmers of the ENIAC.
   762  		"jennings",
   763  
   764  		// Mary Lou Jepsen, was the founder and chief technology officer of One Laptop Per Child
   765  		// (OLPC), and the founder of Pixel Qi.
   766  		"jepsen",
   767  
   768  		// Katherine Coleman Goble Johnson - American physicist and mathematician contributed to the
   769  		// NASA.
   770  		"johnson",
   771  
   772  		// Irène Joliot-Curie - French scientist who was awarded the Nobel Prize for Chemistry in
   773  		// 1935. Daughter of Marie and Pierre Curie.
   774  		"joliot",
   775  
   776  		// Karen Spärck Jones came up with the concept of inverse document frequency, which is used
   777  		// in most search engines today.
   778  		"jones",
   779  
   780  		// A. P. J. Abdul Kalam - is an Indian scientist aka Missile Man of India for his work on
   781  		// the development of ballistic missile and launch vehicle technology.
   782  		"kalam",
   783  
   784  		// Sergey Petrovich Kapitsa (Russian: Серге́й Петро́вич Капи́ца; 14 February 1928 – 14 August
   785  		// 2012) was a Russian physicist and demographer. He was best known as host of the popular
   786  		// and long-running Russian scientific TV show, Evident, but Incredible. His father was the
   787  		// Nobel laureate Soviet-era physicist Pyotr Kapitsa, and his brother was the geographer and
   788  		// Antarctic explorer Andrey Kapitsa.
   789  		"kapitsa",
   790  
   791  		// Susan Kare, created the icons and many of the interface elements for the original Apple
   792  		// Macintosh in the 1980s, and was an original employee of NeXT, working as the Creative
   793  		// Director.
   794  		"kare",
   795  
   796  		// Mstislav Keldysh - a Soviet scientist in the field of mathematics and mechanics,
   797  		// academician of the USSR Academy of Sciences (1946), President of the USSR Academy of
   798  		// Sciences (1961–1975), three times Hero of Socialist Labor (1956, 1961, 1971), fellow of
   799  		// the Royal Society of Edinburgh (1968).
   800  		"keldysh",
   801  
   802  		// Mary Kenneth Keller, Sister Mary Kenneth Keller became the first American woman to earn a
   803  		// PhD in Computer Science in 1965.
   804  		"keller",
   805  
   806  		// Johannes Kepler, German astronomer known for his three laws of planetary motion -
   807  		"kepler",
   808  
   809  		// Omar Khayyam - Persian mathematician, astronomer and poet. Known for his work on the
   810  		// classification and solution of cubic equations, for his contribution to the understanding
   811  		// of Euclid's fifth postulate and for computing the length of a year very accurately.
   812  		"khayyam",
   813  
   814  		// Har Gobind Khorana - Indian-American biochemist who shared the 1968 Nobel Prize for
   815  		// Physiology.
   816  		"khorana",
   817  
   818  		// Jack Kilby invented silicone integrated circuits and gave Silicon Valley its name.
   819  		"kilby",
   820  
   821  		// Maria Kirch - German astronomer and first woman to discover a comet.
   822  		"kirch",
   823  
   824  		// Donald Knuth - American computer scientist, author of "The Art of Computer Programming"
   825  		// and creator of the TeX typesetting system.
   826  		"knuth",
   827  
   828  		// Sophie Kowalevski - Russian mathematician responsible for important original
   829  		// contributions to analysis, differential equations and mechanics.
   830  		"kowalevski",
   831  
   832  		// Marie-Jeanne de Lalande - French astronomer, mathematician and cataloguer of stars.
   833  		"lalande",
   834  
   835  		// Hedy Lamarr - Actress and inventor. The principles of her work are now incorporated into
   836  		// modern Wi-Fi, CDMA and Bluetooth technology.
   837  		"lamarr",
   838  
   839  		// Leslie B. Lamport - American computer scientist. Lamport is best known for his seminal
   840  		// work in distributed systems and was the winner of the 2013 Turing Award.
   841  		"lamport",
   842  
   843  		// Mary Leakey - British paleoanthropologist who discovered the first fossilized Proconsul
   844  		// skull.
   845  		"leakey",
   846  
   847  		// Henrietta Swan Leavitt - she was an American astronomer who discovered the relation
   848  		// between the luminosity and the period of Cepheid variable stars.
   849  		"leavitt",
   850  
   851  		// Esther Miriam Zimmer Lederberg - American microbiologist and a pioneer of bacterial
   852  		// genetics.
   853  		"lederberg",
   854  
   855  		// Inge Lehmann - Danish seismologist and geophysicist. Known for discovering in 1936 that
   856  		// the Earth has a solid inner core inside a molten outer core.
   857  		"lehmann",
   858  
   859  		// Daniel Lewin - Mathematician, Akamai co-founder, soldier, 9/11 victim-- Developed
   860  		// optimization techniques for routing traffic on the internet. Died attempting to stop the
   861  		// 9-11 hijackers.
   862  		"lewin",
   863  
   864  		// Ruth Lichterman - one of the original programmers of the ENIAC.
   865  		"lichterman",
   866  
   867  		// Barbara Liskov - co-developed the Liskov substitution principle. Liskov was also the
   868  		// winner of the Turing Prize in 2008.
   869  		"liskov",
   870  
   871  		// Ada Lovelace invented the first algorithm.
   872  		"lovelace",
   873  
   874  		// Auguste and Louis Lumière - the first filmmakers in history.
   875  		"lumiere",
   876  
   877  		// Mahavira - Ancient Indian mathematician during 9th century AD who discovered basic
   878  		// algebraic identities -
   879  		"mahavira",
   880  
   881  		// Lynn Margulis (b. Lynn Petra Alexander) - an American evolutionary theorist and
   882  		// biologist, science author, educator, and popularizer, and was the primary modern
   883  		// proponent for the significance of symbiosis in evolution.
   884  		"margulis",
   885  
   886  		// Yukihiro Matsumoto - Japanese computer scientist and software programmer best known as
   887  		// the chief designer of the Ruby programming language.
   888  		"matsumoto",
   889  
   890  		// James Clerk Maxwell - Scottish physicist, best known for his formulation of
   891  		// electromagnetic theory.
   892  		"maxwell",
   893  
   894  		// Maria Mayer - American theoretical physicist and Nobel laureate in Physics for proposing
   895  		// the nuclear shell model of the atomic nucleus.
   896  		"mayer",
   897  
   898  		// John McCarthy invented LISP.
   899  		"mccarthy",
   900  
   901  		// Barbara McClintock - a distinguished American cytogeneticist, 1983 Nobel Laureate in
   902  		// Physiology or Medicine for discovering transposons.
   903  		"mcclintock",
   904  
   905  		// Anne Laura Dorinthea McLaren - British developmental biologist whose work helped lead to
   906  		// human in-vitro fertilisation.
   907  		"mclaren",
   908  
   909  		// Malcolm McLean invented the modern shipping container.
   910  		"mclean",
   911  
   912  		// Kay McNulty - one of the original programmers of the ENIAC.
   913  		"mcnulty",
   914  
   915  		// Gregor Johann Mendel - Czech scientist and founder of genetics.
   916  		"mendel",
   917  
   918  		// Dmitri Mendeleev - a chemist and inventor. He formulated the Periodic Law, created a
   919  		// farsighted version of the periodic table of elements, and used it to correct the
   920  		// properties of some already discovered elements and also to predict the properties of
   921  		// eight elements yet to be discovered.
   922  		"mendeleev",
   923  
   924  		// Lise Meitner - Austrian/Swedish physicist who was involved in the discovery of nuclear
   925  		// fission. The element meitnerium is named after her.
   926  		"meitner",
   927  
   928  		// Carla Meninsky, was the game designer and programmer for Atari 2600 games Dodge 'Em and
   929  		// Warlords.
   930  		"meninsky",
   931  
   932  		// Ralph C. Merkle - American computer scientist, known for devising Merkle's puzzles - one
   933  		// of the very first schemes for public-key cryptography. Also, inventor of Merkle trees and
   934  		// co-inventor of the Merkle-Damgård construction for building collision-resistant
   935  		// cryptographic hash functions and the Merkle-Hellman knapsack cryptosystem.
   936  		"merkle",
   937  
   938  		// Johanna Mestorf - German prehistoric archaeologist and first female museum director in
   939  		// Germany.
   940  		"mestorf",
   941  
   942  		// Marvin Minsky - Pioneer in Artificial Intelligence, co-founder of the MIT's AI Lab, won
   943  		// the Turing Award in 1969.
   944  		"minsky",
   945  
   946  		// Maryam Mirzakhani - an Iranian mathematician and the first woman to win the Fields Medal.
   947  		"mirzakhani",
   948  
   949  		// Gordon Earle Moore - American engineer, Silicon Valley founding father, author of Moore's
   950  		// law.
   951  		"moore",
   952  
   953  		// Samuel Morse - contributed to the invention of a single-wire telegraph system based on
   954  		// European telegraphs and was a co-developer of the Morse code.
   955  		"morse",
   956  
   957  		// Ian Murdock - founder of the Debian project.
   958  		"murdock",
   959  
   960  		// May-Britt Moser - Nobel prize winner neuroscientist who contributed to the discovery of
   961  		// grid cells in the brain.
   962  		"moser",
   963  
   964  		// John Napier of Merchiston - Scottish landowner known as an astronomer, mathematician and
   965  		// physicist. Best known for his discovery of logarithms.
   966  		"napier",
   967  
   968  		// John Forbes Nash, Jr. - American mathematician who made fundamental contributions to game
   969  		// theory, differential geometry, and the study of partial differential equations.
   970  		"nash",
   971  
   972  		// John von Neumann - todays computer architectures are based on the von Neumann
   973  		// architecture.
   974  		"neumann",
   975  
   976  		// Isaac Newton invented classic mechanics and modern optics.
   977  		"newton",
   978  
   979  		// Florence Nightingale, more prominently known as a nurse, was also the first female member
   980  		// of the Royal Statistical Society and a pioneer in statistical graphics.
   981  		"nightingale",
   982  
   983  		// Alfred Nobel - a Swedish chemist, engineer, innovator, and armaments manufacturer
   984  		// (inventor of dynamite).
   985  		"nobel",
   986  
   987  		// Emmy Noether, German mathematician. Noether's Theorem is named after her.
   988  		"noether",
   989  
   990  		// Poppy Northcutt. Poppy Northcutt was the first woman to work as part of NASA’s Mission
   991  		// Control.
   992  		"northcutt",
   993  
   994  		// Robert Noyce invented silicone integrated circuits and gave Silicon Valley its name.
   995  		"noyce",
   996  
   997  		// Panini - Ancient Indian linguist and grammarian from 4th century CE who worked on the
   998  		// world's first formal system.
   999  		"panini",
  1000  
  1001  		// Ambroise Pare invented modern surgery.
  1002  		"pare",
  1003  
  1004  		// Blaise Pascal, French mathematician, physicist, and inventor.
  1005  		"pascal",
  1006  
  1007  		// Louis Pasteur discovered vaccination, fermentation and pasteurization.
  1008  		"pasteur",
  1009  
  1010  		// Cecilia Payne-Gaposchkin was an astronomer and astrophysicist who, in 1925, proposed in
  1011  		// her Ph.D. thesis an explanation for the composition of stars in terms of the relative
  1012  		// abundances of hydrogen and helium.
  1013  		"payne",
  1014  
  1015  		// Radia Perlman is a software designer and network engineer and most famous for her
  1016  		// invention of the spanning-tree protocol (STP).
  1017  		"perlman",
  1018  
  1019  		// Rob Pike was a key contributor to Unix, Plan 9, the X graphic system, utf-8, and the Go
  1020  		// programming language.
  1021  		"pike",
  1022  
  1023  		// Henri Poincaré made fundamental contributions in several fields of mathematics.
  1024  		"poincare",
  1025  
  1026  		// Laura Poitras is a director and producer whose work, made possible by open source crypto
  1027  		// tools, advances the causes of truth and freedom of information by reporting disclosures
  1028  		// by whistleblowers such as Edward Snowden.
  1029  		"poitras",
  1030  
  1031  		// Tat’yana Avenirovna Proskuriakova (Russian: Татья́на Авени́ровна Проскуряко́ва) (January 23
  1032  		// [O.S. January 10] 1909 – August 30, 1985) was a Russian-American Mayanist scholar and
  1033  		// archaeologist who contributed significantly to the deciphering of Maya hieroglyphs, the
  1034  		// writing system of the pre-Columbian Maya civilization of Mesoamerica.
  1035  		"proskuriakova",
  1036  
  1037  		// Claudius Ptolemy - a Greco-Egyptian writer of Alexandria, known as a mathematician,
  1038  		// astronomer, geographer, astrologer, and poet of a single epigram in the Greek Anthology.
  1039  		"ptolemy",
  1040  
  1041  		// C. V. Raman - Indian physicist who won the Nobel Prize in 1930 for proposing the Raman
  1042  		// effect.
  1043  		"raman",
  1044  
  1045  		// Srinivasa Ramanujan - Indian mathematician and autodidact who made extraordinary
  1046  		// contributions to mathematical analysis, number theory, infinite series, and continued
  1047  		// fractions.
  1048  		"ramanujan",
  1049  
  1050  		// Sally Kristen Ride was an American physicist and astronaut. She was the first American
  1051  		// woman in space, and the youngest American astronaut.
  1052  		"ride",
  1053  
  1054  		// Rita Levi-Montalcini - Won Nobel Prize in Physiology or Medicine jointly with colleague
  1055  		// Stanley Cohen for the discovery of nerve growth factor.
  1056  		"montalcini",
  1057  
  1058  		// Dennis Ritchie - co-creator of UNIX and the C programming language.
  1059  		"ritchie",
  1060  
  1061  		// Ida Rhodes - American pioneer in computer programming, designed the first computer used
  1062  		// for Social Security.
  1063  		"rhodes",
  1064  
  1065  		// Julia Hall Bowman Robinson - American mathematician renowned for her contributions to the
  1066  		// fields of computability theory and computational complexity theory.
  1067  		"robinson",
  1068  
  1069  		// Wilhelm Conrad Röntgen - German physicist who was awarded the first Nobel Prize in
  1070  		// Physics in 1901 for the discovery of X-rays (Röntgen rays).
  1071  		"roentgen",
  1072  
  1073  		// Rosalind Franklin - British biophysicist and X-ray crystallographer whose research was
  1074  		// critical to the understanding of DNA -
  1075  		"rosalind",
  1076  
  1077  		// Vera Rubin - American astronomer who pioneered work on galaxy rotation rates.
  1078  		"rubin",
  1079  
  1080  		// Meghnad Saha - Indian astrophysicist best known for his development of the Saha equation,
  1081  		// used to describe chemical and physical conditions in stars -
  1082  		"saha",
  1083  
  1084  		// Jean E. Sammet developed FORMAC, the first widely used computer language for symbolic
  1085  		// manipulation of mathematical formulas.
  1086  		"sammet",
  1087  
  1088  		// Mildred Sanderson - American mathematician best known for Sanderson's theorem concerning
  1089  		// modular invariants.
  1090  		"sanderson",
  1091  
  1092  		// Satoshi Nakamoto is the name used by the unknown person or group of people who developed
  1093  		// bitcoin, authored the bitcoin white paper, and created and deployed bitcoin's original
  1094  		// reference implementation.
  1095  		"satoshi",
  1096  
  1097  		// Adi Shamir - Israeli cryptographer whose numerous inventions and contributions to
  1098  		// cryptography include the Ferge Fiat Shamir identification scheme, the Rivest Shamir
  1099  		// Adleman (RSA) public-key cryptosystem, the Shamir's secret sharing scheme, the breaking
  1100  		// of the Merkle-Hellman cryptosystem, the TWINKLE and TWIRL factoring devices and the
  1101  		// discovery of differential cryptanalysis (with Eli Biham).
  1102  		"shamir",
  1103  
  1104  		// Claude Shannon - The father of information theory and founder of digital circuit design
  1105  		// theory.
  1106  		"shannon",
  1107  
  1108  		// Carol Shaw - Originally an Atari employee, Carol Shaw is said to be the first female
  1109  		// video game designer.
  1110  		"shaw",
  1111  
  1112  		// Dame Stephanie "Steve" Shirley - Founded a software company in 1962 employing women
  1113  		// working from home.
  1114  		"shirley",
  1115  
  1116  		// William Shockley co-invented the transistor -
  1117  		"shockley",
  1118  
  1119  		// Lina Solomonovna Stern (or Shtern; Russian: Лина Соломоновна Штерн; 26 August 1878 – 7
  1120  		// March 1968) was a Soviet biochemist, physiologist and humanist whose medical discoveries
  1121  		// saved thousands of lives at the fronts of World War II. She is best known for her
  1122  		// pioneering work on blood–brain barrier, which she described as hemato-encephalic barrier
  1123  		// in 1921.
  1124  		"shtern",
  1125  
  1126  		// Françoise Barré-Sinoussi - French virologist and Nobel Prize Laureate in Physiology or
  1127  		// Medicine; her work was fundamental in identifying HIV as the cause of AIDS.
  1128  		"sinoussi",
  1129  
  1130  		// Betty Snyder - one of the original programmers of the ENIAC.
  1131  		"snyder",
  1132  
  1133  		// Cynthia Solomon - Pioneer in the fields of artificial intelligence, computer science and
  1134  		// educational computing. Known for creation of Logo, an educational programming language.
  1135  		"solomon",
  1136  
  1137  		// Frances Spence - one of the original programmers of the ENIAC.
  1138  		"spence",
  1139  
  1140  		// Richard Matthew Stallman - the founder of the Free Software movement, the GNU project,
  1141  		// the Free Software Foundation, and the League for Programming Freedom. He also invented
  1142  		// the concept of copyleft to protect the ideals of this movement, and enshrined this
  1143  		// concept in the widely-used GPL (General Public License) for software.
  1144  		"stallman",
  1145  
  1146  		// Michael Stonebraker is a database research pioneer and architect of Ingres, Postgres,
  1147  		// VoltDB and SciDB. Winner of 2014 ACM Turing Award.
  1148  		"stonebraker",
  1149  
  1150  		// Ivan Edward Sutherland - American computer scientist and Internet pioneer, widely
  1151  		// regarded as the father of computer graphics.
  1152  		"sutherland",
  1153  
  1154  		// Janese Swanson (with others) developed the first of the Carmen Sandiego games. She went
  1155  		// on to found Girl Tech.
  1156  		"swanson",
  1157  
  1158  		// Aaron Swartz was influential in creating RSS, Markdown, Creative Commons, Reddit, and
  1159  		// much of the internet as we know it today. He was devoted to freedom of information on the
  1160  		// web.
  1161  		"swartz",
  1162  
  1163  		// Bertha Swirles was a theoretical physicist who made a number of contributions to early
  1164  		// quantum theory.
  1165  		"swirles",
  1166  
  1167  		// Helen Brooke Taussig - American cardiologist and founder of the field of paediatric
  1168  		// cardiology.
  1169  		"taussig",
  1170  
  1171  		// Valentina Tereshkova is a Russian engineer, cosmonaut and politician. She was the first
  1172  		// woman to fly to space in 1963. In 2013, at the age of 76, she offered to go on a one-way
  1173  		// mission to Mars.
  1174  		"tereshkova",
  1175  
  1176  		// Nikola Tesla invented the AC electric system and every gadget ever used by a James Bond
  1177  		// villain.
  1178  		"tesla",
  1179  
  1180  		// Marie Tharp - American geologist and oceanic cartographer who co-created the first
  1181  		// scientific map of the Atlantic Ocean floor. Her work led to the acceptance of the
  1182  		// theories of plate tectonics and continental drift.
  1183  		"tharp",
  1184  
  1185  		// Ken Thompson - co-creator of UNIX and the C programming language.
  1186  		"thompson",
  1187  
  1188  		// Linus Torvalds invented Linux and Git.
  1189  		"torvalds",
  1190  
  1191  		// Youyou Tu - Chinese pharmaceutical chemist and educator known for discovering artemisinin
  1192  		// and dihydroartemisinin, used to treat malaria, which has saved millions of lives. Joint
  1193  		// winner of the 2015 Nobel Prize in Physiology or Medicine.
  1194  		"tu",
  1195  
  1196  		// Alan Turing was a founding father of computer science.
  1197  		"turing",
  1198  
  1199  		// Varahamihira - Ancient Indian mathematician who discovered trigonometric formulae during
  1200  		// 505-587 CE.
  1201  		"varahamihira",
  1202  
  1203  		// Dorothy Vaughan was a NASA mathematician and computer programmer on the SCOUT launch
  1204  		// vehicle program that put America's first satellites into space.
  1205  		"vaughan",
  1206  
  1207  		// Sir Mokshagundam Visvesvaraya - is a notable Indian engineer. He is a recipient of the
  1208  		// Indian Republic's highest honour, the Bharat Ratna, in 1955. On his birthday, 15
  1209  		// September is celebrated as Engineer's Day in India in his memory.
  1210  		"visvesvaraya",
  1211  
  1212  		// Christiane Nüsslein-Volhard - German biologist, won Nobel Prize in Physiology or Medicine
  1213  		// in 1995 for research on the genetic control of embryonic development.
  1214  		"volhard",
  1215  
  1216  		// Cédric Villani - French mathematician, won Fields Medal, Fermat Prize and Poincaré Price
  1217  		// for his work in differential geometry and statistical mechanics.
  1218  		"villani",
  1219  
  1220  		// Marlyn Wescoff - one of the original programmers of the ENIAC.
  1221  		"wescoff",
  1222  
  1223  		// Sylvia B. Wilbur - British computer scientist who helped develop the ARPANET, was one of
  1224  		// the first to exchange email in the UK and a leading researcher in computer-supported
  1225  		// collaborative work.
  1226  		"wilbur",
  1227  
  1228  		// Andrew Wiles - Notable British mathematician who proved the enigmatic Fermat's Last
  1229  		// Theorem.
  1230  		"wiles",
  1231  
  1232  		// Roberta Williams, did pioneering work in graphical adventure games for personal
  1233  		// computers, particularly the King's Quest series.
  1234  		"williams",
  1235  
  1236  		// Malcolm John Williamson - British mathematician and cryptographer employed by the GCHQ.
  1237  		// Developed in 1974 what is now known as Diffie-Hellman key exchange (Diffie and Hellman
  1238  		// first published the scheme in 1976).
  1239  		"williamson",
  1240  
  1241  		// Sophie Wilson designed the first Acorn Micro-Computer and the instruction set for ARM
  1242  		// processors.
  1243  		"wilson",
  1244  
  1245  		// Jeannette Wing - co-developed the Liskov substitution principle.
  1246  		"wing",
  1247  
  1248  		// Steve Wozniak invented the Apple I and Apple II.
  1249  		"wozniak",
  1250  
  1251  		// The Wright brothers, Orville and Wilbur - credited with inventing and building the
  1252  		// world's first successful airplane and making the first controlled, powered and sustained
  1253  		// heavier-than-air human flight -
  1254  		"wright",
  1255  
  1256  		// Chien-Shiung Wu - Chinese-American experimental physicist who made significant
  1257  		// contributions to nuclear physics.
  1258  		"wu",
  1259  
  1260  		// Rosalyn Sussman Yalow - Rosalyn Sussman Yalow was an American medical physicist, and a
  1261  		// co-winner of the 1977 Nobel Prize in Physiology or Medicine for development of the
  1262  		// radioimmunoassay technique.
  1263  		"yalow",
  1264  
  1265  		// Ada Yonath - an Israeli crystallographer, the first woman from the Middle East to win a
  1266  		// Nobel prize in the sciences.
  1267  		"yonath",
  1268  
  1269  		// Nikolay Yegorovich Zhukovsky (Russian: Никола́й Его́рович Жуко́вский, January 17 1847 –
  1270  		// March 17, 1921) was a Russian scientist, mathematician and engineer, and a founding
  1271  		// father of modern aero- and hydrodynamics. Whereas contemporary scientists scoffed at the
  1272  		// idea of human flight, Zhukovsky was the first to undertake the study of airflow. He is
  1273  		// often called the Father of Russian Aviation.
  1274  		"zhukovsky",
  1275  	}
  1276  )
  1277  
  1278  // GetRandomName generates a random name from the list of adjectives and surnames in this package
  1279  // formatted as "adjective_surname". For example 'focused_turing'. If retry is non-zero, a random
  1280  // integer between 0 and 10 will be added to the end of the name, e.g `focused_turing3`
  1281  func GetRandomName(retry int) string {
  1282  begin:
  1283  	name := fmt.Sprintf("%s_%s", left[rand.Intn(len(left))], right[rand.Intn(len(right))])
  1284  	if name == "boring_wozniak" /* Steve Wozniak is not boring */ {
  1285  		goto begin
  1286  	}
  1287  
  1288  	if retry > 0 {
  1289  		name = fmt.Sprintf("%s%d", name, rand.Intn(10))
  1290  	}
  1291  	return name
  1292  }