• 0 Posts
  • 16 Comments
Joined 11 months ago
cake
Cake day: August 8th, 2023

help-circle













  • Thank you for sharing your linux journey!

    I’ve been toying around with linux since the old famous slackware distro!

    I have used Windows professionally, later switched to Mac, but my desktop (my main driver) has been linux for a long time.

    I run it the way I am most productive with it (yes, Gnome, don’t hate me, but liked xfce before that).

    I like the way everything is customizable, light weight and… free.


  • Aside from that I think C is more performant than C++ (indeed when you use the bells and whistles that C++ offers), you are comparing the libraries with each other.

    The fact that the implementation of one random std::Sort is faster than the implementation of qsort() is comparing libraries, not the languages. You are comparing the algorithm of the Rust Sort with quicksort (which is obviously the qsort you are referring to.

    I am certain there are sort implementations in C which outperform Rust.

    Having said that, I immensely enjoy Rust because it forces me to think about the error handling and it does not give me the quirks of C/C++ (index out of bounds, memory corruption).