this post was submitted on 24 Jan 2026
983 points (99.6% liked)

Programmer Humor

28805 readers
343 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

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] merc@sh.itjust.works 1 points 16 hours ago (1 children)

Small change and run works for small ideas. Sometimes you have a big idea that's hard to break down into small chunks.

[–] wpb@lemmy.world 1 points 13 hours ago (1 children)

Every big change is ultimately just a series of small changes. It takes skill and engineering chops to be able to break up big ideas into small steps with quick feedback loops, but it can be done. Usually worth the effort too.

[–] merc@sh.itjust.works 1 points 8 hours ago

Not every big change is necessarily something you can meaningfully break up into small changes. Sometimes when you could break it up into small changes, you have to change its structure in a meaningful way to half-implement it and test out that half-version. It takes experience to know when it's best to get the whole structure expressed it code, then to go back and tweak it based on any compiler errors. Most of the time the compiler errors are very minor things like a typo, so you don't lose any meaningful time fixing them.