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

Voci di donne su Mastodon

Fediverso
36 14 102

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • Is mastodon acting weird?

    Fediverso mastodon techsupport fediverse
    2
    0 Votes
    2 Posts
    22 Views
    @zewm Hey - we turned off the local and federated feeds for #MastodonSocial, but if you want to keep access to it please reach out to the staff account. More info here: https://mastodon.social/@staff/116015299592234843
  • 0 Votes
    1 Posts
    6 Views
    SocialOntario.ca is a new Mastodon server for Ontarians and anyone connected to Ontario, Canada. https://socialontario.caYou can find out more at https://socialontario.ca/about or contact the admin account @Mathew #FeaturedServer #Ontario #Canada #Canadian #Mastodon #Fediverse #FreeFediverse
  • 0 Votes
    1 Posts
    8 Views
    Last night I dreamed that everyone on Mastodon decided to have a nice dinner together.We put all of the argumentative people together at one table so the rest of us could have peaceful meals at other tables. This will only make sense to people who have read and remembered this tweet, but in the future I am now tempted to tell troublemakers and reply guys to go back to their own table. #Dream #Mastodon
  • 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.