I’m doing you a favor

@Gecko@lemmy.world
link
fedilink
English
321Y

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.

@lol@sh.itjust.works
link
fedilink
English
13
edit-2
1Y

If it works, it works.

@rmuk@feddit.uk
link
fedilink
English
111Y

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

@socsa@lemmy.ml
link
fedilink
3
edit-2
1Y

Laughs in

struct LooooongCounter {
    long highPart;
    long lowPart;
};
LooooongCounter operator++(const LooooongCounter& c) {
    if(c.lowPart == ULONG_MAX) {
        c.highPart++;
        c.lowPart = 0;
    }
    else c.lowPart++;
}

I think you convinced me to actually do it

Create a post

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

Rules:

  • Posts must be relevant to programming, programmers, or computer science.
  • No NSFW content.
  • Jokes must be in good taste. No hate speech, bigotry, etc.
  • 1 user online
  • 120 users / day
  • 257 users / week
  • 744 users / month
  • 3.72K users / 6 months
  • 1 subscriber
  • 1.48K Posts
  • 32.7K Comments
  • Modlog