How is Go not memory safe? Having escape hatches does not count, all the safe languages have those.
unique_hemp
joined 2 years ago
Due to the way Flatpak deals with nvidia drivers, you need to run flatpak update after any time the nvidia drivers update and you reboot the system. Thankfully you do not need to reboot after updating only flatpaks. Could not find a good source for this now, unfortunately.
As for the "why?" - flatpak apps do not contain the userspace parts of the nvidia driver required to use the GPU properly, they come packaged as separate runtimes. These nvidia driver runtimes need to match the specific driver version you are currently running. If they don't match, flatpak downloads the right runtimes when updating.
view more: next ›
That is a consequence of having parallelism - all mainstream pre-Rust memory safe languages with parallelism suffer from this issue, they are still generally regarded as memory safe. I don't know where you got that Java does not have this issue, you need to know to use the parallelism-safe data types where necessary.