• 0 Posts
  • 39 Comments
Joined 11 months ago
cake
Cake day: August 2nd, 2023

help-circle





  • redempt@lemmy.worldtolinuxmemes@lemmy.worldbatman or man bat?
    link
    fedilink
    arrow-up
    39
    arrow-down
    1
    ·
    3 months ago

    I love it because software written in rust tends to be straight up better. because it makes it so easy to make your code parallel, because it makes it easy to be user friendly by design, people actually go that extra mile. because it’s so easy to pull in a dependency to do something you’d be too lazy to do in C, the tools can get a bit big but they tend to work really well. I’ll take a rust CLI app over a python CLI script any day, and I’ll especially take it over software written in C. most people don’t care as long as the tool works, but you can definitely feel the difference of the language it’s written in in its design and performance.




  • redempt@lemmy.worldtolinuxmemes@lemmy.worldSteam on Linux
    link
    fedilink
    arrow-up
    5
    arrow-down
    1
    ·
    3 months ago

    I’ve been able to play cyberpunk and the witcher in HDR, also elite dangerous. I have to use a separate tty where I launch gamescope, and have to boot with a patched kernel on a separate bootloader entry. It’s not ideal, certainly, but it does work and the experience is good once I did get it working.



  • nowadays archinstall will get you up and running nice and quick. I broke my setup the other day by misusing paru. I wish arch didn’t have this reputation. other than me uninstalling my own display manager it’s been perfectly stable through every update since I installed it years ago. the wiki has incredible amounts of digestible information that has helped me set up anything I want. it’s true that it can be more difficult than other distros, and there are some elitists. but it’s a good choice for people who like to tinker.








  • I’ve been installing a lot of things written in rust recently, and I’ve noticed a trend between them. They’re all stable, fast, and very user-friendly. I don’t really have to fiddle with them nearly as much. I think there’s a lot that goes into this, but it really boils down to: rust is safer and prevents huge categories of bugs, it’s incredibly stable and requires less debugging and maintenance, it has extremely high level abstractions to make development quick and less verbose, and it has the best tooling I have seen for any language. It enables developers so effectictively that the things that are usually tedious and difficult become easy and potentially mandatory, and so you just get better software.

    I know that sounds pretty abstract and opinionated, but having used the language for several years now, and especially coming from Java, I have really felt an incredible difference - I stopped having to constantly fix breaking Gradle builds and JVM version management, I stopped getting null pointer exceptions, and I had much more powerful tools for building abstractions. When you see how much control and power rust gives you while still keeping you safe, it’s just night and day compared to the especially old languages like C.

    Basically, anything written in rust will be better if it can enable developers to spend their time working on useful features instead of fixing bugs, fiddling with build systems and fragile legacy infrastructure cobbled together from dozens of third party tools.