Err(()).unwrap()

Partisanship is a cancer. Inaction is a choice.

Singular they. Or whatever you like, I won’t take offence.

  • 29 Posts
  • 1.95K Comments
Joined 3 years ago
cake
Cake day: June 24th, 2023

help-circle

  • I think it was either a Miniminuteman or a Folding Ideas video that showed what some flatties proposed: the Sun moves in a wacky repeating spiral pattern above the surface. It’s closer to the Arctic during summer and to the Antarctic during winter, which they claim to explain the different angles of incidence. Obviously that doesn’t conform to any physical laws… observed phenomena… ideas that a person of ordinary intelligence might come up with… their own models of flat Earth… but flatties are nothing if not persistent in their dogmatic rejection of reality.



  • Don’t even get me started on fucking Gigabyte. With all my heart,

    FUCK GIGABYTE.

    It is the single worst manufacturer I’ve ever had to deal with in both a personal and professional capacity. We’ve had to RMA half a classroom over the last two years because of busted motherboards. In separate incidents, two power supplies violently self-destructed and took the motherboards and CPUs with them. My own Gigabyte 2060 Super’s fans had to be replaced within two years because the bearings were crap.

    Worse, even the motherboards that didn’t mercifully explode are a fucking chore because Gigabyte’s UEFI implementation is the worst on the fucking planet. No two versions work alike. Some options are in completely different menus. Sometimes CSM or SecureBoot are busted out of the box. If PXE is enabled (which we have to use frequently), it will ALWAYS put PXE at the start of the boot order. And if it can’t connect to a PXE server, it doesn’t fall back to the next boot option. It gracefully shits itself and sits on an error message until someone manually restarts it and interrupts the process.

    Fuck Gigabyte.





  • If you want to dual-boot Windows and Linux, I strongly recommend that you install them on separate devices, and physically disconnect your Linux device. It’s a pain in the ass, but Windows Update has a particular appetite for bootloaders and will eventually eat whatever you have on your EFI partition (including the Linux kernel and ramdisk) and replace it with its own.

    Otherwise, you can use Chris Titus’ winutil script to delay or completely disable updates, and also to debloat the system and disable anti-features like telemetry and the start menu search.

    Not sure if this applies to LTSC, but if you can, install a European edition of Windows (-N suffix) and set an EU location and timezone, it will allow you to more easily uninstall components because of EU regulations.



  • Pray tell, how do you think “they” should optimize game assets? People who have zero experience in game development love to talk about “optimization” like it’s a slider in the options or some challenge that can be solved by throwing resources at it. Modern compression algorithms like Oodle are about as performant and artifact-free as mathematically possible. Everything beyond that is a trade-off between quality, size, and performance.

    But are you thinking about it in abstract? Would you prefer a game to have occasional pop-in, stutter issues, and CPU spikes in exchange for a smaller size?

    (edit) Before you say it, I know there are relatively low-fidelity games that run like ass. Those are usually caused by poorly written game logic or shader codes, which can be refactored, but won’t have an effect on file sizes.


  • Err(()).unwrap()@lemmy.worldtoGreentext@sh.itjust.worksAnon likes bikes
    link
    fedilink
    arrow-up
    11
    arrow-down
    2
    ·
    edit-2
    7 days ago

    Don’t know if you’ve heard of the concept, but it is possible to own both a car and several bikes and use the one most suited for the task. I know it can be a daunting challenge for people like you to conceptualize a reality that isn’t based on binary extremes, but stay with me: you take your bicycle for short trips and commutes within the city, but use a car for occasional 400-mile trips. You can even take your bicycle with you in the car if you want to be really woke.

    Mind-blowing, am I right? Apologies if this revelation has caused your worldview to collapse.


  • As others have said, Tailscale is the most pragmatic solution. It’s a mesh VPN based on Wireguard. It’s implemented in such a way that you don’t need a static IP and don’t need to open any ports on your firewall. The caveat is that you either need to register an account on tailscale.com (it’s free for small-scale use) or set up a self-hosted alternative like Headscale on a VPS. Then you have to install the Tailscale client on each of the hosts you want to access and log into your account.

    Tailscale nodes will be accessible using an internal, private address in the 100.64.0.0/10 address space. You can also set up a split DNS that allows you to access your hosts using a DNS name like hostname.your-tailnet-name.ts.net.






  • Steam doesn’t ship flatpak-packaged games themselves, but games launched from Steam’s flatpak version inherit the runtime environment. This is why you need, for example, to install separate flatpak releases for Mangohud, Gamescope, or various Vulkan things.

    Running Steam-flatpak can sometimes resolve compatibility issues, since it has greater control over which package versions to use compared to native, system-level packages. Arch and Debian-based systems can have wildly different package versions, but if a flatpak app pins a particular version of a dependency, it will always install and load that regardless of the OS packages.

    It’s also important to note that Steam Linux Runtime also uses technologies that were originally developed for Flatpak, particularly container/sandboxing wrappers like Bubblewrap.


  • Err(()).unwrap()@lemmy.worldtoGames@lemmy.worldI Hate Native Linux Games
    link
    fedilink
    English
    arrow-up
    41
    arrow-down
    7
    ·
    edit-2
    9 days ago

    People who downvote because “hurr durr linux best” but have never had to support a cross-platform application should read Raiguard’s experience of maintaining Factorio’s Linux-native build: https://factorio.com/blog/post/fff-408

    “Why don’t most games support macOS and Linux?” is a sentiment I often see echoed across the internet. Supporting a new platform is a lot more than just changing some flags and hitting compile. Windows, macOS, Linux, and the Nintendo Switch all use different compilers, different implementations of the C++ standard library, and have different implementation quirks, bugs, and features. You need to set up CI for the new platform, expand your build system to support the new compiler(s) and architecture(s), and have at least one person on the team that cares enough about the platform to actively maintain it. If you are a video game, you will likely need to add support for another graphics backend (Vulkan or OpenGL) as well, since DirectX is Windows-exclusive.

    I support every solo and small-team developer who prioritizes making the game over maintaining a completely different platform build.