I’m doing you a favor

  • @[email protected]
    link
    fedilink
    English
    3111 months ago

    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
      link
      English
      14
      edit-2
      11 months ago

      If it works, it works.

      • @[email protected]
        link
        fedilink
        English
        1111 months ago

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

          • @[email protected]
            link
            fedilink
            311 months ago
            LooooongCounter operator++(const LooooongCounter& c) {
                if(c.lowPart == ULONG_MAX) {
                    c.highPart++;
                    c.lowPart = 0;
                }
                else c.lowPart++;
            }