hono4kami to [email protected]English • 1 day agoDon't DRY Your Code Prematurelytesting.googleblog.comexternal-linkmessage-square21fedilinkarrow-up186arrow-down16file-text
arrow-up180arrow-down1external-linkDon't DRY Your Code Prematurelytesting.googleblog.comhono4kami to [email protected]English • 1 day agomessage-square21fedilinkfile-text
minus-square@PieMePlentylink12•6 hours agoUltimate 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.
minus-square@[email protected]linkfedilink1•4 hours agoinvokeOperation(new Object[]("multiply", 2, 5))
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.
invokeOperation(new Object[]("multiply", 2, 5))
This guy seniors