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

Hey #mastodon 👋 Does anyone know if it's possible to filter posts from a specific user?

Uncategorized
7 5 22

Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    0 Views
    Bonus #JokeQ: Why did the pie go to the dentist?A: He needed a filling. (It's #HootinTootinTuesday again! Post some jokes or funny memes under this hashtag today, and bring lots of smiles to #Mastodon.)#Humor #Humour #FunnyMeme #Turkey #TurkeyDay #DadJokes #Thanksgiving #ThanksgivingDinner #Holidays #DadJoke #Pie #Pies #Cats #CatsOfMastodon #Catstodon #Caturday #PumpkinPie
  • 0 Votes
    1 Posts
    14 Views
    📦 New release for mastodon/mastodon!Version: v4.4.8Name: v4.4.8<h1><picture> <source media="(prefers-color-scheme: dark)" srcset="./lib/assets/wordmark.dark.png?raw=true"> <source media="(prefers-color-scheme: light)" srcset="./lib/assets/wordmark.light.png?raw=true"> <img alt="Mastodon" src="./lib/assets/wordmark.light.png?raw=true" height="34"></pictur...Check it out and contribute! 🚀https://github.com/mastodon/mastodon/releases/tag/v4.4.8 #activitypub#opensource #mastodon#fediverse
  • 0 Votes
    27 Posts
    55 Views
    @artofstimart @mora il nome storpiato in italiano è fico in realtà, venne cambiato per evitare problemi
  • 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.