GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by Hrefna (DHC) (hrefna@hachyderm.io), page 3

  1. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Sunday, 29-Dec-2024 02:08:45 JST Hrefna (DHC) Hrefna (DHC)
    • aburka 🫣

    @aburka [everybody disliked that]

    In conversation about 5 months ago from hachyderm.io permalink
  2. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:19:32 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    One could also envision a series of redirects.

    My information is stored on server <foo> but all of my canonical ids reference hrefna.dev/whatever.

    Why? Because I'm proxying the calls over to a backend server that I reserve the right to change in the future.

    There are a thousand things you can do from here, but basically we now have a basic lightweight framework for a scalable, message-passing-based social network.

    10/10

    In conversation about 5 months ago from gnusocial.jp permalink
  3. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:17:46 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    Now it does not matter if the same actor serves multiple users, or multiple inboxes for a user, or whatever else. It does not matter if they are all distinct actors that then forward their information to a central actor that then fans them out to other servers entirely.

    What matters is that you fetch the user object from a canonical store and it tells you where the actors live and information like how to fetch posts from this person.

    9/

    In conversation about 5 months ago from hachyderm.io permalink
  4. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:15:52 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    Now what about the user?

    Users do not exist in the message layer. They _are not actors_.

    Rather they _contain_ actors.

    You get the user information from anything. DNS, a credentials server, I don't care about that for right now, but it has on there an inbox object, or maybe multiple named inbox objects, and they have actor _references_ (see above) that you can now send messages to.

    8/

    In conversation about 5 months ago from gnusocial.jp permalink
  5. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:12:05 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    (nb. I am cheating a bit with terminology, technically this would be a _service layer_ not a data layer, but data layer is cleaner for what we're talking about and I don't want confusion with the message layer).

    The core here is that this is a single, paginated request that fetches _objects_ or _payloads_. The type can be content negotiated with HTTP, it can use different wire formats, all of that is less important.

    7/

    In conversation about 5 months ago from hachyderm.io permalink
  6. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:07:44 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    The data layer is responsible for serving the payloads of objects.

    We _could_ have Bob go to alice and systematically call each message in a row, but that's a waste of time and energy.

    Better would be to provide a single endpoint on the server where I can say "give me all objects from Alice that were sent to Bob or are marked as:Public starting with id <foo>"

    This may be attached to Alice directly but it doesn't have to be: it could be a generic per-server endpoint.

    6/

    In conversation about 5 months ago from gnusocial.jp permalink
  7. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:04:49 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    So now we have a message passing system and an actor reference. Cool.

    But what does a user look like? How about a server? What about these payloads?

    Well. For that we need a _data layer_.

    5/

    In conversation about 5 months ago from hachyderm.io permalink
  8. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:02:52 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    Now when someone goes to the server's canonical URI you'll get a full AS2 object (or whatever) in some normalized form. The details don't matter so long as the canonical_uri matches the id.

    So you can see how this starts to develop:

    Alice sends Bob a message saying that she created a Note (1).
    Alice sends Bob a message saying that she created a Note (2).
    Alice sends Bob a message saying that she created a Note (3).
    Alice sends Bob a message saying that she updated a Note (1).

    4/

    In conversation about 5 months ago from gnusocial.jp permalink

    Attachments


  9. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 03:00:18 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    _Messages_ are ephemeral, immutable objects that contain the following information:

    1. An incrementing id that is unique per server.
    2. A server.
    3. A URI for the _payload being referred to_.
    4. A type.
    5. Any routing information.

    So I could say:

    Create {
    id: <uuidv7>
    server: <uri>
    canonical_uri: <uri>
    from: <originating user>
    to: [<list of users>]
    }

    That's it. No payload. There are other fields that may be interesting here, but we're being a bit minimalist.

    3/

    In conversation about 5 months ago from hachyderm.io permalink

    Attachments


  10. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 02:56:38 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    First, let's define a _message layer_. Here we have a concept of an _actor reference_.

    An actor reference has:

    1. An inbox.
    2. A URI id that just returns this reference object.
    3. A structured type field, indicating what class of messages it takes and some basic behaviors around it. This can be simple or relatively complex

    These are functionally immutable references. A _user_ is a distinct concept and may change actors around at any point. They can also refer to a central actor via DNS

    2/

    In conversation about 5 months ago from hachyderm.io permalink
  11. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Saturday, 28-Dec-2024 02:52:46 JST Hrefna (DHC) Hrefna (DHC)

    Some theorycrafting for a social network that is _like_ AP-derived systems, but is not based on AP.

    First, some premises:

    1. I am following a traditional actor pattern here. When I say "actor" I do not mean "AP actor" but rather an object with an inbox and a name that has some black box mechanism behind it.

    2. I am _not_ discussing security or half a dozen other things that would be vitally important for a full proposal.

    3. I am very, very rarely going to be discussing payload.

    1/

    In conversation about 5 months ago from hachyderm.io permalink
  12. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Thursday, 26-Dec-2024 13:22:32 JST Hrefna (DHC) Hrefna (DHC)

    Ugh. Reminded today why I decided to post less on mastodon.

    Too much in loco parentis and too little willingness to examine what that means. There are some very good people doing great work in this space, but the state right now is not good, and will remain not good for a while to come.

    In conversation about 5 months ago from hachyderm.io permalink
  13. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Monday, 23-Dec-2024 09:58:34 JST Hrefna (DHC) Hrefna (DHC)

    Success! Managed to get through dinner with my parents without:

    * Saying "ok boomer" at any point.
    * Telling them why I "don't call them" in no uncertain terms
    * Rage quitting

    All and all a solid victory.

    In conversation about 5 months ago from hachyderm.io permalink
  14. Embed this notice
    Wade Wainio (wadewainio@mastodon.social)'s status on Friday, 20-Dec-2024 23:43:07 JST Wade Wainio Wade Wainio
    • God :verified:

    @godpod Transgender characters in animated films also help to normalize conversations about gender identity, and conservatives genuinely fear movies can turn them and their families LGBT. Idiots.

    In conversation about 5 months ago from mastodon.social permalink Repeated by hrefna
  15. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Friday, 20-Dec-2024 12:57:39 JST Hrefna (DHC) Hrefna (DHC)

    @jdp23

    In conversation about 5 months ago from hachyderm.io permalink

    Attachments


  16. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Friday, 20-Dec-2024 12:56:40 JST Hrefna (DHC) Hrefna (DHC)

    @ireneista heh, for chat purposes I suspect this quickly runs into essentially an incompleteness theorem unless you have a structured way to engage in a dialog (handshake) about it.

    Which at some point starts to look like "can I program a computer to engage in NLP with another computer about something that someone else is saying about something that may only partly be happening where a computer can see it"

    In conversation about 5 months ago from hachyderm.io permalink
  17. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Friday, 20-Dec-2024 12:45:05 JST Hrefna (DHC) Hrefna (DHC)

    @ireneista basically yes ^^

    In conversation about 5 months ago from hachyderm.io permalink
  18. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Friday, 20-Dec-2024 12:35:37 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    So you have a language that is here to map concepts around, that people aren't using correctly, and that has no true method of communicating the _metamodel_ between groups, and no way to establish that two groups mean the same thing, and no way to even engage in meta-communication to explain what is happening.

    How is this supposed to work for a social networking protocol? At all?

    8/8

    In conversation about 5 months ago from gnusocial.jp permalink
  19. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Friday, 20-Dec-2024 12:32:54 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    Communication is _incredibly_ complex, and here we have something that essentially is designed to map concepts using a variation on _English_ with English thoughtforms and terminology.

    This is not how you build a protocol. It also isn't how you build a database. It isn't how you represent thoughts in a way that others will understand at all…

    …at least without a previously communicated shared context.

    7/

    In conversation about 5 months ago from hachyderm.io permalink
  20. Embed this notice
    Hrefna (DHC) (hrefna@hachyderm.io)'s status on Friday, 20-Dec-2024 12:30:11 JST Hrefna (DHC) Hrefna (DHC)
    in reply to

    Someone comes charging up like the coolaid man: WELL ACTUALLY YOU CAN DEFINE YOUR OWN EXTENSIONS AND…

    Which is what we did for content warnings, right?

    We have a long, rich history of NOT DOING THAT EXACT THING here and then just sort of living with the consequences of not doing that thing.

    Let alone cases where we simply don't agree on how they "should" be used (replies coming immediately to mind).

    6/

    In conversation about 5 months ago from gnusocial.jp permalink
  • After
  • Before

User actions

    Hrefna (DHC)

    Hrefna (DHC)

    SRE at Google. Queer. Poly :potionpolyamory: Trans :verifiedtrans: :nonbinarypotion: Engineer. Ace :flagace: Member of AWU-CWA. #ActuallyAutistic :rainbowinfinity: #UnionStrongOpinions my own. Does not suffer fools gladly.

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          105361
          Member since
          8 Mar 2023
          Notices
          1011
          Daily average
          1

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.