Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

I joined #mastodon last week, on a whim, with no idea what to expect

Uncategorized
81 66 374

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    2 Posts
    5 Views
    Off to town later than I wanted to leave, but caught gorgeous scenes on the way.
  • Today is Milli’s Gotcha Day!

    Uncategorized cats gotchaday
    1
    1
    0 Votes
    1 Posts
    9 Views
    Today is Milli’s Gotcha Day! I’ll have to do nice things for her (once she emerges from her hiding place).#Cats #GotchaDay
  • 0 Votes
    1 Posts
    11 Views
    Our ActivityPub relay is back online! https://relay.disobey.net has been offline since moving our disobey.net Mastodon instance from Seattle to Amsterdam earlier this year. Sorry!If you're an admin of a fediverse instance, please join! Like with our other services, this relay is hosted on our own hardware and uses our own IPv6/IPv4 subnets under AS 396507 ^_^#ActivityPub #Mastodon #MastoAdmin #Pleroma #PleromaAdmin #Fediverse
  • 0 Votes
    1 Posts
    18 Views
    Mastodon has a concept called "pinned statuses", which is a special collection attached to a Person actor. https://docs.joinmastodon.org/spec/activitypub/#featured It wasn't readily known how this collection is updated and federated (not without code achaeology), but claire@social.sitedethib.com recently shared some additional info :smiley: The actor itself will issue an Add activity targeting the collection with the status in object. This activity is sent to all followers of the actor. No activity is sent if the actor has no remote followers. A Remove is sent when a pinned post is unpinned. This is what the Add looks like: { "@context": "https://www.w3.org/ns/activitystreams", "type": "Add", "actor": "https://example.org/users/testUser", "target": "https://example.org/users/testUser/collections/featured", "object": "https://example.org/users/testUser/statuses/115266412340579560" } The corresponding Remove is identical except for type, which is of course, Remove.