advent-of-code/README.md
2023-12-10 15:40:28 +01:00

28 lines
481 B
Markdown

# advent-of-code
## Progress
```
1111111111222222
1234567890123456789012345
2020: ***~.....................
2021: *******~~~...............
2022: ***************~.*..*....
2023: **********...............
.: nothing
~: 1 star
*: 2 stars
```
## Shortcut
Add this to your `.bashrc`:
```bash
AOC_PATH=$HOME/path/to/this/repo/
alias aoc="$AOC_PATH/utils/cli.py"
aoc-new () {
cd $AOC_PATH
PATH="$PATH:$AOC_PATH"
$AOC_PATH/new_day.sh
PS1="$PS1[aoc] "
}
```