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

Il nostro piccolo "simbolico" contributo per quest'anno!!!


Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 6 Votes
    1 Posts
    13 Views
    I've seen hints of backfill working really well, but hadn't seen good examples until recently. As more and more instances upgrade to the newer versions of Mastodon that support context, backfill from Mastodon instances will improve across the board. Today one of the most popular topics on my NodeBB instance was an update from the admin of The Forkiverse, a brand new up-and-coming instance. Despite following only one person from that instance, I was able to see every single reply from that instance, even from users I don't follow. Super stoked to see resolvable contexts and backfill working in the wild. Who says the Fediverse is quiet? Not me, anymore πŸ˜…
  • 0 Votes
    2 Posts
    11 Views
    da qualche giorno le emoji mi compaiono in B/N molto stilizzatesolo a me ? #mastodon #uno #mastodonuno
  • 0 Votes
    4 Posts
    29 Views
    @hush404 you may want to check out https://mastovue.glitch.me/ to explore the timelines of other instances (I have only tested it against Mastodon instances but it should also work with pixelfed instances). This could help you both find a different instance and other people to follow from your own.
  • 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.