Cows Look Like Maps@sh.itjust.works to Programmer Humor@programming.dev · 11 months agoBill is a pro grammersh.itjust.worksimagemessage-square94fedilinkarrow-up1788arrow-down196
arrow-up1692arrow-down1imageBill is a pro grammersh.itjust.worksCows Look Like Maps@sh.itjust.works to Programmer Humor@programming.dev · 11 months agomessage-square94fedilink
minus-squaremagic_lobster_party@kbin.sociallinkfedilinkarrow-up73·11 months agox += 1; // Increases x by one
minus-squaretowerful@programming.devlinkfedilinkarrow-up62arrow-down3·edit-211 months ago// increase the dynamically allocated memory space of a word sized integer stored at the memory address represented by the symbol "x" by the integer 1 and terminate the instruction
minus-squaremorrowind@lemmy.mllinkfedilinkarrow-up37·11 months agoWait why is it dynamically allocated and why are you increasing the memory. Something is very wrong here
minus-squarefloofloof@lemmy.calinkfedilinkEnglisharrow-up33·11 months agoFound the bug. Thank goodness for comments.
minus-squareAnders429@programming.devlinkfedilinkarrow-up3·11 months agoOh, is this what they meant by “commenting your code”?
minus-squareAnders429@programming.devlinkfedilinkarrow-up11·11 months agoWhy the heck does it need to be dynamically allocated? Just put that puppy on the stack.
minus-squaretowerful@programming.devlinkfedilinkarrow-up6·11 months agoThat’s what it used to do. But it was a bug, and the code has been fixed.
minus-squareautokludge@programming.devlinkfedilinkEnglisharrow-up18·edit-211 months ago…Years later x += config.increment; // Increases x by one """ config.yaml increment: -2 """
minus-squareZILtoid1991@kbin.sociallinkfedilinkarrow-up16arrow-down1·11 months agox++; // Move X position forward by one There, I made that kind of comment more useful!
minus-squareLostXOR@kbin.sociallinkfedilinkarrow-up9·11 months agox++; // Set x to the incrementation of the value of x Much better.
x += 1; // Increases x by one
// increase the dynamically allocated memory space of a word sized integer stored at the memory address represented by the symbol "x" by the integer 1 and terminate the instruction
Wait why is it dynamically allocated and why are you increasing the memory. Something is very wrong here
Found the bug. Thank goodness for comments.
Oh, is this what they meant by “commenting your code”?
Why the heck does it need to be dynamically allocated? Just put that puppy on the stack.
That’s what it used to do.
But it was a bug, and the code has been fixed.
…Years later
x += config.increment; // Increases x by one
""" config.yaml increment: -2 """
x++; // Move X position forward by one
There, I made that kind of comment more useful!
x++; // Set x to the incrementation of the value of x
Much better.
// Move to the right