My solutions to Advent of Code 2019 in JavaScript
# get and set some AoC env vars
cat <<EOF >.env
COOKIE="your AoC cookie"
YEAR="year of AoC"
EOF
yarn install
# get input for day 1 (or any other day)
node ./get_input.js 1 > 1.in
I stole this setup and readme from @luiscarlin
This does not reflect the quality of my usual code. This was done as quickly as possible, regardless of how sloppy it is. I apologize to anyone who decides to look at this code.