From ad70f283b3818756ba710af003ec2469d23fdf7c Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 20 Jan 2021 18:37:21 +0000 Subject: Add all target to git.causal.agency Makefile --- www/git.causal.agency/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'www') diff --git a/www/git.causal.agency/Makefile b/www/git.causal.agency/Makefile index 6fdbf129..6bf52f5a 100644 --- a/www/git.causal.agency/Makefile +++ b/www/git.causal.agency/Makefile @@ -5,6 +5,8 @@ LIBEXEC = /usr/local/libexec BIN = ../../bin BINS = about-filter source-filter hilex htagml mtags +all: ${BINS} + install: cgitrc custom.css ${BINS} install -m 644 cgitrc ${ETC} install -m 644 custom.css ${WWW} -- cgit 1.4.1 042dcb784a'>this commit Advent of Code
summary refs log tree commit diff homepage
path: root/2016/.gitignore (unfollow)
Commit message (Collapse)Author
2020-12-14Rewrite day 14 to log all writes then sort themJune McEnroe
Down from 1.56s to 0.04s.
2020-12-14"Allocate" only 4 MB rather than 1 TB for day 14 part 2June McEnroe
There are <512 writes in the input data, and at most 9 bits floating. Doesn't really matter much, though.
2020-12-14Solve day 14 part 2June McEnroe