Andromxda 🇺🇦🇵🇸🇹🇼 to Programmer [email protected]English • 9 months agoHow programmers comment their codelemmy.dbzer0.comimagemessage-square147fedilinkarrow-up11.56Karrow-down19file-text
arrow-up11.55Karrow-down1imageHow programmers comment their codelemmy.dbzer0.comAndromxda 🇺🇦🇵🇸🇹🇼 to Programmer [email protected]English • 9 months agomessage-square147fedilinkfile-text
minus-square@[email protected]linkfedilinkEnglish17•9 months ago“What does this section of code do?” Run it and find out, coward.
minus-square@[email protected]linkfedilink1•9 months agoNah. It should be obvious by just looking at it in code. If it isn’t, you haven’t extracted single purpose methods out of it yet.
minus-squaremagic_lobster_partylinkfedilink2•edit-29 months agoJust having clear and concise variable names often goes a long way. Avoid using abbreviations. Breaking out the code into functions helps limit the number of variables within a scope, which makes it easier to name them.
“What does this section of code do?”
Run it and find out, coward.
Nah. It should be obvious by just looking at it in code. If it isn’t, you haven’t extracted single purpose methods out of it yet.
Just having clear and concise variable names often goes a long way. Avoid using abbreviations.
Breaking out the code into functions helps limit the number of variables within a scope, which makes it easier to name them.