Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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.