This is the code used to solve the Advent of code challenges over the years.
Copy the .env.example
file to .env
and fill in you session cookie after logging into the website
To initialize a day you can use the command:
./utils/init-day <year> <day>
To initialize an entire year (fish shell):
for i in (seq 1 25); ./utils/init-day <year> $i; end