this post was submitted on 17 Dec 2025
474 points (96.1% liked)
Programmer Humor
27937 readers
563 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Also looking at Rust. Yeah, I totally like recompiling thousands of crates for a single webapp single-threaded.
well if you are recompiling thousands of crates with a single thread, for a simple webapp no less, then you are doing something wrong. multiple things, actually, I count 3.
Actually, my (not that small) Rust projects now take officially less time to cold compile than the "hot" reloading of our next.js monster in my job. Incremental compilation is at least an order of magnitude faster. And cherry on top, dumb code is often 100x faster than js.