Most of us on Lemmy are nerds in many ways, it’s part of why we’re on something like Lemmy as opposed to the more narcissistic social media platforms.

However many of us are cool sociable people, or extremely capable in something that others look up to us for, we just have nerdy hobbies or careers or tendencies, what are those traits or abilities that make others enjoy being around us or look up to us or would otherwise be described as “cool”?

  • Adalast@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    5 months ago

    I will take a look at Polaris. I started out in C and C++ years ago, so I all no stranger to strong typing. The Python devs have realized that there needs to be ways to add strong typing, so you can now explicitly type inputs and outputs to functions, which helps a lot. Also, there are places where other companies have implemented things in Python, so you are somewhat pigeonholed into using Python or reverting back to the C++ SDK for them, which can be a nightmare in its own right. Lucky for me I am the only one really touching the code I am working on and it is all bespoke, but someone will need to maintain it later so I have been taking to the strong typing in my recent work.

    I will have to take a look at Rust some more and see how it feels. Thanks for the analysis.

    • SorteKanin@feddit.dk
      link
      fedilink
      arrow-up
      1
      ·
      5 months ago

      If you’re familiar with C++ and C, Rust should be easy to learn. It’s basically just enforcing all the stuff you shouldn’t do in C/C++ - double free, too early free (dangling pointers), reading and writing to stuff from two different threads at the same time (data race). And at the same time modernizing the whole experience (actually useful compiler error messages, easy and convenient dependencies that “just work” without having to worry about a build system, in-built test system, etc.)