• 1 Post
  • 11 Comments
Joined 11 months ago
cake
Cake day: July 27th, 2023

help-circle





  • To be more mainstream granted it isn’t because of a shitty locked down distro incompatible with the others.

    What I love most abou Linux is its freedom. It doesn’t try screwing me over for their own benefit, gives me full control of the system and is broken down into components. Having the underlying system foss for many is great to provide and make it easier to adopt more ethical software for computing.







  • Performance? Not really no. I believe C is slightly faster with Rust and C++ competing for second place. The benefit is safer code as Rust is built with performance and safety in mind. It highlights what potential errors can be found where making human error way less common. Instead of potential null errors types are wrapped in an option enumerator which ensures you know there can be a lack of a value. Expections are also enumerators done similarly with a result object so you know which functions may fail. Instead of using memory and potentially forgetting to free it we have the ownership system.