• Mnemnosyne@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    195
    arrow-down
    1
    ·
    10 months ago

    That’s one of those paradoxes with human behavior around problems. If you put in effort to resolve the problem before it becomes significant, either no one notices, or they claim your effort was unnecessary because it wasn’t a problem in the first place.

    Y2K bugs are a great example. Lots of effort, time, and money was spent ahead of time to prevent it from becoming a problem…and you get people claiming the whole thing was just nothing to be worried about at all and the expense was pointless.

      • Aceticon@lemmy.world
        link
        fedilink
        arrow-up
        36
        ·
        edit-2
        10 months ago

        Dates with the year stored as two digits only (say, 1995 was stored as “95”), which worked fine for things like comparisons (for example: “is the year in entry A before or after the year in entry B?”) which were just done by numerical comparison (i.e. 98 > 95 hence a date with a year ending in 98 is after a date with the year ending in 95), until 2000 were the year being store would become “00” and all those assumptions that you could compare those stored years as numbers would break, as would as all the maths being done on two digits (i.e. a loan taken in 1995 would in 1998 be on its 98 - 95 = 3rd year with that system, but in 2000 it would be on its 98 - 00 = - 98th - so negative - year which would further break the maths downstream with interesting results like the computer telling the bank it would have to give money to the lender to close the loan).

        Ultimatelly a lot of work was done (I myself worked in some of that stuff) and very few important things blew up or started producing erroneous numbers when the year 2000 came.

        • stebo02@sopuli.xyz
          link
          fedilink
          arrow-up
          3
          ·
          10 months ago

          I wonder why they didn’t think about making computers and clocks count past 100 when creating them? Did they not expect to ever get to the year 2000?

          • danque@lemmy.world
            link
            fedilink
            arrow-up
            4
            ·
            10 months ago

            The year is 2038, nothing happened. Seems like a lot of nothing. (Meanwhile behind the scenes. Developers are happy they prevented a major problem).

    • douglasg14b@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      10 months ago

      Happens at work so often.

      Put energy into building robust systems organically (A lot of problems get solved because they where experienced, not because they where predicted) and then a year later you have folks asking “Can’t we just simplify this and remove XYZ? Do these problems even exist? Can you show us how often edge cases a, b, c happens to justify why this needs to operate this way?”…etc

      Should have just let it fail and fixed the issues once pagerduty got involved instead 😒