this post was submitted on 02 Aug 2023
1453 points (98.0% liked)

Programmer Humor

33533 readers
281 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

I'm doing you a favor

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 32 points 2 years ago (2 children)

ngl, I'm annoyed whenever someone creates an application but doesn't want to publish their code cause it looks bad. Like no one cares that your code is bad and by publishing it, you can get others to help you improve it.

[–] [email protected] 13 points 2 years ago* (last edited 2 years ago) (1 children)
[–] [email protected] 11 points 2 years ago (1 children)

Steadily increasing unsigned integer on a long-running piece of infrastructure: bonjour

[–] [email protected] 3 points 2 years ago* (last edited 2 years ago) (1 children)

Laughs in

struct LooooongCounter {
    long highPart;
    long lowPart;
};
[–] [email protected] 3 points 2 years ago
LooooongCounter operator++(const LooooongCounter& c) {
    if(c.lowPart == ULONG_MAX) {
        c.highPart++;
        c.lowPart = 0;
    }
    else c.lowPart++;
}
[–] [email protected] 13 points 2 years ago

I think you convinced me to actually do it