• 0 Posts
  • 17 Comments
Joined 2 years ago
cake
Cake day: August 13th, 2023

help-circle


  • I have no idea if this is true, but it certainly fits the very strange vibe of the game.

    It’s like how I would imagine the most violent cops see the world.

    All people are awful. Every criminal is a heavily armed, highly trained, fearless lunatic, who does not care if they live or die, as long as there’s a tiny chance they can hurt more people. Civilians are uncooperative, ungrateful, and suicidal.

    Every deployment, no matter how routine, will likely lead you into an ambush by dudes with assault rifles.

    Avoiding bloodshed is almost impossible and even trying is likely to get you killed.


  • The game has some of the strangest bugs.

    The last time I tried to play, I had no UI at all, but only in multiplayer. It worked fine in single player, but if I joined or created a multiplayer game, the whole HUD was just gone and nothing could make it appear.

    That’s really the only time I’ve tried to play it since 1.0, and I’m not going to blame them for bugs in early access. But loosing the mission after the last civilian (Daniella Voll) managed to trap two officers in a bugged closed and slap us to death was as infuriating as it was hilarious.


  • I dream that the reason AMD delayed their launch and are being so cryptic, is because they saw how underwhelming the 5080 was and decided to make a card (perhaps a 9070 XT) that matches its performance at the price of a 5070 or something.

    Now I don’t think that will happen. Their previous market strategies have been very uninspired. But there’s certainly an opening here to make a play for market share and make Nvidia look like greedy fools.









  • This is likely because docker runs Linux in a VM on MacOS right?

    We’ve had similar problems with stuff that works on the developers Mac but not the server which is case sensitive. It can be quite insidious if it does not cause an immediate “file not found”-error but say falls back to a default config because the provided one has the wrong casing.


  • Well completion-ignore-case is enough to solve this particular problem, the other options are just sugar on top :)

    I’m going to add completion-prefix-display-length to these related bonus tips (I have it set to 9). This makes it a lot easier to compare files with long names in your tab completion.

    For example if you have a folder with these files:

    FoobarSystem-v20.69.11-CrashLog2022-12-22 FoobarSystem-v20.69.11.config FoobarSystem-v20.69.12 FoobarSystem-v20.69.12-CrashLog2023-10-02 FoobarSystem-v20.69.12.config FoobarSystem-v20.69.12.userprofiles

    Just type vim TAB to see

     ...1-CrashLog2022-12-22   ...1.config   ...2   ...2-CrashLog2023-10-02   ...2.config   ...2.userprofiles
    $vim FoobarSystem-v20.69.1
    

    GNU Readline (which is what Bash uses for input) has a lot of options (e.g. making it behave like vim), and your settings are also used in any other programs that use it for their CLI which is a nice bonus. The config file is ~/.inputrc and you’d enable the above mentioned options like this

    $include /etc/inputrc
    
    set completion-ignore-case on
    set show-all-if-ambiguous on
    set completion-map-case on
    set completion-prefix-display-length 9