• Venia Silente
    link
    fedilink
    English
    arrow-up
    81
    arrow-down
    13
    ·
    22 days ago

    Oh, we heard, Rust is the greatest invention since sliced bread. We heard it already. Like 65534 times.

    • urska@lemmy.ca
      link
      fedilink
      arrow-up
      35
      arrow-down
      8
      ·
      21 days ago

      Aviation, Health, Space and Car industry have only 3 certified languages that they use. Ada, C and C++. Ada is dying because there are way less young engineers who want to invest their future learning it. Then there is C and C++ but they dont offer memory safety and its really hard to master and its really hard and long (thats what she said) to certify the code when being audited for safety by a tier company.

      Rust solves by default (no need to review) like 2/3 of the standard requirements those industries have and are that found in C and C++. Rust will soon be approved in this group by the car industry.

      Im not a rust fan, but I have 3 things to say about rust.

      • Its fun to program like C++ having the peace of mind knowing the compiler is there helping.
      • You dont feel like youre defusing a bomb like when writing C.
      • Even though its a fun language to write, its also really hard to master, itd say 2 years to be really proficient with it. There is just so much knowledge.
        • urska@lemmy.ca
          link
          fedilink
          arrow-up
          5
          ·
          edit-2
          20 days ago

          These industries hire third parties to review c and c++ line per line to make sure it’s memory safe. Rust by default forces you to write memory safe code, otherwise it won’t even compile. The rust compiler tells where is the problem and what it expects. No only for basic Type errors but also for concurrent code.

            • urska@lemmy.ca
              link
              fedilink
              arrow-up
              2
              ·
              19 days ago

              its the way the language was built. Im not sure its possible without breaking C/C++ which have like 35 years + in the making. Also these concepts are have little to do with programing and more architectural designs. The designers are real engineers working on difficult concepts. All big brains tbh

      • imgcat@lemmy.ml
        link
        fedilink
        arrow-up
        4
        arrow-down
        5
        ·
        21 days ago

        Ada SPARK is not dying at all, it’s growing. It is used where formal proof is required like and Rust is nowhere near that!

      • corsicanguppy@lemmy.ca
        link
        fedilink
        arrow-up
        5
        arrow-down
        9
        ·
        21 days ago
        • You dont feel like youre defusing a bomb like when writing C.

        Whoa, Skippy. It’s not saving the world, it’s just coding properly.

        • urska@lemmy.ca
          link
          fedilink
          arrow-up
          4
          ·
          20 days ago

          Well no, those companies deal with really important subjects. Airplanes, car safety, chemotherapy machines, missiles, etc. Have a good day

    • The Doctor@beehaw.org
      link
      fedilink
      English
      arrow-up
      18
      ·
      22 days ago

      I wonder how many folks are just refusing to use Rust to spite the Rust Evangelism Strike Team.

          • delirious_owl@discuss.online
            link
            fedilink
            arrow-up
            5
            ·
            20 days ago

            It doesn’t verify downloads are authentic. Its an issue with almost all programming dependency managers besides mature ones like Java’s Maven.

            Python has been working with Facebook to fix this in pip for like a decade.

            But obviously it shows that rust isn’t so concerned about security.

            • uhN0id@programming.dev
              link
              fedilink
              arrow-up
              3
              ·
              20 days ago

              Ah interesting. Thank you, you’re giving me something to read about that I never considered for crates. I guess I just assumed because of the scrutiny Rust was built with and continues to go through that it would also apply to verifying crates. I have definitely heard about it with NPM so it should have been obvious that it might not be any different for crates. Thanks again!