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

Vi prego, vi supplico, chiamatelo succo di melagrana

Uncategorized
27 10 79

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    9 Posts
    31 Views
    @gabboman @admin @Eeveecraft @jb I'm suspicious of them, but considering that I'm effectively connect via cell phone, I have my doubts that even if VPNs are real, they're going to do much for me
  • @amministratore Ma #mastodon vale?

    Uncategorized mastodon usa
    1
    0 Votes
    1 Posts
    6 Views
    @amministratore Ma #mastodon vale? 😂 Stati Uniti: i turisti potrebbero dover rendere pubblica la loro storia sui social media | Euronews https://it.euronews.com/viaggi/2025/12/11/stati-uniti-i-turisti-potrebbero-dover-rendere-pubblica-la-loro-storia-sui-social-media @economia #USA
  • 0 Votes
    2 Posts
    18 Views
    @WeirdWriter @rysiek These two paragraphs struck me in particular:> That’s in stark contrast to, say, Google+, which despite corporate backing, incomparably larger budget, and being pushed down people’s throats through forced integration with YouTube, survived mere seven years, nine months, and a week.Because unfortunately Google probably doesn't see that as a problem. Or even as the Fedi winning. For them, longetivity doesn't matter, but peak user count.> And once it shut down, it shut down. A social network of millions just blipped out of existence one day. All those moments – lost in time, like tears in rain.This, too, for them is a good thing. No-one else can profit from "their" data.This just makes it so crystal clear how the big one's interests aren't aligned with ours. Google+ wasn't really failing in their book, it had served its purpose and then ceased to do so. To us, this is loss. To Google this is just business.
  • 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.