there is a rightwinger instance constantly showing up in my feed and blocking users/communities one by one is getting a bit annoying :/

  • manitcor
    link
    fedilink
    31 year ago

    im sure it would need some tweaks to how sync works but i think its completely possible for every user that wanted to have thier own instance, running right on thier phone if they desired.

    • @RGB
      link
      English
      3
      edit-2
      1 year ago

      deleted by creator

      • manitcor
        link
        fedilink
        English
        31 year ago

        same, but its not like its something that hasent been worked on intensely for the past 15 years or anything, using mechanisms that require a level of consensus we dont need the overhead of meaning higher throughput. We also dont have the read only write-forward problems that those systems have so we can simply leverage the very well refined P2P mechanisms they use, i bet if we go looking, we find one that has its p2p protocol implementation in its own github even.

        the thrust here is rather than diy, lets leverage work where billions have already been sunk.

        • @RGB
          link
          English
          2
          edit-2
          1 year ago

          deleted by creator

          • manitcor
            link
            fedilink
            English
            21 year ago

            so the way these work usually is 2 piece like old IRC away daemons. You have a headless instance that syncs what you care about on “someone elses computer” or just online all the time. That does the job of keeping up-to-date. Your phone and other devices do a secure connection to that device to get updates. what’s interesting about building it to just be the same kind of server is you can simplify deployment and apps (its all the rage anyway just look at a react app).

            so your device does not need to be online, you could run things like bots and have schedules and get just the deltas when you come online. This is also how private signing works today so the design and deploy pattern is well documented.