• qjkxbmwvz@startrek.website
    link
    fedilink
    English
    arrow-up
    238
    arrow-down
    2
    ·
    7 months ago

    Similar with Y2K — it was only a nothingburger because it was taken seriously, and funded well. But the narrative is sometimes, “yeah lol it was a dud.”

    • TonyTonyChopper@mander.xyz
      link
      fedilink
      English
      arrow-up
      75
      arrow-down
      5
      ·
      7 months ago

      All this hysteria over nuclear weapons is overblown. We’ve known how to build them for 75 years yet there hasn’t been a single one detonated on inhabited American soil. They’re harmless

    • FractalsInfinite@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      47
      ·
      7 months ago

      The question is, what will happen in 2038 when y2k happens again due to an integer overflow? People are already sounding the alarm but who knows if people will fix all of the systems before it hits.

      • zik@lemmy.world
        link
        fedilink
        English
        arrow-up
        33
        arrow-down
        1
        ·
        edit-2
        7 months ago

        It’s already been addressed in Linux - not sure about other OSes. They doubled the size of time data so now you can keep using it until after the heat death of the universe. If you’re around then.

        • Matombo@feddit.de
          link
          fedilink
          English
          arrow-up
          9
          ·
          7 months ago

          debian for example is atm at work recompiling everything vom 32bit to 64bit timestamps (thanks to open source this is no problem) donno what happens to propriarary legacy software

        • dev_null@lemmy.ml
          link
          fedilink
          English
          arrow-up
          2
          ·
          7 months ago

          Obviously new systems are unaffected, the question is how many industrial controllers checking oil pipeline flow levels or whatever were installed before the fix and never updated.

          • CLOTHESPlN@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            7 months ago

            Being somewhat adjacent to that with my work, there is a good chance anything in a critical area (hopefully fields like utilities, petroleum, areas with enough energy to cause harm) have decently hardened or updated equipment where it either isn’t an issue, will stop reporting tread data correctly, or roll over to date “0” which depending on the platform with industrial equipment tends to be 1970 in my personal experience. That said, there is always the case that it will not be handled correctly and either run away or stop entirely.

        • AdrianTheFrog@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          ·
          7 months ago

          I think everything works in windows but the old windows media player. You can test it by setting the time in a windows VM to 2039.

        • Successful_Try543@feddit.de
          link
          fedilink
          English
          arrow-up
          14
          ·
          edit-2
          7 months ago

          AfaIk that’s not entirely true, e.g. Debian is changing the system time from 32 bit integer to 64 bit. Thus I assume other distros do this as well. However, this does not help for industrial or IOT devices running deprecated Unix / Linux derivatives.

          • smeg@feddit.uk
            link
            fedilink
            English
            arrow-up
            18
            ·
            7 months ago

            industrial or IOT devices running deprecated Unix / Linux derivatives

            This is my concern, all the embedded devices happily running in underground systems like pipes and cables. I assume there are at least a few which nobody even considered patching because they’ve “just worked” for decades!

              • smeg@feddit.uk
                link
                fedilink
                English
                arrow-up
                10
                ·
                7 months ago

                They do at least get updates though, and they’re big enough that they don’t get forgotten!

    • fine_sandy_bottom@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      37
      ·
      7 months ago

      I can’t remember the name but I think this is some kind of paradox.

      Like the preventative measures we’re so effective that they created a perception that there was no risk in the first place.

      • Matombo@feddit.de
        link
        fedilink
        English
        arrow-up
        38
        ·
        7 months ago

        It’s called the prevention paradox: It’s when an issue is so severe that it is prevented with proactive action, so no real consequenses are felt so people think it wasn’t severe in the first place.

        • IvanOverdrive@lemm.ee
          link
          fedilink
          English
          arrow-up
          38
          ·
          7 months ago

          Case in point: Measles. It was a thing when I was a kid. Then it wasn’t. Now my kids have to deal with Measles because we can’t teach scientific literacy.

    • neidu2@feddit.nl
      link
      fedilink
      English
      arrow-up
      20
      ·
      edit-2
      7 months ago

      I wasn’t working in the IT field back then, as I was only 16, but as I knew that it’d most likely be my field one day (yup, I was right), I followed this closely due to interest, and applied patches accordingly.

      Everything kept working fine except this one modem I had.

      • FunkFactory@lemmy.world
        link
        fedilink
        English
        arrow-up
        6
        ·
        7 months ago

        I kinda wish I knew what it was like working on Y2K stuff. It sounds like the most mundane bug to fix, but the problem is that it was everywhere. Which I imagine made it pretty expensive 👀

        • brianorca@lemmy.world
          link
          fedilink
          English
          arrow-up
          5
          ·
          7 months ago

          That’s a pretty good description. And most software back then didn’t use nice date utilities, they each had their own inline implementation. So sometimes you had to figure out what they were trying to do in the original code, which was usually written by someone who’s not there anymore. But other times it was the most mundane doing the same fix you already did in 200 other programs.

        • stringere@leminal.space
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 months ago

          And computer networking, especially the ability to remote into a system and make changes or deliver updates en masse, was nowhere near as robust as it is today meaning a lot of those fixes were done manually.

      • AA5B@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        ·
        edit-2
        7 months ago

        Most of the y2k problem was custom software, and really old embedded stuff. In my case, all our systems were fine at the OS, and I don’t remember any commercial software we had trouble with, but we had a lot of custom software with problems, as did our partners

    • Trantarius@programming.dev
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      40
      ·
      7 months ago

      Y2K specifically makes no sense though. Any reasonable way of storing a year would use a binary integer of some length (especially when you want to use as little memory as possible). The same goes for manipulations; they are faster, more memory efficient, and easier to implement in binary. With an 8-bit signed integer counting from 1900, the concerning overflows would occur in 2028, not 2000. A base 10 representation would require at least 8 bits to store a two digit number anyway. There is no advantage to a base 10 representation, and there never has been. For Y2K to have been anything more significant than a text formatting issue, a whole lot of programmers would have had to go out of their way to be really, really bad at their jobs. Also, usage of dates beyond 2000 would have increased gradually for decades leading up to it, so the idea it would be any sort of sudden catastrophe is absurd.

      • frezik@midwest.social
        link
        fedilink
        English
        arrow-up
        29
        ·
        7 months ago

        With an 8-bit signed integer counting from 1900…

        Some of the computers in question predate standardizing on 8 bits to the byte. You’ve got a whole post here of bad assumptions about how things worked.

      • SkippingRelax@lemmy.world
        link
        fedilink
        English
        arrow-up
        22
        arrow-down
        1
        ·
        7 months ago

        a whole lot of programmers would have had to go out of their way to be really, really bad at their jobs.

        You don’t spend much time around them, do you?

      • breakingcups@lemmy.world
        link
        fedilink
        English
        arrow-up
        17
        arrow-down
        1
        ·
        7 months ago

        You do realize that “counting from 1900” meant storing only the last two digits and just hardcoding the programs to print"19" in front of it in those days? At best, an overflow would lead to 19100, 1910 or 1900, depending on the print routines.

      • Matombo@feddit.de
        link
        fedilink
        English
        arrow-up
        13
        ·
        7 months ago

        Oh boy you heavily underestimate the amount and level of bad decision in legacy protokoll. Read up in the toppic. the Date was for a loong time stored as 6 decimal numbers.

      • thomasw@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        11
        ·
        7 months ago

        And then there is PIC 99 in Cobol. In modern languages, it makes no sense, but there is still a lot of really old code around and not everything is twos complement, especially if you do not need the efficiency in memory and calculations.