Davy Jones@lemmy.dbzer0.com to Programming@programming.dev · 2 days agoWhich software design principles do you rely on most?message-squaremessage-square32fedilinkarrow-up149arrow-down10file-text
arrow-up149arrow-down1message-squareWhich software design principles do you rely on most?Davy Jones@lemmy.dbzer0.com to Programming@programming.dev · 2 days agomessage-square32fedilinkfile-text
I’m curious which software design principles you find most valuable in real projects. Two concise summaries I’ve found: Clean Code by Robert C. Martin A Philosophy of Software Design by John Ousterhout
minus-squarefruitycoder@sh.itjust.workslinkfedilinkarrow-up1·5 hours agoRight, so expanding our code for better readability vs trying to make a super dense one liner. Using human readable vars and not excessive short hand.
minus-squarebrisk@aussie.zonelinkfedilinkarrow-up1·2 hours agoAh got it. I was thinking about dense vs sparse arrays or containers
Sparse is better than dense?
Right, so expanding our code for better readability vs trying to make a super dense one liner.
Using human readable vars and not excessive short hand.
Ah got it. I was thinking about dense vs sparse arrays or containers