• 0 Posts
  • 15 Comments
Joined 1 year ago
cake
Cake day: August 8th, 2023

help-circle
  • Not to pretend I know it all, but have actively been using Linux on desktops and normal laptops for years now and I do have to agree.

    Those old Macs are actually quite hard to get working right (fans, touchpad etc).

    It is not impossible, but it takes quite an investment.

    But Macs aside, nowadays a lot of desktops ánd laptops install flawlessly though.














  • 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).