• ignirtoq
    link
    fedilink
    610 months ago

    I thought the point of “clean code” was to make a software source code base comprehensible and maintainable by the people who are in charge of working with and deploying the code. When you optimize for people reading the code rather than some kind of performance metrics, I would expect performance improvements when you switch to performance optimization. The trade-off here is now code that’s more performant, but that’s more difficult to read, with interdependence and convolution between use cases. It’s harder to update, which means it’s slower and more costly (in engineering resources) to upgrade.

    In a lot of modern software, you don’t need extreme performance. In the fields that do, you’ll find guidelines and other resources that explain what paradigms to avoid and what are outright forbidden. For example, I have heard of C++ exceptions and object-oriented features being forbidden in aircraft control software, for many of the reasons outlined in this article. But not everyone writes aircraft control code, so rather than saying clean code is “good” or clean code is “bad,” like a lot of things this should be “it depends on your needs.”

    • @BlueMagma
      link
      410 months ago

      I think you are right that optimising engineering cost is the goal of these practices, but I believe it is a bad thing.

      Nowadays we have the most powerful hardware we ever had, yet everything is slow. Sure we reduce dev cost, but the end user is paying the price difference with its time in my opinion.

      In the end the only people that benefit from this are the owners of the product, making more money selling unoptimised software, devs maybe get a bit more money, but probably not that much.

      • ignirtoq
        link
        fedilink
        210 months ago

        I think you are right that optimising engineering cost is the goal of these practices, but I believe it is a bad thing.
        In the end the only people that benefit from this are the owners of the product […]

        Yes, that’s exactly how the for-profit software industry (and really any for-profit industry) is run. The owners maximize their benefit. If you want to change that, that’s a much different problem on a much larger scale, but you will not see a for-profit company do anything but that.

    • lemonflavoured
      link
      fedilink
      310 months ago

      so rather than saying clean code is “good” or clean code is “bad,” like a lot of things this should be “it depends on your needs.”

      That doesn’t generate clicks.