An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Advent of Code

image

| 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'
```