Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pomadchin/advent-of-code
Advent of Code written in different languages.
https://github.com/pomadchin/advent-of-code
advent-of-code rust scala zig
Last synced: about 1 month ago
JSON representation
Advent of Code written in different languages.
- Host: GitHub
- URL: https://github.com/pomadchin/advent-of-code
- Owner: pomadchin
- License: mit
- Created: 2021-12-01T12:37:32.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T18:43:45.000Z (11 months ago)
- Last Synced: 2024-10-13T00:12:34.300Z (2 months ago)
- Topics: advent-of-code, rust, scala, zig
- Language: Zig
- Homepage:
- Size: 738 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code
[![CI](https://github.com/pomadchin/advent-of-code/actions/workflows/ci.yml/badge.svg)](https://github.com/pomadchin/advent-of-code/actions/workflows/ci.yml)[Advent of Code](https://adventofcode.com/) written in different languages.
#### Scala 2021
There also exists an alternative [feature/rec-schemes](https://github.com/pomadchin/advent-of-code/tree/feature/rec-schemes) branch to practice [recursion schemes](https://github.com/passy/awesome-recursion-schemes) using [Droste](https://github.com/higherkindness/droste)
#### Encryption
All input files should be encrypted; i.e.:
```bash
# single file
$ gpg --batch --passphrase "$GPG_PASSPHRASE_INPUTS" --symmetric --cipher-algo AES256 file.txt# multiple files
for file in $year/rust/src/*/*.txt; do
gpg --batch --passphrase "$GPG_PASSPHRASE_INPUTS" --symmetric --cipher-algo AES256 "$file"
done
```Decription is done via a GitHub Actions step.