• gnus_migrate@programming.dev
    link
    fedilink
    English
    arrow-up
    3
    ·
    11 months ago

    A good language matters. A good type system matters. A good use of a good language with its type system, patterns, abstractions, ecosystem, and all it got to offer matters.

    Eh research shows otherwise. Rust eliminates defects for a very particular set of problems, but when it comes to logical correctness it isn’t better or worse than other languages. If those problems are prominent in your domain(such as you have to write a ton of concurrent code), Rust makes sense. Otherwise being well rested will have a bigger impact on the quality of your code than the best type system in the world.

    In terms of dev practices, the only practice demonstrated to have a consistent positive impact on code quality is code reviews. Testing as well, but whether it’s TDD or other kinds of testing doesn’t really matter.

        • BB_C@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          11 months ago

          Eh research shows otherwise. Rust eliminates defects for a very particular set of problems, but when it comes to logical correctness it isn’t better or worse than other languages.

          Can you concede, at least to yourself, that you made ^ this ^ up?

          By the way, what you claimed “research shows” is so ridiculous that it’s hilarious that you wrote it while being serious.

          Hell, I cheekily mentioned Python and JS in particular because the former introduced type hints and the latter triggered creating TS as a saner shield.

          Btw, that wrongly-constructed URL wasn’t even an external one. We literally have web frameworks that make sure non-external URLs with invalid paths are impossible to construct. In other words, attempting to construct a wrong one would be a compile error.

          • gnus_migrate@programming.dev
            link
            fedilink
            arrow-up
            1
            ·
            11 months ago

            By the way, what you claimed “research shows” is so ridiculous that it’s hilarious that you wrote it while being serious.

            There is still no research that definitively shows that static types reduce defects more than dynamic types, this is a fact. Turns out we are incredibly bad at studying this, so I don’t know how you can say definitively that it is the case when even the people who study this for a living are not able to make that case.

            • RunAwayFrog@sh.itjust.works
              link
              fedilink
              arrow-up
              1
              ·
              edit-2
              11 months ago

              Eh research shows otherwise. Rust eliminates defects for a very particular set of problems, but when it comes to logical correctness it isn’t better or worse than other languages.

              Come on. What was requested by the other user is clear, I think.

              You made this specific claim. Can you link to the research showing that? Actual research showing that “Rust eliminates defects for a very particular set of problems, but when it comes to logical correctness it isn’t better or worse than other languages”, not a YT video from a wannabe intellectual talking abstracts and siting some generic studies.

              • gnus_migrate@programming.dev
                link
                fedilink
                arrow-up
                1
                ·
                11 months ago

                It was my mistake, I said that we definitely know they don’t vs. there is no evidence showing that there is. There aren’t much studies to back this up. The whole point of the talk is that software engineering as a discipline is really poorly studied and we tend to make assertions like this without actually validating them.

                If I was betting money on this(I.e. deciding where to focus my investment), the quality of the typesystem would only matter if the typesystem caught real problems that I face in my day to day work. For a Web app for instance, it makes no sense to use Rust vs a GC’d language because the kinds of bugs that you face in Web apps aren’t really the kinds of issues that a borrow checker will help you with. The whole point of Rust being difficult is that it saves you time down the line, if it’s difficult and it doesn’t then that tradeoff doesn’t make sense.

                Hilel teaches formal verification for a living, he very much sees the value of automatically proving properties about your program, as do I, but the reality is that the typesystem doesn’t necessarily help as much as we think it does.

                • RunAwayFrog@sh.itjust.works
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  11 months ago

                  the quality of the typesystem would only matter if the typesystem caught real problems that I face in my day to day work. For a Web app for instance, it makes no sense to use Rust vs a GC’d language because the kinds of bugs that you face in Web apps aren’t really the kinds of issues that a borrow checker will help you with.

                  It’s quite reductionist (and weird) to describe Rust’s type system in terms of it’s borrow-checker only, ditto for describing the other simply as “GC’d languages”.

                  The borrow-checker together with move semantics and RAII are a small, if dominating -especially for beginners-, part of Rust’s type system. There are many other very relevant aspects, type classes (traits), sum types (enums), hell, not being OOP alone is a big win for many.

                  Talking about Rust only in terms of its type system would also be reductionist. The macro system alone is a big differentiator (I would know, because I’ve been working on a proc-macro crate for sometime which will support (de-)serializing a format with both more flexibility and reliability than what serde can offer).

                  Even talking about Rust only in terms of the language is reductionist! The ecosystem and tooling… okay, I will stop reaching further here.

                  Talking about the other as “GC’d languages” is also reductionist and weird, since it puts, for example, Go (lol) and Haskell on the same bracket. And that’s two strongly and statically typed languages. I could have picked two languages that are even more different than each other. “GC” as a differentiator for languages is actually even more reductionist than “borrow checker” for Rust.

                  The whole point of Rust being difficult is that it saves you time down the line

                  Neither Rust is actively trying to be difficult, nor is it really difficult beyond some early friction while learning the language, and even that friction is overblown often by many.

                  We do actually have some data on this (I wouldn’t dare calling it “research”). There is this part which actually relates to one of the arguments made in your YouTube link:

                  And, it’s not just correct—it’s also easy to review. More than half of respondents say that Rust code is incredibly easy to review. As an engineering manager, that result is in many ways at least as interesting to me as the code authoring results, since code reviewing is at least as large a part of the role of a professional software engineer as authoring.