commit ea55b20f2547beffc92cac5a6b322fd6aab483a1
parent 52d1374d0f6fd17721d4366981b53982d1b06f03
Author: Brian C. Lane <bcl@brianlane.com>
Date: Sat, 26 Nov 2022 10:43:40 -0800
README: Fix markdown headers
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -1,11 +1,11 @@
-= log2life
+# log2life
This project reads lighttpd server logs, converts the request data to [Life
1.05 patterns](https://conwaylife.com/wiki/Life_1.05) and then sends them to a
[sdl2-life server](https://github.com/bcl/sdl2-life) using the client IP as an
x, y coordinate in the Life world.
-== Quickstart
+## Quickstart
* Download and build [sdl2-life server](https://github.com/bcl/sdl2-life)
* Build log2life by running `go build`
@@ -20,6 +20,6 @@ The width and height should match the rows and columns used in sdl2-life.
If you want to pipe live server logs you can do something like this:
- ssh foo@server tail -f /var/log/lighttpd/access.log | log2life -
+ ssh foo@server tail -f /var/log/lighttpd/access.log | log2life -rows 250 -columns 250 -
Which will read from stdin and ignore the timestamps.