Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@vyznev
vyznev / make_lls_grid.py
Last active August 9, 2019 08:39
Generate Logic Life Search (LLS) input grid for finding spaceships and oscillators, with additional features not yet supported natively by LSS (like strobing background and gradually moving search area).
#!/usr/bin/python
import re
import sys
import argparse
def fail(msg):
sys.stderr.write(sys.argv[0] + ": " + msg + "\n")
sys.exit(1)