2020-12-01 17:00:29 +01:00
|
|
|
# De Zeus Advent of Code
|
|
|
|
|
2021-12-02 11:19:31 +01:00
|
|
|
| Wie? | Waar? (Repository) | Taal? |
|
|
|
|
| :------------- | :------------------------------------------------: | ---------: |
|
|
|
|
| chvp | https://github.com/chvp/aoc2021 | forth |
|
|
|
|
| ninewise | https://git.fuyu.moe/ninewise/adventofcode-2021 | lua |
|
|
|
|
| robbe | git@github.com:Robbe7730/adventofcode2021.git | ? |
|
|
|
|
| Flynn | https://gitlab.com/mcbloch/aoc2021 | Cpp |
|
|
|
|
| Silvius | https://github.com/ajuvercr/aoc-2021 | C |
|
|
|
|
| rien | https://github.com/rien/adventofcode2021 | C (no std) |
|
|
|
|
| iasoon | https://github.com/iasoon/aoc2021 | pony |
|
|
|
|
| Bond-009 | https://github.com/Bond-009/advent-of-code-2021 | Rust |
|
|
|
|
| Timpy | https://github.com/timodw/aoc_2021 | Python/Numpy|
|
|
|
|
| Swambino | https://github.com/AWerbrouck/AoC | py & haskell|
|
|
|
|
| Francis. | https://github.com/FKD13/AoC2021.git | Prolog |
|
|
|
|
| Lox | https://github.com/Silox/2021-advent-of-code.git | Ruby |
|
|
|
|
| beardhatcode | https://github.com/beardhatcode/aoc-2021 | Rust |
|
|
|
|
| redfast00 | https://github.com/redfast00/aoc2021 | Python |
|
|
|
|
| Jasper 2.0 | https://github.com/JasperJanin/advent-of-code-2021 | Kotlin |
|
2021-12-02 11:48:34 +01:00
|
|
|
| jaspervdj | https://github.com/jaspervdj/advent-of-code | Haskell |
|
2021-12-02 23:04:16 +01:00
|
|
|
| niknetniko | https://github.com/niknetniko/AdventOfCode | Elixir |
|
2021-12-04 11:14:49 +01:00
|
|
|
| francis | https://github.com/fbegyn/aoc2021 | Go |
|
2021-12-01 15:39:11 +01:00
|
|
|
|
2020-12-04 13:41:21 +01:00
|
|
|
|
|
|
|
* repo clonen:
|
|
|
|
|
2020-12-04 13:59:56 +01:00
|
|
|
```sh
|
2021-12-01 16:01:04 +01:00
|
|
|
git clone git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git
|
|
|
|
git submodule init 2021 # just the current year
|
|
|
|
git submodule update
|
2020-12-04 13:43:30 +01:00
|
|
|
```
|
2020-12-04 13:41:21 +01:00
|
|
|
|
2021-11-29 11:42:45 +01:00
|
|
|
* nieuwe persoon toevoegen:
|
2020-12-04 13:41:21 +01:00
|
|
|
|
2020-12-04 13:59:56 +01:00
|
|
|
```sh
|
2021-12-01 13:05:16 +01:00
|
|
|
cd 2021
|
2021-12-01 17:06:08 +01:00
|
|
|
git submodule add <link zoals in tabel> <naam zoals in tabel>
|
2020-12-04 13:41:21 +01:00
|
|
|
git commit -m 'hey guys ik heb een repo toegevoegd'
|
2020-12-04 13:43:30 +01:00
|
|
|
```
|
2020-12-04 13:41:21 +01:00
|
|
|
|
2020-12-05 14:16:38 +01:00
|
|
|
* uw lokale kopie updaten:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git pull # duh
|
|
|
|
git submodule update
|
|
|
|
```
|
|
|
|
|
|
|
|
* van alle submodules de nieuwste versie binnenhalen (zelfs als mensen *force push*en):
|
2020-12-04 13:41:21 +01:00
|
|
|
|
2020-12-04 13:59:56 +01:00
|
|
|
```sh
|
2020-12-04 13:43:30 +01:00
|
|
|
git submodule foreach git fetch origin
|
|
|
|
git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1
|
2020-12-04 13:41:21 +01:00
|
|
|
git add * # oh no
|
|
|
|
git commit -m 'update submodules'
|
2020-12-04 13:43:30 +01:00
|
|
|
```
|
2020-12-04 13:41:21 +01:00
|
|
|
|
|
|
|
* benchmarks uitvoeren:
|
|
|
|
|
2020-12-04 13:59:56 +01:00
|
|
|
```sh
|
2021-12-01 16:01:04 +01:00
|
|
|
cd 2021
|
2021-11-29 11:42:45 +01:00
|
|
|
./complete-benchmark
|
2020-12-04 13:43:30 +01:00
|
|
|
```
|