File: credits.html

package info (click to toggle)
golly 3.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 20,176 kB
  • sloc: cpp: 72,638; ansic: 25,919; python: 7,921; sh: 4,245; objc: 3,721; java: 2,781; xml: 1,362; makefile: 530; javascript: 279; perl: 69
file content (84 lines) | stat: -rw-r--r-- 2,954 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<html>
<body bgcolor="#FFFFCE">

<h2>Credits</h2>

<h3>The pioneers</h3>

<p>
First and foremost, a big thanks to John Conway for creating the Game of Life,
and to Martin Gardner for popularizing the topic in his Scientific American
column.

<h3>The programmers</h3>

<p>
Tom Rokicki wrote most of the complicated stuff.
Golly is essentially the merging of two of Tom's programs (hlife and qlife).
The HashLife algorithm is based on an idea by Bill Gosper.
The QuickLife algorithm uses some ideas from Alan Hensel.
David Eppstein provided the idea on how to emulate B0 rules.

<p>
Andrew Trevorrow wrote the cross-platform GUI code for the desktop version
of Golly using <a href="http://www.wxwidgets.org/">wxWidgets</a>.
Much thanks to Julian Smart and all the other wxWidgets developers.
Andrew also wrote the GUI code for the iOS, Android and Web versions
of Golly.

<!--
<p>
Golly's scripting capabilities were inspired by the generosity and efforts of
Eugene Langvagen (author of <a href="http://plife.sourceforge.net/">PLife</a>),
Larry Wall (creator of <a href="http://www.perl.org/">Perl</a>)
and Guido van Rossum (creator of <a href="http://www.python.org/">Python</a>).
-->

<p>
Tim Hutton wrote the RuleTable algorithm (now merged into the RuleLoader algorithm)
and created the excellent
<a href="http://github.com/GollyGang/ruletablerepository">Rule Table Repository</a>.

<p>
Various code improvements have been contributed by Dave Greene, Jason Summers,
Maks Verver, Robert Munafo, Chris Rowett and Brenton Bostick.

<p>
If you'd like to join us and help make Golly the best Life/CA app in the known
universe then please get in touch.

<h3>The beta testers</h3>

<p>
Thanks to all the bug hunters for their reports and suggestions,
especially Dave Greene, Gabriel Nivasch, Dean Hickerson, Brice Due,
David Eppstein, Tony Smith, Alan Hensel, Dennis Langdeau, Bill Gosper.

<h3>Other contributors</h3>

<p>
Dave Greene and Alan Hensel helped put together the pattern collection.
Thanks to everybody who allowed us to distribute their fantastic patterns,
especially Nick Gotts, Gabriel Nivasch, David Eppstein, Jason Summers,
Stephen Morley, Dean Hickerson, Brice Due, William R. Buckley, David Moore,
Mark Owen, Tim Hutton, Renato Nobili and Adam P. Goucher.

<p>
Thanks to Stephen Silver for compiling the wonderful
<a href="Lexicon/lex.htm">Life Lexicon</a>.

<p>
Thanks to Nathaniel Johnston for creating the brilliant
<a href="http://www.conwaylife.com/wiki/index.php?title=Main_Page">LifeWiki</a>
and for making its patterns available to Golly users via an
<a href="get:http://www.conwaylife.com/golly.html">online archive</a>.

<script type="text/javascript">
    if ( navigator.userAgent.match(/iPad|iPhone|iPod/i) ) {
        document.write("<p>Some of the tab bar icons are from the free set created by ");
        document.write("<a href=\"http://www.theworkinggroup.ca/\">The Working Group</a>.");
    }
</script>

</body>
</html>