From b275182e58e99ed552fc22741cd59c832e513048 Mon Sep 17 00:00:00 2001 From: Jonas Meeuws Date: Sun, 1 Dec 2024 19:20:40 +0100 Subject: [PATCH] Refresh readme for 2024 --- 2023/README.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 22 +++++++------------- 2 files changed, 61 insertions(+), 15 deletions(-) create mode 100644 2023/README.md diff --git a/2023/README.md b/2023/README.md new file mode 100644 index 0000000..5aafaae --- /dev/null +++ b/2023/README.md @@ -0,0 +1,54 @@ +# De Zeus Advent of Code + +| 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 | +| noctua | https://github.com/ninewise/adventofcode-2023 | | + + +* repo clonen: + + ```sh + git clone git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git + git submodule init 2023 # just the current year + git submodule update + ``` + +* nieuwe persoon toevoegen: + + ```sh + cd 2023 + git submodule add + git commit -m 'hey guys ik heb een repo toegevoegd' + ``` + +* uw lokale kopie updaten: + + ```sh + git pull # duh + git submodule update + ``` + +* van alle submodules de nieuwste versie binnenhalen (zelfs als mensen *force push*en): + + ```sh + git submodule foreach git fetch origin + git submodule foreach git reset --hard origin/HEAD > /dev/null 2>&1 + git add * # oh no + git commit -m 'update submodules' + ``` + +* benchmarks uitvoeren: + + ```sh + cd 2023 + ./complete-benchmark + ``` diff --git a/README.md b/README.md index 5aafaae..7cf278d 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,23 @@ # De Zeus Advent of Code -| 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 | -| noctua | https://github.com/ninewise/adventofcode-2023 | | +| Wie? | Waar? (Repository) | Taal? | +|---------|:------------------------------------:|------:| +| vincent | https://github.com/Topvennie/AoC | Go | +| jnms | https://github.com/Reavershark/aoc24 | D | * repo clonen: ```sh git clone git@github.com:ZeusWPI/Advent-of-Code-Aggregator.git - git submodule init 2023 # just the current year + git submodule init 2024 # just the current year git submodule update ``` * nieuwe persoon toevoegen: ```sh - cd 2023 + cd 2024 git submodule add git commit -m 'hey guys ik heb een repo toegevoegd' ``` @@ -49,6 +41,6 @@ * benchmarks uitvoeren: ```sh - cd 2023 + cd 2024 ./complete-benchmark ```