• confusedbytheBasics@beehaw.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    What you call hype I call a strong and growing ecosystem. ;)

    Honestly it’s been fun chatting with you. I think we are sort of opposites. You seem to like hobby languages. I like well used languages. You are tired of hearing about what’s popular. I’m excited about other programmers being excited.

    I am curious what turned you off when you were actually using Rust. Or did you mostly lose interest because other people endorse it?

    • sotolf@programming.dev
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      I was excited by rust, back when it used sigils instead of box and other keywords, it was an exciting language, I had some fun with it, but it wasn’t ready yet, so I went having fun with some of the languages in its family (ocaml, F#) And when I went back to rust some years ago to write a little tool for myself (https://codeberg.org/sotolf/tapet-rust) to try it out, and it was really cumbersome, and ended up rather slow. I really don’t like the rust syntax, and yes, that is kind of shallow, but there are so many bad choices, like a ; not being there rather than a return, it just doesn’t work for me. Error handling is decent, just that it’s syntactically cumbersome unless you use a package like anyerror, there are packages, so many packages, and what you wanted to make that is just a small tool now has 2 Gb + of build artifacts. I later found out about nim, and rewrote the tool in it, and got a more stable faster tool in a 3rd less code (https://codeberg.org/sotolf/tapet-nim) And the way to work in nim just fits me so much better.

      The thing about the rust pushing people (They are funnily enough mostly people that haven’t really used it for much yet, but went into the hype) is not that they are exited about a language, sure I can get that, it’s the way they are pushing it, they talk down about other languages, demand people rewriting things in a language they are exited about, I don’t like the slow compilation and the huge stuff. It’s just not me. Don’t get me wrong I know it’s a good language, just too low level for what I (and most people really) need and it getting pushed for places where it’s not really suited, I don’t really think it’s a good thing. There is also this push for cleverness in their libraries and code, and cleverness in code is always a red flag to me. So it’s not you rust, it’s me.

      • confusedbytheBasics@beehaw.org
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 year ago

        This resonates with me. I love all the packages but yes the gigabytes downloaded to build something and the sheer time taken is not fun at all. Syntax is ugly IMO as well. It’s still my go to for strongly and statically typed languages in spite of everything though. Maybe you’re right about the hype train hitting me. :)

        • sotolf@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          maybe, at least it’s something to consider :) Now nothing wrong with liking the language if you do though :) just talking about my misgivings with it.