this post was submitted on 11 Jun 2023
3 points (100.0% liked)

Programming

13358 readers
20 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Prefix@lemm.ee 1 points 1 year ago

I think it’s one of those things that is generally a good instinct, but easy to go overboard and way over index on.

Usually I try to optimize code for “how easy is it to entirely delete this module” - loose coupling is the bigger concern. Sometimes it makes sense to repeat code with this approach. Usually I’ll abstract a shared concern out once I repeat it 3 or so times, but not always.

It’s all about trade offs.