she/her

  • 7 Posts
  • 619 Comments
Joined 1 year ago
cake
Cake day: August 3rd, 2023

help-circle


  • Use that, but only for the handful of passwords that you

    a) need to remember regularly, even when you don’t have access to your password manager b) need to be really secure

    I’d say email and banking are the obvious ones. For everything else, rely on a good (self-managed, open source) password manager. Sure, a passphrase beats any human-memorable password, but it doesn’t stand a chance against my 250bit entropy machine generated passwords. And thanks to KeepassXC I never have to type any of them. And sure, you can secure your password manager’s database with a passphrase, if you’re so inclined




  • No, it’s not. There are ways to recycle parts of the fuel rods, true, but not the thousands of tons of contaminated material that inevitably gather during operations and end-of-life of a reactor. You don’t honestly think that the only dangerous waste are spend fuel rods?

    And yes, the very problem is that storage needs to take place over geologic timescales. I can’t guarantee that our government will exist 20 years from now, much less 2000. Waste storage so far was managed so corruptly and incompetently that it is already failing after 50 years. Forgive me if I have little faith whenever someone claims that they’ll just dig a hole and forget about it for a few millennia. The waste sites need maintenance, and if that ever ends might poison a region’s ground water in perpetuity.















  • For me it’s probably the way I self-host overleaf, a online LaTeX editor. The community version has a docker image that’s horribly maintained (because they want to sell enterprise, I reckon), and instead relies on a horrendous amalgamation of setup scripts that wrap docker compose.

    What I have is a Dockerfile that pulls the image, manually installs a second version of TeX with the right dependencies, unlinks the old one and links the second one. Then for the database, it uses Mongo replsets, which be to be manually initialized. So I wrote a health check for the container that checks if the repl set is initialized, and if that fails the health check initializes it.

    It’s horrendous, it’s disgusting, and it’s an all-in-one compose file to get overleaf running. Good enough.