Fork of in-browser pure Javascript Conway's game of life by Fabian Hemmer, with modifications to support running the digital clock by dim to actually tell time.
Omit the "noui=1" option to show the UI if you want to play with it, e.g. change the speed, load other patterns, etc.
To reset the clock to the current local time simply reload the page.
- add
auto_start=1URL parameter - add
steps_per_sec=STEPSto sync the step speed to wall clock time - add
goto_step=OFFSET+STEPS*MULTto fast-forward a specfic number of steps before runningOFFSET+is optional; if present,OFFSETis an integer (positive or negative) number of stepsSTEPSis required; a non-negative number of steps*MULTis optional; if present it can be either*now_sec, which will be replaced with the number of seconds sicne the most recent midnight (12:00 AM) in local wall-clock time at page load, or*pm_now_sec, which will be replaced with the number of seconds since the most recent noon (12:00 PM)
- add
reset_after_step=STEPSto auto rewind to the initial state (after thegoto_stepfast forward, if any) after a given number of steps - add digital clock pattern
- bugfix noui option
- restore generation number on rewind