• 0 Posts
  • 9 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2025

help-circle

  • I played splitgate 1 and 2 since the beginning (and I am still checking it out sometimes).

    My feeling is that they launched too early and they wasted too much time on their battle royale mode, probably trying to attract compulsive spenders kids.

    Linux got added shortly after launch, before BR got added if I remember right, which is fair for a beta/early access. But IMHO it went out of beta way too quickly, before they fixed many of the complaints. When they realized they fucked up, they went back into beta and tried to relaunch later (weird move, and probably turned off many of the remaining players).

    IMHO the game problem is that they made it revolve a lot around BR, with not enough map variety for normal arena modes. They clearly wanted BR to be the mode everyone plays most. The arena maps had a distinct lack of portal surfaces, and BR was also weird with a limited amount of portals available, which defeats the game’s selling point. The fans of the game also wanted an arena shooter, not another fortnite.

    Nowadays arena is much better with more maps (they brought back some of the splitgate 1 maps), progression is no longer locked in strange ways and more modes are there.

    It’s a shame they failed so badly that they had to lay off people.




  • I agree! On gentoo even if you do manage to break your system you’d also know how to fix it (since you basically spent days installing it by hand…).

    I ran it on my pc for a few years and the only source of breakage were nvidia drivers (in the past they sucked possibly even more). I remember running it using VESA drivers for like a week until I figured out how to fix it.

    It’s really nice how much you can customize it and make it really fit your own use-case. I once ran it in a fully offline raspberry pi for 5-10 years (without updates) and it was rock solid. The hard disk it ran on and the power adapter died, but the sd card was mounted read-only so it lasted the full 10 years without any corruption. I kept a backup of the root filesystem on the sd-card so restoring it to a new disk was super-easy. I also ran the hdd in btrfs raid-1 mode with a itself (two partitions), so that it could self-recover from random corruption due to power losses (I’m not sure it’s a good idea, but it never caused any trouble) It was just running 1 service and that’s it, without any monitor or keyboard connected. I even made a small program with a single-key interface to run admin commands directly without needing a screen or any login (press “b”=reboot, “s” for btrfs scrub, for example). Trying to customize, say, an ubuntu like that would have been a nightmare. It took forever to compile everything on the raspberry pi though.



  • The trick for windows is to rename the file and kill the process that’s using it / reboot (if it’s some unkillable service). The service won’t then be able to find the file after reatarting and you can delete the renamed copy.

    On linux this whole thing is done automatically by the OS: if a file is open and you delete it, it will disappear from the folder but its data won’t actually be deleted from the disk until it’s closed by every program. Some programs even use this trick to create invisible temporary files to offload some data from RAM to disk!