this post was submitted on 20 Dec 2024
96 points (92.1% liked)

Programming

23587 readers
202 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
96
Don't DRY Your Code Prematurely (testing.googleblog.com)
submitted 11 months ago* (last edited 11 months ago) by hono4kami@piefed.social to c/programming@programming.dev
 

DRY = Don't repeat yourself

you are viewing a single comment's thread
view the rest of the comments
[–] PieMePlenty@lemmy.world 25 points 11 months ago (2 children)

Ultimate DRY: just keep refactoring the one method to accept hundreds of parameters and do everything.

Add two numbers? DoIt(1, 2);

Subtract? DoIt(null, null, 3, 1);

Etc.

[–] Gurfaild@feddit.org 6 points 11 months ago
invokeOperation(new Object[]("multiply", 2, 5))
[–] Lemminary@lemmy.world 5 points 11 months ago

This guy seniors