this post was submitted on 20 Aug 2023
6 points (100.0% liked)

Programmer Humor

19145 readers
808 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] nothacking@discuss.tchncs.de 1 points 1 year ago* (last edited 1 year ago) (1 children)

I reserve comments for explaining why a section of code is needed or explaining how a complex algorithm works.

i = 0; // Set i to 0 is pointless.

if (last_output_vertex[i] == bounds[i]->length - 1) contibuting_bounds[i] = NULL; // stop outputting a bound if the entire bound has been output is helpful.

[โ€“] JonEFive@midwest.social 1 points 1 year ago

Comments can also be useful for explaining what the code is intended to do when debugging.

"Hey this function says it should return the number of apples, but looks like someone, not saying who, but someone had a brain fart and typed oranges in one variable. Who wrote this code anyway?"

-Last edited by JonEFive in 2021-

Past me sucks.