• 0 Posts
  • 22 Comments
Joined 1 year ago
cake
Cake day: February 10th, 2025

help-circle






  • This is about the criminal trial of the hacker, so Exxon can’t hide it with a settlement.

    And also, the headline is clickbait because the article references a filing in the UK courts which provided information from the sealed indictment.

    With Forlit potentially facing up to 45 years in prison, his lawyer referenced the then-sealed justice department indictment and named the alleged client for the first time, in a filing arguing against his extradition from the UK: “The hacking is alleged to have been commissioned by DCI Group, a lobbying firm representing ExxonMobil, one of the world’s largest fossil fuel companies.”







  • To add to this, the compile time is usually in the range of a few ms each but often when you need to compile a new shader it’s because a new entity appeared and there are likely several new shaders associated with that entity that you have to compile at once, so you could see a 100-200ms delay on the rendering for larger jobs.

    Often times if you change settings you’ll trigger recompilation of some shaders. This can result in worse performance which people often attribute to their setting change (so they revert it/change it some more, triggering more shader compiling). So, make sure you play a bit once you’ve changed settings before judging the performance.

    Using something like MangoHud which displays CPU/GPU load and frame time graphs (and about a million other customizable things) you can generally see when you’re having shader stuttering. Some games (Path of Exile 2, for example) have in-game performance monitor tools which will specifically tell you when shaders are compiling and how many are in the queue.






  • That was 2 hours-ish that could have been just 5 minutes if the system had actually told me it was having problems with connecting to a drive.

    It did, it almost certainly wrote the error into the system log. That’s generally the first thing you should check if you’re having such low-level problems, like a failure to boot.

    Going forward some good advice is: Get a USB stick, install Ventoy and put a system rescue image on it: https://www.system-rescue.org/

    This way, if you’re ever having issues booting you can boot into a live environment and read the logs.

    If you mount your system drive on /sysroot, you can read the system log with

    journalctl --root=/sysroot
    

    Add a -b flag to see just the log from the latest boot (and -b -1 from the previous, -b -2 from the one before, etc)