GitXplorerGitXplorer
n

adventofcode2024

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
ccf64fd678016be933a5576dbf880dbb11cbe19f

Day 15

committed a month ago
Unverified
c88985f04c1cde0c3cdb53d55105044cbf735a8a

Day 11-14.

committed a month ago
Unverified
bb058ce5d5f3348b4c1b001716642bb9882b3646

Day 9+10 and some stubs for the GPU solutions.

committed a month ago
Unverified
90ae9633ce1a02374324718d427c47057c41a6da

Day 8

committed a month ago
Unverified
0b27aab467c76c005250d569bb8d772276ebc84d

Day 7 + rustfmt + some warnings removed

committed a month ago
Verified
23bdecc1968278e64340bf3c657a2bf54c69a369

Create README.md

nniklasha committed a month ago

README

The README file for this repository.

This year I am lazy. I really don't have much time for AoC currently. The code will be ugly. I will have no neat framework testing and running the code.

The initial plan was to solve as much as I could with GPU shaders and massive parallelism to learn about those things, since I am slowly porting candle to Vulkan, and need to be able to write good compute shaders for that purpose. But.. I found no time to even start on the framework I need, due to real work.

So I decided to do the days in Rust as usual, but with some extra constraints for nostaligic purposes. This is how I grew up on programming:

  1. While solving a puzzle, I am not allowed to use Internet for looking things up. No Wikipedia, no Stack Overflow. No Googling. Obvious exceptions is the AoC website, and rustdoc, since that is available locally in the Rust installation anyway.
  2. Of course no AI, not even local models.
  3. No external crates. Just stdlib. E.g. no regexes.
  4. I will (and this is perhaps the most glaring abuse of my nostalgia rules) use a modern IDE, but without AI, just the normal automatic lookup of function documentation, like signatures, and type hints. Writing Rust without some IDE support, would waste too much time.

Silly constraints, but it provides some good exercises in reinventing or remembering algorithms, which I think is good braintraining for a man coming to age (I am 59 years old, have been programming since I was 13).

Also this year, I do not care about getting up at 06 CET. I will do it whenever I find time in the day. I will of course try to not be more than 24h late, it looks ugly on the leaderboard, even if the results are ugly anyhow.