Advent-of-Code-Aggregator/README.md

62 lines
2.6 KiB
Markdown
Raw Normal View History

2020-12-01 17:00:29 +01:00
# De Zeus Advent of Code
| Wie? | Waar? (Repository) | Taal? |
| :------------- | :-----------------------------------------------: | ---------: |
| Lukas | https://github.com/lvrossem/Advent-of-Code-2020 | Rust |
| Flynn | https://gitlab.com/mcbloch/aoc2020 | Elixir |
| Rien | https://github.com/rien/adventofcode2020 | Elixir |
2020-12-07 12:19:38 +01:00
| Robbe | https://github.com/Robbe7730/adventofcode2020 | Rust |
| Francis | https://github.com/fbegyn/aoc2020 | Go |
| Timo | https://github.com/timodw/AoC20 | Rust |
| Kobe | https://github.com/SchrodingersCat00/aoc2020 | Haskell |
| Jasper | https://github.com/jaspervdj/advent-of-code | Haskell |
| Lorin | https://github.com/werthen/AoC-2020 | TensorFlow |
| Felix | https://github.com/ninewise/adventofcode-2020 | Shell |
| Francis. | https://github.com/FKD13/AoC2020 | Erlang |
| Mel | https://gitlab.com/Melsarion/adventofcode2020 | Elixir |
| Poef | https://github.com/Iepoev/AoC20 | Elixir |
2020-12-06 15:02:21 +01:00
| Lode | https://github.com/Bond-009/advent-of-code-2020 | C |
| JP | https://github.com/Jan-PieterBaert/advent-of-code | Rust |
| Niko | https://github.com/niknetniko/AdventOfCode | Elixir |
2020-12-04 21:35:40 +01:00
| Silvius | https://github.com/ajuvercr/aoc_2020 | Haskell |
2020-12-05 12:19:22 +01:00
| Bram | https://github.com/bravdwal/aoc2020 | Perl |
| redfast00 | https://github.com/redfast00/aoc2020 | Python |
2020-12-05 21:06:29 +01:00
| Charlotte | https://github.com/charvp/aoc2020 | Nix |
2020-12-06 11:27:32 +01:00
| Arthur/Swomp | https://github.com/AWerbrouck/AOC2020 | Java |
2020-12-06 11:27:12 +01:00
2020-12-04 13:41:21 +01:00
* repo clonen:
2020-12-04 13:59:56 +01:00
```sh
2020-12-04 13:41:21 +01:00
git clone --recursive git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git
2020-12-04 13:43:30 +01:00
```
2020-12-04 13:41:21 +01:00
* nieuwe toevoegen:
2020-12-04 13:59:56 +01:00
```sh
2020-12-04 13:41:21 +01:00
git submodule add <link zoals in tabel> <naam zoals in tabel>
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
* 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
2020-12-04 13:43:30 +01:00
git submodule foreach ../benchmark <day> <part>
```