this post was submitted on 15 May 2026
62 points (98.4% liked)

General Discussion

14416 readers
86 users here now

Welcome to Lemmy.World General!

This is a community for general discussion where you can get your bearings in the fediverse. Discuss topics & ask questions that don't seem to fit in any other community, or don't have an active community yet.


🪆 About Lemmy World


🧭 Finding CommunitiesFeel free to ask here or over in: !lemmy411@lemmy.ca!

Also keep an eye on:

For more involved tools to find communities to join: check out Lemmyverse!


💬 Additional Discussion Focused Communities:


Rules and Policies

Remember, Lemmy World rules also apply here.0. See: Rules for Users.

  1. No bigotry: including racism, sexism, homophobia, transphobia, or xenophobia.
  2. Be respectful. Everyone should feel welcome here.
  3. Be thoughtful and helpful: even with ‘silly’ questions. The world won’t be made better by dismissive comments to others on Lemmy.
  4. Link posts should include some context/opinion in the body text when the title is unaltered, or be titled to encourage discussion.
  5. Posts concerning other instances' activity/decisions are better suited to !fediverse@lemmy.world or !lemmydrama@lemmy.world communities.
  6. No Ads/Spamming.
  7. No NSFW content.

founded 2 years ago
MODERATORS
 

Instances can go down, disappear or be unresponsive due to many reasons.

Go to your account settings now and export your account settings!

This file contains your subscriptions, follows, profile settings etc. It's very easy to start over on a new instance when you have your export file.

Back it up, export it, save it, repeat occasionally.

you are viewing a single comment's thread
view the rest of the comments
[–] vogi@piefed.social 2 points 23 hours ago (5 children)

How though? A website cannot just access your hard drive and write stuff, as far as I know.

[–] CombatWombat@feddit.online 1 points 16 hours ago

There’s a file api you can use to interact with the file system directly. Practically, I’m not sure how much it would help, since you could only access it with permission while the website is open, and there’s no way to sync between devices, but it is hypothetically possible to write a feature that backs up your settings periodically.

[–] Gnergy@piefed.europe.pub 2 points 23 hours ago (1 children)

Actually it can. Cookies, local storage … but using that for backups would certainly be an idea I haven't heard before.

[–] jaybone@lemmy.zip 2 points 19 hours ago

Plus it’s going to be a lot lire work to extract that when the website that wrote to it is no longer accessible. Easier to just click the backup button and download a file.

[–] gkaklas@lemmy.zip 2 points 23 hours ago

Mine is a 200kB text file (I imagine much smaller if compressed into e.g. a zip file), so it could just be attached in an e-mail 🤔

How about a desktop client?

[–] Axiochus@lemmy.world -2 points 23 hours ago (1 children)

Wait, doesn't every website do this? Or are there websites that only live in RAM?

[–] 4am@lemmy.zip -1 points 21 hours ago* (last edited 21 hours ago) (1 children)

No websites should be able to access anything on your hard drive arbitrarily.

Websites can ask the browser to store something in cookies, or local db storage; it can even say “here’s a file for download”. But it cannot just decide to place a download somewhere in your filesystem.

The browser itself is accessing your filesystem to read and write cookies, cache, etc. and the website has (rightfully so) zero control over that, other than asking permission and offering up a link to something the browser may to may not decide what to do with.

[–] Axiochus@lemmy.world 2 points 20 hours ago

Didn't claim arbitrary access, just writing to hard drive. But I see, so the browser is the mediating layer