Advent-of-Code-Aggregator/README.md

55 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2020-12-01 16:00:29 +00:00
# De Zeus Advent of Code
2023-12-02 16:33:20 +00:00
| Wie? | Waar? (Repository) | Taal? |
|:-----------|:---------------------------------------------:|-------:|
| chvp | https://github.com/chvp/aoc2023 | C |
| mcbloch | https://github.com/mcbloch/AoC2023 | V |
| timpy | https://github.com/timodw/aoc_2023 | Rust |
| robbe | https://github.com/Robbe7730/adventofcode2023 | Zig |
| francis. | https://github.com/FKD13/AoC2023 | bash |
| vincent | https://github.com/Topvennie/AoC2023 | Go |
| mraedis | https://github.com/Mraedis/AoC2023 | Ruby |
| hannes | https://github.com/hannes-dev/aoc2023 | Rust |
| niknetniko | https://github.com/niknetniko/AdventOfCode | Elixir |
2023-12-03 11:10:53 +00:00
| noctua | https://github.com/ninewise/adventofcode-2023 | |
2021-12-01 14:39:11 +00:00
2020-12-04 12:41:21 +00:00
* repo clonen:
2020-12-04 12:59:56 +00:00
```sh
2021-12-01 15:01:04 +00:00
git clone git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git
2023-11-30 20:41:08 +00:00
git submodule init 2023 # just the current year
2021-12-01 15:01:04 +00:00
git submodule update
2020-12-04 12:43:30 +00:00
```
2020-12-04 12:41:21 +00:00
2021-11-29 10:42:45 +00:00
* nieuwe persoon toevoegen:
2020-12-04 12:41:21 +00:00
2020-12-04 12:59:56 +00:00
```sh
2023-11-30 20:41:08 +00:00
cd 2023
2021-12-01 16:06:08 +00:00
git submodule add <link zoals in tabel> <naam zoals in tabel>
2020-12-04 12:41:21 +00:00
git commit -m 'hey guys ik heb een repo toegevoegd'
2020-12-04 12:43:30 +00:00
```
2020-12-04 12:41:21 +00: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 12:41:21 +00:00
2020-12-04 12:59:56 +00:00
```sh
2020-12-04 12:43:30 +00:00
git submodule foreach git fetch origin
git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1
2020-12-04 12:41:21 +00:00
git add * # oh no
git commit -m 'update submodules'
2020-12-04 12:43:30 +00:00
```
2020-12-04 12:41:21 +00:00
* benchmarks uitvoeren:
2020-12-04 12:59:56 +00:00
```sh
2023-11-30 20:41:08 +00:00
cd 2023
2021-11-29 10:42:45 +00:00
./complete-benchmark
2020-12-04 12:43:30 +00:00
```