710
Bill is a pro grammer (sh.itjust.works)
you are viewing a single comment's thread
view the rest of the comments
[-] onlinepersona@programming.dev 117 points 11 months ago
[-] philm@programming.dev 12 points 11 months ago

Yeah, but unironic...

If your code needs comments, it's either because it's unnecessarily complex/convoluted, or because there's more thought in it (e.g. complex mathematic operations, or edge-cases etc.). Comments just often don't age well IME, and when people are "forced" to read the (hopefully readable) code, they will more likely understand what is really happening, and the relevant design decisions.

Good video I really recommend: https://www.youtube.com/watch?v=Bf7vDBBOBUA

[-] magic_lobster_party@kbin.social 11 points 11 months ago* (last edited 11 months ago)

I’ve seen code that look like this:

int delay = 15 * 60; // 10 minutes

Even if the comment was on the same line someone forgot to update it. People just ignore comments.

Better solution is to write (in C#):

TimeSpan delay = TimeSpan.FromMinutes(15)

Much more obvious what the code actually means.

[-] 18107@aussie.zone 7 points 11 months ago

A better comment would be delay in seconds as that is the one thing not obvious from glancing at the code.

[-] magic_lobster_party@kbin.social 13 points 11 months ago

Or just name the variable delaySeconds if you really want to store it as an int. Bonus is that every use of the variable perfectly communicates what it is.

load more comments (4 replies)
load more comments (40 replies)
load more comments (40 replies)
this post was submitted on 26 Nov 2023
710 points (89.3% liked)

Programmer Humor

19551 readers
469 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