Skip Navigation

Posts
0
Comments
115
Joined
2 yr. ago

  • Is the right photo real? I can't believe how my country keeps blindly supporting Israel...

  • Same thing applies to coffee maker / espresso machine tanks. I found a nasty surprise in mine recently...

  • I once discovered that my moka pot had an industrial grease stuck to it in an area that is almost impossible to clean. I used it so many times before finding that out...

  • Deleted

    Permanently Deleted

    Jump
  • SpaceX has loads of capable engineers. If NASA gets a massive budget increase, they need to draw from that pool of talent.

  • Discord sure does feel like a 0.0.x version

  • Deleted

    Permanently Deleted

    Jump
  • Even if meth was chemically identical to ADHD meds, the argument still wouldn't hold. Anything that lessens people's symptoms without creating even more problems can be a medication.

  • Disabling it entirely is possible, but I want to keep the encryption and set a proper password for it instead of the stupidly long recovery key. That and similar features seem to be locked behind the pro version.

  • I can't even adjust bitlocker settings on my laptop's windows 11 home Installation...

  • Francis tried to be a decent person, but the organization he supports has an ungodly amount of money and outreach which aren't being put to good use. Christianity could do so much more to help, they just choose not to.

  • I use Fedora KDE, and I don't think ive ever seen crashes that bad on my system (AMD CPU and GPU). I used to have a small problem with RADV crashing during video playback, but that solved itself after a few updates.

  • I wish I could delete that partition for good, but my computer grqphics professor forces me to write code for DirectX instead of Vulkan.

  • The economy should exist to serve real needs of the people. All that advertisement does is create a fake desire for consumption which simply wastes respurces.

  • My swiss army knife's mechanism has been completely seized up for years now. I hate that there is no obvious way to take it apart for cleaning.

  • C++

    Jump
  • Fair point.

  • No self-respecting UI designer would ever want to work on that dinosaur of a codebase. The GIMP team is simply unable to do what Blender did, even if they made the UI their number one priority.

  • Isn't C just wonderful?

  • C++

    Jump
  • The worst thing you can do in non-unsafe Rust is perform an out-of-bounds indexing operation, or anything else that panics. The error you get tells you the panic's exact location in the source code, down to the line and column. Meanwhile, C and C++ either don't produce an error at all when accessing uninitialized memory (which is arguably the worst behavior), or it segfaults with zero extra info.

    The only way to make Rust segfault is by performing unsafe operations, and those must always be clearly marked.

  • C++

    Jump
  • Except that many other languages have proven that C++ is simply terrible at providing meaningful errors.