this post was submitted on 20 Jul 2025
671 points (99.0% liked)

[Dormant] moved to !historyphotos@piefed.social

7334 readers
2 users here now

COMM MOVED TO !historyphotos@piefed.social

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] howrar@lemmy.ca 1 points 3 months ago (1 children)

That makes sense. I've certainly been guilty of excessively DRYing my code. On one hand, it's a fun little puzzle to work on. On the other hand, it's been making it very hard to quickly iterate, and that's especially bad for research code.

[โ€“] chilicheeselies@lemmy.world 3 points 3 months ago

It only nakes sense to apply DRY principles when you find you keep having to copy paste the same code to muliple locations on your codebase, and its reasonably clear it will never diverge from eachother. In other words, apply as needed to maintain development velocity (and in turn stability).