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”?

  • @SorteKaninA
    link
    15 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.)