this post was submitted on 25 May 2025
123 points (96.9% liked)

Technology

70305 readers
2854 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
top 39 comments
sorted by: hot top controversial new old
[–] underline960@sh.itjust.works 3 points 1 hour ago

In 2017, I helped develop key recommendations for planning your digital legacy. These include:

  • creating an inventory of accounts and assets, recording usernames and login information, and if possible, downloading personal content for local storage
  • specifying preferences in writing, noting wishes about what content should be preserved, deleted, or shared – and with whom
  • using password managers to securely store and share access to information and legacy preferences
  • designating a digital executor who has legal authority to carry out your digital legacy wishes and preferences, ideally with legal advice
  • using legacy features on available platforms, such as Facebook’s Legacy Contact, Google’s Inactive Account Manager, or Apple’s Digital Legacy.
[–] fubarx@lemmy.world 4 points 2 hours ago* (last edited 1 hour ago) (2 children)

A long time ago, I had the idea for a startup to keep digital material, including accounts, passwords, old documents, etc. in a digital vault that would be released to the next-of-kin when someone dies. It would also convert documents to newer formats so your old unpublished WordPerfect novel could be opened and read by the grandkids (should they choose).

Problem is, nobody would (or should) trust a startup with that material. This is stuff that should be around for many decades and most startups go out of business.

[–] PriorityMotif@lemmy.world 2 points 1 hour ago (1 children)

Bitwarden does all that. If you pay the subscription you get a GB of storage and delegate emergency access to other people.

[–] 4am@lemm.ee 2 points 1 hour ago

Does Bitwarden have emergency delegation now? I’d been waiting for it

[–] odelik@lemmy.today 1 points 1 hour ago

This could be a non-profit funded by participants and government grants.

[–] sbv@sh.itjust.works 42 points 5 hours ago (5 children)

Keep in mind that your descendents probably won't care about a huge majority of what you leave them. Photos annotated with a date, time, people in them, and an explanation, maybe, but generally my generation hasn't given a shit about the tonnes of books, music, photos, furniture, knick knacks, and antiquities bequeathed to us. It would be bizarre if our kids didn't maintain that tradition.

[–] FaceDeer@fedia.io 18 points 4 hours ago (2 children)

Bear in mind, though, that the technology for dealing with these things are rapidly advancing.

I have an enormous amount of digital archives I've collected both from myself and from my now-deceased father. For years I just kept them stashed away. But about a year ago I downloaded the Whisper speech-to-text model from OpenAI and transcribed everything with audio into text form. I now have a Qwen3 LLM in the process of churning through all of those transcripts writing summaries of their contents and tagging them based on subject matter. I expect pretty soon I'll have something with good enough image recognition that I can turn loose on the piles of photographs to get those sorted out by subject matter too. Eventually I'll be able to tell my computer "give me a brief biography of Uncle Pete" and get something pretty good out of all that.

Yeah, boo AI, hallucinations, and so forth. This project has given me first-hand experience with what they're currently capable of and it's quite a lot. I'd be able to do a ton more if I wasn't restricting myself to what can run on my local GPU. Give it a few more years.

[–] Dave@lemmy.nz 5 points 2 hours ago

I agree. I keep loads of shot that I'm hoping one day will just be processed by an AI to pick out the stuff people might want to actually see.

"People" includes me. I don't delete anything (when it comes to photos, videos, etc) and just assume at some point technology will make it easy to find whatever.

[–] 01189998819991197253@infosec.pub 3 points 2 hours ago (1 children)

You said you released it on your writing. How did you go about doing that? It's a cool use case, and I'm intrigued.

[–] FaceDeer@fedia.io 6 points 2 hours ago (2 children)

It's a bit technical, I haven't found any pre-packaged software to do what I'm doing yet.

First I installed https://github.com/openai/whisper , the speech-to-text model that OpenAI released back when they were less blinded by dollar signs. I wrote a Python script that used it to go through all of the audio files in the directory tree where I'm storing this stuff and produced a transcript that I stored in a .json file alongside it.

For the LLM, I installed https://github.com/LostRuins/koboldcpp/releases/ and used the https://huggingface.co/unsloth/Qwen3-30B-A3B-128K-GGUF model, which is just barely small enough to run smoothly on my RTX 4090. I wrote another Python script that methodically goes through those .json files that Whisper produced, takes the raw text of the transcript, and feeds it to the LLM with a couple of prompts explaining what the transcript is and what I'd like the LLM to do with it (write a summary, or write a bullet-point list of subject tags). Those get saved in the .json file too.

Most recently I've been experimenting with creating an index of the transcripts using those LLM results and the Whoosh library in Python, so that I can do local searches of the transcripts based on topics. I'm building towards writing up something where I can literally tell it "Tell me about Uncle Pete" and it'll first search for the relevant transcripts and then feed those into the LLM with a prompt to extract the relevant information from them.

If you don't find the idea of writing scripts for that sort of thing literally fun (like me) then you may need to wait a bit for someone more capable and more focused than I am to create a user-friendly application to do all this. In the meantime, though, hoard that data. Storage is cheap.

[–] notfromhere@lemmy.ml 2 points 1 hour ago

It sounds like something similar to RAG (retrieval augmented generation) or a database lookup. Are you storing the transcripts in a SQL like database or noSQL db or doing semantic similarity on any of it?

I was thinking of a similar project and building a knowledge graph for each person.

[–] 01189998819991197253@infosec.pub 2 points 2 hours ago (1 children)

That's awesome! Thank you!

If you don’t find the idea of writing scripts for that sort of thing literally fun...

I absolutely do. What I find as a potential showstopper for me right now, is that I don't have a nonintegrated GPU, which makes complex LLMs hard to run. Basically, if I can't push the processing to CPU, I'm looking at around 2-5 seconds per token; it's rough. But I like your workflow a lot, and I'm going to try to get something similar going with my incredibly old hardware, and see if CPU-only processing of this would be something feasible (though, I'm not super hopeful there).

And, yes, I, too, am aware of the hallucinations and such that come from the technology. But, honestly, for this non-critical use case, I don't really care.

[–] FaceDeer@fedia.io 4 points 2 hours ago (1 children)

I only just recently discovered that my installation of Whisper was completely unaware that I had a GPU, and was running entirely on my CPU. So even if you can't get a good LLM running locally you might still be able to get everything turned into text transcripts for eventual future processing. :)

[–] 01189998819991197253@infosec.pub 1 points 42 minutes ago

Nicceeeee! Thank you!

[–] turmacar@lemmy.world 17 points 5 hours ago (1 children)

I think it would be interesting to have some kind of global archive. Even if descendants don't care "now" has the potential to be the beginning of the best documented era in history. Historians would kill for photographs by random average people from any other time.

A lot of people thought that that's what the Internet would be, but that's obviously not the case. And I know the "right to be forgotten" is a thing, and deservedly so, but at some point you're throwing out the wine with the amphora.

[–] sbv@sh.itjust.works 4 points 4 hours ago

Doesn't archive.org provide that?

[–] catloaf@lemm.ee 17 points 5 hours ago (3 children)

Yup. My parents aren't even in ill health, let alone dead, but we recently took all the old VHS tapes, including a lot of OTA recordings, and a significant number of DVDs, and dumped them. Recordings of talking with relatives got digitized, same way you'd keep family photos.

I have no expectation that people keep my junk. I'll pass on a handful of stuff like identifying photos of people and places, but nobody wants or needs the 500 photos of my cat. Even I don't want that many, but storage is cheap enough that I don't bother to delete the useless ones.

[–] thejml@lemm.ee 3 points 1 hour ago

My wife’s parents recently passed. It took months to slog through their stuff and my wife was over it only weeks in. She dumped so much but constantly fights with herself for both taking more than she wanted/needed to and yet less that what she feels she should have. We’ve told our daughter multiple times “our stuff May mean a lot to us, it doesn’t have to mean anything at all to you. If you don’t want it, never feel bad dumping/selling/letting it go.” Out of all the stuff we all collect in life just by living, barely anything has any sentimental value.

On one hand I’ve got a huge collection of photos and albums I’ve taken and collected. I’m trying to clear some out as I go… but I’m not looking forward to that process when my parents go. My dad’s an avid photographer and I know he has a few hundred thousand photos, most of which are near duplicates and he rarely cleans them up.

[–] sbv@sh.itjust.works 9 points 4 hours ago

I'm trying to curate a few hundred photos for my kids. I've written a couple of bios of relatives. I'd like to record something like a story for them. If they want to trash it, that's fine, but at least there will be something meaningful for them if they want it.

Assuming it survives the climate wars. 🫠

[–] MegaUltraChicken@lemmy.world 12 points 4 hours ago

but nobody wants or needs the 500 photos of my cat

You only have 500 photos of your cat? Is your camera broken? Got the cat yesterday?

[–] Goretantath@lemm.ee 1 points 4 hours ago (1 children)

Pretty sure theyd love a literal metric shit ton of free and cracked content that fits ontop of their pinky nail.

[–] sbv@sh.itjust.works 4 points 3 hours ago

My kids aren't really interested in the movies I like. They actively avoid the music I listen to. I've gotten them copies of the books I love and they give up after a few pages. They get bored with the games I played as a kid.

My dad loves Zen and the Art of Motorcycle Maintenance, the Whole Earth Catalog, and Bruce Springsteen. I do not. If he wills me his copies, I will keep some out of guilt and then my kids will have to throw them away.

[–] Eggyhead@lemmings.world 1 points 4 hours ago (1 children)

Just think. At least you can sell off those nick-nacks. What value is there in digital goods you don’t want?

[–] sbv@sh.itjust.works 1 points 4 hours ago (1 children)

Nobody wanted my grandparents collected crap. Or their photos. Or their books. I tried giving them away. I tried consignment. I tried posting them on Facebook. Most ended up in a landfill.

[–] Eggyhead@lemmings.world 2 points 4 hours ago (1 children)

Hadn’t thought of it like that. I wish I could at least donate my digital library, though.

[–] sbv@sh.itjust.works 1 points 4 hours ago

Yeah - I'm totally for full, real, actual ownership of digital stuff, and we should be able to give it away.

But I'd be surprised if my kids would be interested in more than a tiny fraction of it. Or anyone else, for that matter.

[–] FreedomAdvocate@lemmy.net.au 15 points 5 hours ago* (last edited 5 hours ago) (2 children)

This is something that I've really been thinking about lately as I get older and my kids start to grow up. I've got 60TB+ of digital data, including all my families history of photos and videos digitized which are backed up to 3 separate cloud services, onenote filled with information, password managers filled with logins and details, etc, along with my Steam/Xbox/Playstation/Epic/GOG/etc accounts with 1000+ games on them.

I'm tempted to make a website/app to try and tie it all together in an easy way tbh.

[–] Flagstaff@programming.dev 1 points 1 hour ago (1 children)

backed up to 3 separate cloud services

Why so many?

[–] FreedomAdvocate@lemmy.net.au 2 points 1 hour ago

I already pay for storage for one of them for other reasons (M365), but I much prefer Google Photos as a service, especially for sharing photos and albums, so I pay for that too. The third is just some crazy good deal with "iDrive Photos" where it's $5/year for unlimited upload from my phone haha.

Also in case anything happens to one of my accounts, especially since one is tied to my Xbox account and I have kids.

[–] lectricleopard@lemmy.world 5 points 4 hours ago

If you do, make sure you build in a note taking/comment feature so they can track how its changed from what you've documented.

[–] CarbonatedPastaSauce@lemmy.world 12 points 6 hours ago (2 children)

My digital legacy is going in the dumpster, unless somebody figures out how to break encryption that I've never shared the password for.

Probate can figure out the rest.

[–] Goretantath@lemm.ee 4 points 4 hours ago (1 children)

Share me it, ill tell my ancestors theres valuable secrets hidden within and theyl crack it with their quatum computers.

You'd be very disappointed. Most of it is stuff you can get off usenet yourself, and the rest is documents and pictures nobody cares about but me.

[–] axEl7fB5@lemmy.cafe 6 points 5 hours ago (1 children)

Someday the hashes will be cracked.

[–] lectricleopard@lemmy.world 2 points 3 hours ago

It'll be possible. Whether someone will take the time and cost on are another question altogether.

[–] zephorah@lemm.ee 4 points 5 hours ago

Books, games, music should be willable, but they are not. That we allowed ourselves to reach this particular spot is just sad.

[–] grrgyle@slrpnk.net 2 points 5 hours ago

My plan is: baleted

[–] melroy@kbin.melroy.org 1 points 5 hours ago

I at least hope I will been remembered.

[–] Ilixtze@lemm.ee 1 points 5 hours ago

I am putting it on my will that before I die all my social media has to be marked as being one of the first really stupid AI Agents.