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

Hello, my alias is Jupiter.

Fediverso
2 2 12

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    11 Views
    I've gone live!Fireside Fedi - Episode 52 - Kit Aultman - Owncast Newsletter, Roller Derby Ref#owncast #streaming #interview #fediverse #fedi #people #show #firesidefedi #FsFhttps://stream.firesidefedi.live
  • 0 Votes
    1 Posts
    11 Views
    Z veseljem sporočamo, da so #fediverse projekti spet dobro pokriti z #NGI0 financiranjem. Med 29 projekti, ki so bili izbrani na 6. sklicu #NGI0 Skupnostnega fonda jih je 5 povezanih s fedimirjem:- #flohmarkt - federiran samogostiteljski spletni bolšji sejem- GoActivityPub - zbirka orodij za razvoj #ActivityPub aplikacij v #go programskem jeziku- #Drupal ActivityPub recepti- #Mirlo - platforma za podporinje umetnikov dobiva AP podporo- #Hubzilla Vsi projektihttps://nlnet.nl/news/2025/20251016-selection-NGI0CommonsFund.html
  • 0 Votes
    1 Posts
    13 Views
    Since the influx of Blue Sky and Twitter users, Mastodon Dot Social had unfortunately — but temporarily — experienced a few Nazi accounts, all of which have since been removed. However, a few individuals are now wrongfully claiming that the Fediverse is no different, simply because a few bad individuals managed to make it here. What they’re choosing to ignore is the key difference: those accounts were dealt with and rightfully removed. The fact that they weren’t caught immediately does not support the implications being made. 🙄Haters are going to hate. 🤷#Fediverse #ActivityPub #Mastodon #BlueSky #Twitter #Nazis
  • 0 Votes
    1 Posts
    17 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.