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

#Mastodon ha annunciato l’arrivo delle citazioni dei post.

News
44 15 2.4k

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    4 Posts
    13 Views
    @ErickaSimone I appreciate your help in making us more aware of these matters. I agree that these are important issues. I'll review that campaign more deeply next week. Again, thank you.
  • 0 Votes
    1 Posts
    9 Views
    Open vs. Closed: The Fight for a New InternetThe Story Behind — A federated internet is forming. It's built on open protocols like ActivityPub & connects services like Mastodon, Threads, Pixelfed, Tumblr, Wordpress and more into a connected network known as the fediverse. And everyone from tech enthusiasts to Mark Zuckerberg and Jack Dorsey seem to want in.📺 https://www.youtube.com/watch?v=R3ptZ1W-FRA#internet #history #openvsclosed #web #activitypub #mastodon #threads #video #yt #pixelfed #tumblr #wordpress
  • 0 Votes
    2 Posts
    16 Views
    How to use ATProto / Bluesky Blocklists After Bridging Your Mastodon Account Using BridgyFed:
  • 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.