https://github.com/rolfschmidt/advent-of-code
Advent of Code Puzzles
https://github.com/rolfschmidt/advent-of-code
advent-of-code adventofcode aoc
Last synced: 4 months ago
JSON representation
Advent of Code Puzzles
- Host: GitHub
- URL: https://github.com/rolfschmidt/advent-of-code
- Owner: rolfschmidt
- License: unlicense
- Created: 2022-12-20T13:54:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-12-20T03:54:36.000Z (6 months ago)
- Last Synced: 2025-12-21T05:46:32.099Z (6 months ago)
- Topics: advent-of-code, adventofcode, aoc
- Language: Ruby
- Homepage: https://adventofcode.com/
- Size: 6.26 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code
| Year | ⭐ | Language |
|:-------------------:|:-----------:|:-------------:|
| [2025](2025/spec) | 12/12 | Ruby |
| [2024](2024/spec) | 25/25 | Ruby |
| [2023](2023/spec) | 25/25 | Ruby |
| [2022](2022/spec) | 25/25 | Ruby |
| [2021](2021) | 25/25 | Go |
| [2020](2020) | 25/25 | V |
| [2019](2019/spec) | 14/25 | Ruby |
| [2018](2018/spec) | 14/25 | Ruby |
| [2017](2017/spec) | 25/25 | Ruby |
| 2016 | 0/25 | - |
| [2015](2015/spec) | 25/25 | Ruby |
## Bash alias
Helpful aliases for advent of code handling:
```
npm install -g nodemon
alias aoc='f() { nodemon -q -e rb -w /home/debian-rs/ws/advent-of-code -x "bundle exec rspec --fail-fast spec/day${1}_spec.rb"; }; f'
alias aoc-new='f() { local F="spec/day${1}_spec.rb"; cp "spec/day00_spec.rb" "${F}"; touch "clear; spec/day${1}_test.txt"; sed -i "s/Day00/Day${1}/g" "${F}"; }; f'
```