• 3 Posts
  • 93 Comments
Joined 2 years ago
cake
Cake day: June 14th, 2023

help-circle








  • Dude, the same people made nine parchments which got me and my friends through the pandemic. It’s such a good game and I don’t think we’ll ever get a sequel :(

    It worked for us because you could do combo co-op: my wife and I sharing a switch at our place, friends (also a couple) on their switch at their place.

    It’s a bit like a very simplified Diablo, with friendly fire. Minimal loot and a 5 6? I’m pretty sure it’s 6 color elemental system. Mostly achievement based unlocks. Has a permadeath mode where if you wipe as a party, you have to start the campaign over. Fun, whimsical art and the music ain’t bad either. My only real criticism is that they put so little effort into the plot I wonder why they bothered at all, but it does stay out of your way for the most part







  • Where I live (not the US) I’m seeing closer to $240 per TB for M-disc. My whole archive is just a bit over 2TB, though I’m also including exported jpgs in case I can’t get a working copy of darktable that can render my edits. It’s set to save xmp sidecars on edit so I don’t bother with backing up the database.

    I mostly wanted a tool to divide up the images into disk-sized chunks, and to automatically track changes to existing files, such as sidecar edits or new photos. I’m now seeing I can do both of those and still get files directly on the disk, so that’s what I’ll be doing.

    I’d be careful with using SSDs for long term, offline storage. I hear they lose data if not powered for a long time. IMO metadata is small enough to just save a new copy when it changes


  • I’ve been thinking through how I’d write this. With so many files it’s probably worth using sqlite, and then I can match them up by joining on the hash. Deletions and new files can be found with different join conditions. I found a tool called ‘hashdeep’ that can checksum everything, though for incremental runs I’ll probably skip hashing if the size, times, and filename haven’t changed. I’m thinking nushell for the plumbing? It runs everywhere, though they have breaking changes frequently. Maybe rust?

    ZFS checksums are done at the block level, and after compression and encryption. I don’t think they’re meant for this purpose.