• Kairos@lemmy.today
    link
    fedilink
    arrow-up
    39
    ·
    9 months ago

    It reportedly checks subscription upon putting the vest on and supposedly won’t turn off mid ride.

    • Slotos@feddit.nl
      link
      fedilink
      arrow-up
      94
      ·
      9 months ago

      And if there’s a bug in that code, you’re fucked.

      Safety features should work if everything else fails. Their failure mode can’t be “fuck it, it didn’t work”. Which is directly opposite to the failure mode of a subscription based service.

      • grue@lemmy.world
        link
        fedilink
        English
        arrow-up
        20
        ·
        edit-2
        9 months ago

        This is why:

        1. The FTC needs to do its job and start outlawing all these obscene subscription business models for things that are rightfully products, not services. Where’s my goddamned First Sale Doctrine, FTC?!

        2. Software Engineers working on commercial products need to be professionally licensed, so that proper consequences can be applied for unethical “fail-deadly” designs like this one.

        • Technus@lemmy.zip
          link
          fedilink
          arrow-up
          11
          ·
          edit-2
          9 months ago

          As a software engineer, the thought of my code being responsible for someone’s safety is fucking terrifying. Thankfully I’m not in that kind of position.

          From experience though, I can tell you that most of the reasons software is shitty is because of middle or upper management, either forcing idiotic business requirements (like a subscription where it doesn’t fucking belong!) or just not allocating time to button things up. I can guarantee that every engineer that worked on that thing hated it and thought it was fucking stupid.

          Licensing would be overkill for most software as it’s not usually life and death. I think in this case since it’s safety equipment it really should have been rejected by NHTSA before it ever hit stores.

          • grue@lemmy.world
            link
            fedilink
            English
            arrow-up
            5
            ·
            edit-2
            9 months ago

            I can guarantee that every engineer that worked on that thing hated it and thought it was fucking stupid.

            As a software engineer who was also a civil engineer-in-training before switching careers, I think one of the big overlooked benefits of being licensed is that it would give engineers leverage to push back on unethical demands by management.

      • apt_install_coffee@lemmy.ml
        link
        fedilink
        arrow-up
        32
        ·
        9 months ago

        Yes, but also from an implementation perspective: if I’m making code that might kill somebody if it fails, I want it to be as deterministic and simple as possible. Under no circumstances do I want it:

        1. checking an external authentication service.
        2. connected to the internet in any way.
        3. have multiple services which interact over an API. Hell, even FFIs would be in the “only if I have to” bucket.
        • Psaldorn@lemmy.world
          link
          fedilink
          arrow-up
          15
          ·
          9 months ago

          If the customer is dead, they definitely can’t renew.

          Who wouldn’t tout your service if it saved them?

          But also… why the fuck does this require a sub?

          • grue@lemmy.world
            link
            fedilink
            English
            arrow-up
            8
            ·
            9 months ago

            But also… why the fuck does this require a sub?

            Because “fuck you, we’re rent-seeking and you can’t do anything about it,” that’s why.

          • Norah - She/They@lemmy.blahaj.zone
            link
            fedilink
            English
            arrow-up
            4
            ·
            9 months ago

            The argument the company makes is that it allows them to sell the device for cheaper upfront, which means that more people can afford to have one. They sell them for $400. But also fuck them, nobody ever died from HP disabling printers.

        • smitten@lemmy.blahaj.zone
          link
          fedilink
          English
          arrow-up
          0
          ·
          9 months ago

          It checks the service when booting up before a ride. After that it doesn’t connect to the internet. If you’ve gone past your grace period of 60 days it won’t boot up at all, and it will alert you that the device isn’t active.

          Don’t get me wrong, I hate the idea of the subscription but it’s important to have accurate information. Did you even read the product page?

          • apt_install_coffee@lemmy.ml
            link
            fedilink
            arrow-up
            0
            ·
            9 months ago

            That information changes none of my issues; if you don’t see the plethora of potential implementation bugs involved, either you don’t code professionally or you shouldn’t be.

            • smitten@lemmy.blahaj.zone
              link
              fedilink
              English
              arrow-up
              1
              ·
              9 months ago

              I code professionally, specifically I develop very resilient medical software. From a software perspective, as long as the developers are competent I have no issues with the device. There are so many other things you could take issue with when it comes to the vest, but I’m telling you software just isn’t one of them.

              • apt_install_coffee@lemmy.ml
                link
                fedilink
                arrow-up
                1
                ·
                9 months ago

                I’m sure the developers are competent, but the reason I care about the design decisions is the same reason the electric brakes on cars don’t interface with its infotainment system; the interface inherently creates opportunities for out of spec behaviour and even if the introduced risk is tiny, the consequence is so bad that it’s worth avoiding.

                If you have to have an airbag be controlled by software (ideally the mechanism is physical, like a pull tab), it should be an isolated real time device with monitoring your accelerometer and triggering the airbag be it’s only jobs. If it’s also waiting to hear back from another device about whether your subscription ran out before it starts checking, the risk of failure also has to consider that triggering device.

                It can be done perfectly, but it’s software so of course it has bugs.