• 0 Posts
  • 87 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle

  • I started paying attention in 2000, even though I didn’t really understand it and couldn’t vote, however my first voting election was 2004 and I remember being disappointed when John Kerry lost to Bush, who had already gotten us involved in two wars that would cost trillions of dollars.

    My experience has been that Republican administrations tend to be rife with corruption, cut taxes for rich people and run up the deficit.

    Eventually, people get sick of the moral decay and tanking economic prospects and put a democrat back in, who tries to undo all the damage, but is blocked most of the time by Republicans in Congress acting in bad faith.

    Then, the right wing media environment drums up a load of fear about immigrants and actual lies about the economy to get everyone voting for a Republican again.

    That’s the cycle, except the Republican media ecosystem gets more extreme over time, and so do the candidates.




  • Idk why people say “pay a premium”. MacBook Air is like $1000 bucks. Other laptops are also in this range.

    Also, you’re never going to spend a second worrying about making the thing work or fixing an error. Even Windows requires fixing problems and installing drivers sometimes. I guess it depends on how you value your time. I’ve spent hours on linux and windows troubleshooting. I’ve never spent a second on macOS.






  • Yeah, not using Quest. Trying to run an HTC Vive, which is pretty ancient at this point. In any case, I think the issue is I installed Steam via flatpak, but I guess it’s better to install it natively for VR. I’m sure I could technically get it running, but after putting a few hours into trying, I just gave up. Mostly just want to play Half-Life Alyx and after that I’m probably finished with the VR till some other killer game comes out.


  • I used Linux Mint originally. No issues at all with drivers there, worked perfectly. My main complaint was its kinda ugly and had limited UI configurability. It also was a pain to install certain apps, which weren’t available by default in the software manager. I tried a few other distros including Fedora and Elementary OS. Fedora was pretty nice. Elementary OS felt a bit dated looking and I was going to have to fix some UI issues to make it work.

    Finally, I gave Zorin OS a go and couldn’t be happier. It’s based on Ubuntu so pretty stable and just works, plus the UI is polished and it has a lot of built in ways to customize it, whether you’re from Mac or Windows background. It’s also really easy to install apps - flatpak and snap. I guess some on here would say it isn’t optimized for gaming, but shrug it works fine for me (aside from VR). The free version works completely fine, but if you want to support the devs and get some extra UI customization, you can donate for the pro version.

    I’m sure there are lots of other ways to do it, but my priority was to have something polished and easy to use without a lot of time spent tinkering. I’d rather spend my limited free time gaming.


  • phoneymouse@lemmy.worldtolinuxmemes@lemmy.worldEnjoy the moment
    link
    fedilink
    arrow-up
    20
    arrow-down
    1
    ·
    edit-2
    1 month ago

    I bought a steam deck and it inspired me to build a Linux gaming pc. Haven’t been in the pc world since windows 7. Dabbled a bit with Linux long ago. Well, it was a pretty smooth set up this go around. Everything just worked. I didn’t even need to find a driver for my GPU.

    The exception was a VR headset I tried to set up. I decided to install Windows on a separate HD just for VR games. When I did, I was shocked at how bad it is. I mean the UI and UX are dated and bloated, sure, but Windows couldn’t even detect my motherboards wifi. I had to boot in to Linux, download my WiFi drivers and then transfer them via USB drive to windows. Same issue with Bluetooth. I can’t believe in 2024, Windows doesn’t just work out of the box while Linux does.




  • Memory safety for one. C is very memory unsafe and that has been the source of a great, great number of software vulnerabilities over the years. Basically, in many C programs it has been possible to force them to execute arbitrary code, and if a program is running with root privileges, an attacker can gain full control over a system by injecting the right input.

    I have very limited knowledge of rust, but from what I remember writing memory unsafe programs is nigh impossible as the code won’t really even compile. Someone else with more knowledge can probably give more detail.