Automation around AdventOfCode, in Rust of course
Find a file
2025-11-30 15:59:18 +01:00
src I failed to implement answer submission 2025-11-30 15:59:18 +01:00
.gitignore init 2025-11-29 12:30:30 +01:00
Cargo.lock added caching and no hardcoded config location 2025-11-29 15:51:38 +01:00
Cargo.toml added caching and no hardcoded config location 2025-11-29 15:51:38 +01:00
LICENSE init 2025-11-29 12:30:30 +01:00
README.md I failed to implement answer submission 2025-11-30 15:59:18 +01:00

aocd - Automated AOC tasks

this is a nifty program to:

  • fetch and cache aoc input
  • upload aoc solutions (TBD)
  • autogenerate project structures for kotlin (TBD) and Rust (TBD)

Usage

Install the binary, create a file named aocd.ini in your $XDG_CONFIG_HOME with this content

[aoc]
session = your-sesion-token

Fetching

# If the input has already been downloaded, aocd will use the cached version instead of asking the server again
aocd fetch -y 2020 -d 1 -o output.txt # If -o is omitted, aocd will print to stdout 

License

GPL v3. See LICENSE