60 comments

  • ww520 36 minutes ago

    When I bought my car, it had no Car Play or Android Auto. Upon some investigation I found out that both of them were installed on all the current models. It’s just disabled on the cars sold without the option. Some open source software for the car entertainment system flashed on the car was able to turn on the flags to enable various features including Car Play and Android Auto. So a happy story.

      ninju 15 minutes ago

      Even hardware features (heated steering wheel, rain sensing wipers, etc...) are now behind software switches which the car maker can control based upon subscription or trim-level purchase.

      All the hardware pieces are installed at build time

        ButlerianJihad 9 minutes ago

        > heated steering wheel

        As a licensed driver who resides in the Sonoran Desert, can you even imagine the horrific visions that just flashed before my eyes?

        We often joke around here that wearing oven mitts is a good way to get our cars started in the late afternoons. It's not really a joke.

        I personally have several pairs of gloves, and I never fail to don those gloves when I go out, whether I am walking, riding an e-Scooter, or driving, because even as a pedestrian we must touch so many metal objects that bask all day in the direct sunlight.

        Heated steering wheels. What a world we live in today!

          manacit 6 minutes ago

          I scoffed at it, as someone that grew up in California and never lived anywhere cold.

          Man, when it's freezing outside, it's awesome. I wouldn't buy a car without it now.

          Telaneo 4 minutes ago

          When it's minus -20°C outside, you'll be very happy for that heated steering wheel! For someone living in the desert, I wish there were cooled steering wheels, on the same level as heated/cooled seats, but maybe that's asking a but much.

          taneq 2 minutes ago

          Living in Australia where it gets hot and also kinda cold, having seats that are both heated and vented is awesome. Cold? Seat gives you a warm hug. Hot? Seat blows cool air to cool itself down after being parked, and to stop you getting sweaty.

          danhon 6 minutes ago

          There are also really cold places in the world!

      gruez 34 minutes ago

      >It’s just disabled on the cars sold without the option.

      So exactly like software licensing? Most apps nowadays don't even require a purchase to download. The download is free but you need to pay $4.99/month subscription to use, or $99.99 for a "lifetime subscription". The code's are all there. The author just doesn't want you to use it.

        prmph 2 minutes ago

        [delayed]

        Telaneo 30 minutes ago

        Ahh, DRM-ed cars. I should have seen that one coming, really.

        roysting 25 minutes ago

        That’s not exactly the same. You don’t get to have a car for free with basic driving functionality and then pay for additional features once you realize the car is useful and the people do made it deserve to be paid for their work, which they were willing to meet you have for free in its basic form.

        This is something far more heinous, you bought a thing for a lot of money and just in order to extort even more money from you, they simply disable/lock away a feature that you technically already possess.

        A better analogy in software might be that you bought a video game for $60,000 and the only way to beat a lower level boss without spending 2,000 hours trying to, is to pay the developers another $5,000 for a super weapon.

          wongarsu 18 minutes ago

          So more like enterprise software

        stringfood 22 minutes ago

        this reminds me of the old IBM tabulation machines that were sold in 2 different models at different prices, the cheaper one just had a metal tab inserted to limit the processing speed - you could remove the tab to unlock full speed

      rlpb 15 minutes ago

      Please could you share the name of the manufacturer, so the rest of us know who to be wary of?

      ajkjk 34 minutes ago

      Happy for the individual, sad for society

  • hparadiz 14 minutes ago

    Auto manufacturers need to realize that one bad software experience means lost sales of entire cars. Fail to provide a good experience at the cost of your brand for years to come.

      loveiswork 9 minutes ago

      We just sold our 2025 Subaru Outback specifically because the software experience was bad.

      To exit a climate control modal on the screen you have to find and tap a tiny red "X" box in the furthest corner of the screen from the steering wheel.

  • michaelje 37 minutes ago

    Once upon a time, physically shipping faulty software had real costs borne by the organization - production, redistribution and transportation of a physical disc.

    Today there’s no disc, no recall - that cost to shipping broken software is gone. We the users pay the price.

  • BeetleB 37 minutes ago

    It's not an indictment of modern software. It's an indictment of using SW where not needed.

    Don't put discrete, isolated HW functions behind a SW powered screen. It's that simple.

      lmz 9 minutes ago

      It's Android Auto and Apple Carplay. Not sure how that's an "isolated HW function". That would be an issue if they put the turn signals or AC controls on the screen only.

      strawhatguy 10 minutes ago

      Pretty much this. The less software on the car, the fewer problems.

      It's practically impossible to test every permutation of code against every system. Maybe AI can help, but practically it'll just mean the software gets more complicated, with more features. And to top it all off, more and more features get regulated, so they have to be there. The rear-view camera requirement in particular, since you need a screen to see the output. And if you have a screen... well it's an already paid cost, so, might as well display other things too.

      We should kill the reg.

      tonymet 2 minutes ago

      wouldn't that be impossible in this case? since android auto needs to draw to the screen, control infotainment, etc. even a dedicated USB + rocker switch for android auto would still need a software path to do those things

  • faangguyindia 9 minutes ago

    why OTA update OS that frequently?

    I've been lately into mobile apps and i am finding that there is no system which combines these 3

    1. AOT 2. JIT (for hot paths) 3. Interpreter for non JIT paths or where you explicitly do not want jit.

    Imagine, a system which compiles your app to AOT but when you push OTA update, part of the app are selectively replaced to JIT or Interpreted mode.

    it's theoretically possible but nobody seems to be doing it. I found react native / expo eas update but i don't think it's like this, it has a Hermes VM which runs bytecode but it has no JIT so you'll write native code for hot path then you'll need to upload a full update to Android. So, only toy level code performance can be can actually be written in JS?

    Much better, patch the parts where AOT calls into JIT or interpreter.

    Currently i am using react native and flutter. Flutter's UI framework code is in Dart if you load this whole code into JIT, it will consume a lot of resources on mobile device as the framework is big.

    But what if we could run the most of the code in AOT and only run changed code in JIT or interpreted mode? arguably it would perform as good as it does not being complete AOT while also providing react native like fast updates.

      tcoff91 3 minutes ago

      You can't update any AOT code due to how code signing works in these OS. And Apple completely bans JIT on iOS and iPadOS.

  • oybng 20 minutes ago

    Agree with the sentiment but the author's brain rotten rant is projection for being part of the problem

  • wildfireday2 9 minutes ago

    His good points here are undermined by the profane, emotional high-cortisol crashout. There’s a place for well-written, witty diatribes and polemics, but throwing F-bombs and F-yous into complaints is not that.

      spankalee 2 minutes ago

      It's his blog. He can talk however he wants. You, however, don't have to read it.

  • Telaneo 31 minutes ago

    Assuming your car has all the functions you care about, and the OTA updates aren't bringing you any bugfixes or feature updates you care about, is there any good reason to update? Or even have it online to begin with? I'm not expecting someone to hack my car; on the contrary, I'd rather have it be impossible for the automaker to reach my car in any way without it being obvious to me (i.e. me flipping a switch to get it online for whatever reason).

  • 0xbadcafebee 14 minutes ago

    If we had a software building code, it could mandate the testing procedures for consumer devices, like a car's headunit firmware. This building code could be backed by an industry body that could revoke its certification from manufacturers if they don't comply with the code. Super-advanced-testing-procedure #1: plug a phone into a test car and check it works before release.

    (This software building code is more necessary for software used in critical infrastructure. But it should also be applied to consumer devices as basic protection for consumers against manufacturers breaking functionality the consumer paid for)

  • jeffbee 36 minutes ago

    Users are complicit. Why did this user install the update? Were they suffering from an issue it supposedly solves? My six-year-old Honda has never had a software update, and in any case "OTA" updates can only be initiated by the user.

      mukbangpervert 19 minutes ago

      They described their car as having "auto-installed" the update.

      An update which advertised, amongst other features, that it "rectifies errors and prevents security gaps" and stated "This update is recommended for everyone."

      Borderline insane to refer to the user as "complicit" in that case.

      afavour 16 minutes ago

      No win scenario. We need to install updates because of security vulnerabilities. But we shouldn’t install updates because they might introduce bugs.

        spaqin 9 minutes ago

        Security vulnerabilities get too much credit. It's "think of the children" of the software world. Most updates don't fix any, most vulnerabilities won't get used in the real world against you either, and in many cases the security is for the corporation against the customer instead.

      spaqin 12 minutes ago

      While the users are not at fault, this culture has certainly turned me way more careful and deliberate about applying updates - if it's not broke, I usually don't; big corporations are more suspicious of breaking things and open source are usually good about them; and if there's no changelog or it's very generic, I'll stay away as well.

      FloatArtifact 30 minutes ago

      The user is not at fault for installing an offered update.

      hackerdood 20 minutes ago

      Some cars will force the update on you after dismissing it.

  • maxdo an hour ago

    that's a symptom of a bigger problem.

    Someone in auto industry decided that plugging device, and dependency on core functionality of the car to 3rd party device, that might be lost, have battery died, used for something else, etc is a good way to save money and not do proper software. It's even more bizare now, mid 2026, when software is solved with AI.

    It's good that there are some companies, that ban android/apple car since that's an ugly experience for the user.

      JoshTriplett an hour ago

      > Someone in auto industry decided that plugging device, and dependency on core functionality of the car to 3rd party device, that might be lost, have battery died, used for something else, etc is a good way to save money and not do proper software.

      On the contrary, having cars stop trying to provide a bespoke more-proprietary outdated piece of software you have less control over, probably have surreptitious telemetry reporting back from, and might have to pay a subscription fee for, and instead just delegate to the smartphone you already have, is a huge and surprising win.

      > It's good that there are some companies, that ban android/apple car since that's an ugly experience for the user.

      It's a terrible user-hostile loss when cars do that, typically because they want to maintain more control or try to extract more revenue from the user.

      If you don't want to use it, don't use it; there's nothing forcing you to do so.

        maxdo 24 minutes ago

        you settle with one failure story for another failure story.

        there are companies with amazing software experience, Rivian, Tesla, Nio, Lucid, even gm is start moving into that direction, and WV is buying software from rivian.

          JoshTriplett 19 minutes ago

          > there are companies with amazing software experience

          I don't want an amazing software experience. I want an unsurprising experience, ideally the one I already have.

          The only thing better than Android Auto would be to just provide a standardized port (and perhaps a wireless standard) for a combination of video output, audio output, touchscreen input, and charging, with optional standardized sensor inputs. Then you wouldn't need two different standards (Android Auto and Apple Carplay), just one, which would also work with any new device that came along to break that duopoly.

            maxdo 9 minutes ago

            you just stuck in this paradigm, this apple/auto surprised me so many times :

            - when you need to re-pair Bluetooth

            - when you forget the cable to charge and you need to drive

            - when you want to share your car to someone and they need to spend 5 minutes to accept every single ToS possible to simply put a GPS

            - several people with phones paired before, now you dealing with complete random

            you name it.

            - you listen music and you need to go out to buy something while others in the car

            None of these problems exist if you have a decent, dedicated computer in the car that just works, it knows profiles, it does need you to be always on wire, or on the line.

          rootusrootus 5 minutes ago

          > there are companies with amazing software experience, Rivian, Tesla, Nio, Lucid

          I own a Tesla, and a Ford. Amazing is not how I would describe the Tesla software experience. It lacks features like iMessage for group and for non-phone recipients that I am able to use in my Ford. Even though many people would say the Ford software is otherwise inferior. And if history is anything to go by, there are features in CarPlay today that Tesla will never add to their infotainment system.

          cyberax 8 minutes ago

          > there are companies with amazing software experience, Rivian, Tesla, Nio, Lucid

          Are you fucking serious? Tesla's head unit software is barely passable. It's shit.

          Nearly half of the screen is taken by useless toy car depictions, and navigation can't even render the full street names because the width of the input field is fixed.

        BeetleB 33 minutes ago

        > On the contrary, having cars stop trying to provide a bespoke more-proprietary outdated piece of software you have less control over, probably have surreptitious telemetry reporting back from, and might have to pay a subscription fee for, and instead just delegate to the smartphone you already have, is a huge and surprising win.

        I'd agree if it worked.

        Android Auto sucks. And I don't like that my auto manufacturer can wash their hands off it by pointing at Google.

        > If you don't want to use it, don't use it; there's nothing forcing you to do so.

        As long as the car manufacturer gives me basic functionality (radio, stereo, Bluetooth, etc). Nominally they do, but it sucks in a different way from Android Auto. So I have to ping pong between these two.

        My prior car's aftermarket Bluetooth receiver was fantastic. The fact that I can't install something like that on modern cars is a huge regression.

          maxdo 21 minutes ago

          why on earth you need an aftermarket receiver of Bluetooth? The cost of the module is few dollars. My cheap ac has bluethooth, just to connect it wifi, i used it once in it's lifetime.

          The entire idea that everytime you sit in the car you need to pair your devices, what if you have several devices in the car etc ? it's such a horrible, broken, neurotic idea.

          cyberax 10 minutes ago

          > Android Auto sucks.

          No, it doesn't. It's a very simple streaming protocol.

          It's literally a gRPC-encapsulated stream of h264 frames over a USB connection. With touch events and some car-related telemetry streamed back. You can implement it in a weekend: https://github.com/mrmees/open-android-auto

          You can create whatever you want, including just streaming videos onto the head unit or making it play Doom while driving (with steering wheel for input).

      Telaneo 34 minutes ago

      Given that the (user-facing) software that comes with the car is always broken (modulo Tesla and a few other modern exceptions), it's no wonder people want to replace that software with literally anything else that actually works.

      This isn't the auto industry deciding that you need to use your phone. On the contrary, GM and others tried hard to push back on Carplay and AA. This is the buyers telling the auto makers that they want Carplay and AA since they know that that actually works, and they know that the software the car actually comes with will be garbage, or at the very least unfamiliar and not really worth dealing with when you can hook up your phone and let that actually solve the problems the user wants to be solved.

      It's insane to me that anyone could be of the opinion that it's good that some automakers ban/don't implement Carplay and AA. It's just taking away user choice. It's hard to believe anyone could have this opinion without either never having driven a modern car, or just being an industry plan.

        izacus 32 minutes ago

        Err, Teslas aren't an outlier - the OTAs break shit all the time and in many ways they're worse than cars not getting OTAs because of that :(

          maxdo 18 minutes ago

          I can name you tons of things they fix over 5 years i own over the air. The ratio there is very very net positive towards a very good , well polished system, not an other way around.

          They even fixed once a semi broken hardware for me. Camera power started acting up. I called tesla they said you can come to service to replace or wait a bit we will release OTA that will decrease a power consumption, in 3-4 weeks they fix my custom problem without going to serive

          plqbfbv 16 minutes ago

          > the OTAs break shit all the time

          Uh? I can literally count the times my Model 3 2019 software broke something on one hand:

          - when they redesigned the AC controls to make them more visually appealing but less functional (no button borders and no fill)

          - when they decided to put air recirculation under auto-control and ignore the user's settings

          - when they optimized the cellular connectivity and it took them a while to get back proper reconnect on loss of signal (garages etc)

          - when they tuned sentry's sensitivity and there was some back-and-forth for a couple cycles between "record everything" and "record nothing"

          None of this made the car undrivable or totally useless. I did hear of reports of early HW4 cars bricking their FSD computer, and Tesla replaced it.

          In my opinion it's still a much better experience than the absolute guesswork of "what will my screen display today when I connect the phone? and where will I find Maps again?", based on software updates on the car AND the phone.

          EDIT: also agreeing with the sibling comments: my 7 year old car got a lot of extra features since release, and most of them working very well at the first try.

          Telaneo 28 minutes ago

          Yet they still manage to be better than the baseline, since that's located somewhere around the Mariana Trench.

      afavour 42 minutes ago

      > It's good that there are some companies, that ban android/apple car since that's an ugly experience for the user.

      Absolutely nonsensical. Both Android Auto and Apple CarPlay are better experiences than any first party car interface I’ve experienced.

      In many ways the auto industry stumbled when they allowed this connectivity, just like phone networks stumbled when they let Apple dictate the iPhone from top to bottom. Good news is those stumbles worked out great for users. We get iPhones without bundled crapware apps and we get cars that don’t require monthly subscriptions for basic functionality your phone provides.

      janalsncm 36 minutes ago

      > software is solved with AI

      Presumably every car manufacturer can use AI. Yet there are still bugs. If all bugs are solved with AI, and therefore every car manufacturer with access to AI writes bug-free software, the only remaining conclusion is that some car manufacturers don’t have AI yet.

        Reason077 19 minutes ago

        > ”the only remaining conclusion is that some car manufacturers don’t have AI yet.”

        This suggests the supply of AI is too limited, and there isn’t enough AI to go around. Solution: build more AI data centres.

      parineum 43 minutes ago

      > It's even more bizare now, mid 2026, when software is solved with AI.

      Why doesn't op simply ask AI to write software to fix his problem?

        Rebelgecko 39 minutes ago

        A lot of the time, the head unit only accepts signed updates

      dmitrygr 41 minutes ago

        > mid 2026, when software is solved with AI.
      
      hahahaha

      wait, you're serious? let me laugh even harder

      HAHAHAHAHAHAHAHAHAHA

      Software is not solved. Writing trite code of the kind that has been written millions of times before is somewhat solved, if you are willing to never maintain the result or be able to answer for its performance or beahaviour.

  • arikrahman 39 minutes ago

    Not even 13 days ago another article on here was glazing the infotainment system. I even have the article. https://news.ycombinator.com/item?id=48769397 People were attacking the critique I levied towards shallow praise flippantly gravitating to the word consistency, but now I feel vindicated.

  • hunmernop an hour ago

    Ai will solve it. Car manufacturers are slow to take on new technology but they’ll be forced to

      thin_carapace 43 minutes ago

      if the giga rich pushing this latest ai wave manage to convince a single safety critical industry to deregulate, we are all boned