Just this guy, you know?

  • 0 Posts
  • 60 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle






  • No, that’s literally how this works.

    If you don’t like an ActivityPub participant you block it. It’s in the architecture.

    And given the current fediverse is already a tiny fraction of total social media activity, if a bunch of anti-Threads instances hive off to form their own fediverse subgroup, it’ll basically be a no-op from their perspective. They’ll just keep talking to each other off in a little corner by themselves just like they’re doing today. That’s kinda the whole damn point of a federated architecture.


  • Cool, so pick an instance that plans to defederate with them and you’re golden.

    Personally, I think all the anti-Threads stuff is paranoid rhetoric and I’d rather see how it pans out. My instance admin agrees so we’ll see how it goes.

    Point is you can choose because that’s the entire point of the fediverse. And it’s why I don’t understand why folks are expending so much energy writing paranoid pieces on this topic when they could just defederate and move on.



  • zaphod@lemmy.catoSelfhosted@lemmy.worldShould I move to Docker?
    link
    fedilink
    English
    arrow-up
    20
    arrow-down
    11
    ·
    edit-2
    11 months ago

    My vote: not if you can avoid it.

    For casual home admins docker containers are mysterious black boxes that are difficult to configure and even worse to inspect and debug.

    I prefer lightweight VMs hosting one or more services on an OS I understand and control (in my case Debian stable), and only use docker images as a way to quickly try out something new before commiting time to deploying it properly.





  • By your definition of harm, no artist creating non-material goods (books, movies, music, etc) could ever experience harm due to any one individual’s actions. “I was never going to pay, so taking it without paying is a victim less crime,” etc, etc.

    The problem is this is clearly harmful in aggregate.

    There are countless actions that, on an individual level are relatively harmless that we deem immoral because they’d be harmful if everyone did them: e.g. polluting.

    But setting aside issues of harm–which is absolutely utilitarian–there are also many actions for which no objective “harm” can be identified but which we still deem inherently immoral. For example, if someone cheats on their spouse, and the spouse never finds out, most people I know would say that action is immoral irrespective of the lack of direct harm.

    As for your last question, tbh I have no idea.






  • zaphod@lemmy.catoSelfhosted@lemmy.worldUncommon Syncthing usecases
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 year ago

    No it doesn’t.

    Syncthing only needs to remember the current state of the files/folders it’s syncing. Not everything it’s every sync’d.

    It does that by either periodically scanning the filesystem to look for changes since it last scanned (based on the file creation and modification dates that are stored in the filesystem), or it registers with the operating system to receive events when files are created, modified, or deleted.

    When Syncthing notices a create, update, or delete, it pushes those changes to the receiver and then updates it’s record of the filesystem state accordingly.

    It also pushes whole files, not deltas. So it doesn’t care how the files changed, only that they did.

    Even with hundreds of thousands of files to sync this is a relatively small amount of state as it’s just file paths and their create/modify dates.