The media in this post is not displayed to visitors. To view it, please log in.

ActivityPub per WordPress 9.0.0 è finalmente disponibile. L'eccellente lavoro per integrare gli standard Activitypub continua meravigliosamente grazie a @ActivityPub for WordPress e a @Matthias Pfefferle

@Che succede nel Fediverso?

Queste le novità:
- La rimozione di un post federato ora invia un vero e proprio comando di eliminazione anziché un segnaposto. Tieni presente che questa operazione può essere permanente su altri server.
- Una nuova modalità di distribuzione impedisce alla federazione di sovraccaricare i server più piccoli,
- il tuo blog può ora essere incluso negli Starter Kit,
- le immagini hanno anteprime con colori sfocati
- l'API di ActivityPub si avvicina allo standard W3C.


9.0.0 — Growing Up


Major versions are the right moment to fix things properly instead of patching around them. In ActivityPub plugin 9.0.0, unpublishing a federated post sends a real Delete instead of a placeholder text, and federation can be tuned down so it doesn’t overwhelm smaller servers. The ActivityPub API moves closer to the W3C standard, and your blog can now be featured in Starter Kits, if you allow it.

Starter Kits, With Your Consent


Starter Kits are curated lists of accounts, bundled so that others can discover and follow them in one go. You may know the idea as Starter Packs from Bluesky, and Mastodon is rolling out its own version called Collections with version 4.6. The name varies, the idea is the same: someone who knows a topic well puts together a list of accounts worth following, and shares it.

For blogs, discovery is the hard part of the Fediverse. A blog doesn’t post twenty times a day, so it rarely surfaces in busy timelines on its own. Being part of a Starter Kit changes that: when someone shares a “great photography blogs” kit, every person who opens it sees your blog, and following is one tap away.
Screenshot of a Featured-Collection, showing two WordPress blogs, on Mastodon.
One piece was missing, though: other people couldn’t add your WordPress blog to their lists, because your site never told their server who is allowed to do that. ActivityPub 9.0.0 fixes this with the new Default Starter Kit policy setting: Anyone, Followers only, or Just me. The default is “Just me”, so nothing changes unless you say so. If you want the reach, set it to “Anyone” under Settings → ActivityPub → Activities. Under the hood, this announces a canFeature policy on your profile, based on a new Fediverse Enhancement Proposal (FEP-7aa9) that is not published yet; we’ll link it here once it is.

The Mastodon team explains the thinking behind Collections in their design post, and Fedi.Tips has a guide to Mastodon’s Lists feature, the private cousin of Collections. And since ActivityPub 8.1.0 you can import Starter Kits into WordPress under Tools → Import, so it works in both directions.

Blurred Previews for Your Photos


Photos are heavy. While they load, most Fediverse apps show an empty gray box.

The plugin now generates a BlurHash for every image: a tiny, blurred color preview that other Fediverse apps can show while the real photo loads. Your followers see a soft impression of the picture instead of an empty rectangle. The BlurHash website has a nice interactive demo.

The plugin uses the same blurhash property that Mastodon documents as part of its ActivityPub extensions, so your previews work wherever Mastodon’s do. Everything happens automatically in the background; there’s nothing to configure.

From Placeholder to Delete


Until now, when you moved a federated post back to draft or made it private, the plugin sent an Update with a placeholder text: “(This post is being modified)”. Your followers kept a copy that claimed the post was being edited, even if it never came back. That was a workaround, and a bad one: it misrepresented your content and left stale placeholders sitting in timelines across the Fediverse.

ActivityPub 9.0.0 replaces the workaround with the behavior the Fediverse expects. When a federated post moves to draft, pending, private, trash, or gets a password, the plugin now sends a Delete to your followers, so their servers remove their copies. Your site keeps a Tombstone in place of the post, as described in FEP-4f05, so it can announce the post again if you re-publish it.

Be aware: even unpublishing a post only temporarily might delete it forever on other servers. When you take a post down on purpose, that’s what you want. But if you plan to come back, know that whether the post comes back with you depends on the receiving server, and the boosts, favorites, and replies on the old copies are gone either way. Discourse and NodeBB restore posts like this; Mastodon currently does not, though there’s an open issue we hope to see land soon. For now, treat unpublishing as deleting, even if you plan to publish again.
Screenshot of the Soft-Delete warning in the Block-Editor.
That’s why the editor now warns you before you make a federated post a draft, private, or password-protected. The dialog tells you that followers’ copies will be removed, so you know what will happen before you save.

Federation That Doesn’t Overwhelm Your Server


Federation is real work. When you publish a post, the plugin sends it to every follower’s server, and each delivery is a signed HTTP request processed in the background. On a well-provisioned server, no problem. On shared hosting with a few thousand followers, that burst of background work can slow your whole site down, right at the moment your new post brings visitors in.

The new Distribution Mode setting exists so the plugin stays a good guest on the server it runs on. It comes with three presets:

  • Default: the current behavior, as fast as possible (100 deliveries per batch, 15 seconds pause).
  • Balanced: a moderate pace (50 per batch, 30 seconds pause).
  • Eco Mode: gentle on server resources, made for shared hosting (20 per batch, 30 seconds pause).

Nothing changes unless you need it to: Default behaves exactly like before. But if your site gets sluggish after publishing, switch to Balanced or Eco Mode under the Advanced tab of the ActivityPub settings. Your followers get the post a few minutes later, and your server keeps breathing. A Custom mode with your own batch size and pause is there for fine-tuning.

The Advanced tab is hidden by default. To enable it, open the ActivityPub settings page, click Screen Options in the top right corner, check Advanced Settings, and save.

Hosting providers can pin a preset across all their sites with the ACTIVITYPUB_DISTRIBUTION_MODE constant, so a whole fleet of sites stays well-behaved without anyone touching a setting.

Speaking Standard ActivityPub


The ActivityPub API (the plugin’s Client-to-Server implementation) keeps converging on what the W3C SWICG is standardizing. Clients can now request the canonical SWICG scope names like activitypub:read:all and activitypub:write:all, and the OAuth discovery metadata advertises them. Token responses include activitypub_actor_id, following the SWICG ActivityPub API Basic Profile, and rate-limit responses now carry a Retry-After header so clients know how long to wait.

None of this changes anything for existing apps. It just means new apps can connect to your site by following the standard, not our documentation.

Since this is a major version, there’s one heads-up for developers: we removed functions, methods, and the Follower class that were deprecated in versions 7.0 through 7.4. Everything removed has had a documented replacement for over a year, but if your plugin or theme builds on ActivityPub internals, check the changelog before updating.

A Good Reason to Update Soon


Beyond the features, 9.0.0 includes a series of security hardening fixes that keep private data private and tighten how the plugin verifies who is allowed to change what. None of them need anything from you beyond updating, which is exactly why you should update soon. The details are in the changelog below.

Changelog

Added


  • Add a Distribution Mode setting to control how quickly posts are delivered to followers.
  • Add an opt-in setting to consent to inclusion in Starter Kits (also called Starter Packs or Featured Collections). Off by default. Find it under Settings, ActivityPub, Activities.
  • C2S clients can now request canonical SWICG ActivityPub API scope names such as activitypub:read:all and activitypub:write:all, and the OAuth discovery metadata advertises them.
  • C2S token responses now include activitypub_actor_id so clients following the SWICG ActivityPub API Basic Profile can discover the authenticated actor.
  • Generate a blurred color preview (blurhash) for images so other fediverse apps can show a placeholder while your photos load.
  • Quote notification emails now include a link to the post that quoted you, so you can review and respond more quickly.
  • Warn in the editor before making a post that’s already shared on the Fediverse a draft, private, or password-protected, since followers’ copies will be removed.


Changed


  • Add the blurhash term to the outbound JSON-LD @context so attachments that include a blurhash property are strictly correct JSON-LD, matching Mastodon’s own context shape.
  • Federated posts moved to draft, pending, private, trash, or password-protected now send a Delete to followers (previously sent a placeholder “editing” Update or were silent).
  • OAuth rate-limit responses now include a Retry-After header so clients know how long to wait before retrying.
  • Updated a build dependency to a clean release now that a fixed version is available.


Removed


  • Removed functions, methods, and the Follower class that were deprecated in versions 7.0 through 7.4.


Fixed


  • Fix a fatal error when receiving a new follower while the Stream plugin is active.
  • Fix a follow request being marked as accepted when the confirmation came from a different account than the one being followed.
  • Fix the Fediverse settings appearing twice and visibility changes not saving in the block editor when the Classic Editor plugin is also active.
  • Fix the introduction video failing to load on the Getting Started help screen.
  • Follower synchronization with Mastodon no longer fails, signed requests with query strings now verify correctly.
  • Harden the Blurhash encoder: skip decompression-bomb images before decoding, flatten transparency onto white so transparent logos no longer produce near-black placeholders, and defer the cron encode until attachment metadata is saved.
  • Images and videos placed in a Media & Text block are now included when a post is shared to the Fediverse.
  • Requests from other platforms to feature your posts are now handled correctly instead of being ignored.
  • RSS and Atom feeds now show a simple @username mention in place of the reply block’s full embed card, which only renders properly when the plugin’s frontend CSS is loaded.
  • Stop a deprecation notice from appearing in the error log when the NodeInfo plugin is also active.


Security


  • Enforce the signing-key host check on incoming federated activities regardless of how the key identifier is formatted.
  • Fix the real-time activity stream so it only returns the requesting user’s own activities.
  • Harden the Site Health connectivity check so it cannot be used to reach unsafe network addresses.
  • Only share comment replies in the Fediverse when the post they belong to is itself federated, so replies on private or non-federated posts stay private.
  • Prevent a remote server from discovering which of your followers belong to a third-party server it does not control.
  • Prevent logged-in users from viewing another user’s private outbox activities.
  • Prevent remote servers from modifying or deleting federated profiles, posts, and interactions they do not own.
  • Rate-limit the remote-follow lookup to prevent it from being abused to trigger outbound requests.
  • Stop the OAuth token introspection endpoint from revealing another user’s token details to logged-in users.
  • Stop the quote-authorization stamp from exposing a post’s other metadata.


Get It


Download from WordPress.org or grab it on GitHub.

A huge thank you to everyone who contributed code, testing, bug reports, and ideas to this release. Special thanks to .

Update, and let us know what you think: will you open your blog up for Starter Kits? And does the new delete behavior match what you expected your site to do all along?


Reti sociali non commerciali. Aggiornamento all'articolo del 2024

Questo testo è un'introduzione ai social network non commerciali. Si compone di tre parti: la prima parte delinea le caratteristiche comuni a questi network; la seconda parte elenca tredici caratteristiche che li distinguono; e la terza parte offre alcuni spunti su come scegliere un network e muovere i primi passi in questo ambito.

@Che succede nel Fediverso?

text.tchncs.de/y82a51ga14

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

When the Open Social Web Hybridizes: Raccoon for Friendica is a new app... Mastodon. And it even has a little Lemmy in it! That's why the Free Software + Fediverse duo is such a valuable resource.


@fediverse

Raccoon 1.0 was finally released for Android in recent days, a rather innovative client originally created for #Friendica, but which has now become one of the most innovative apps for the user experience on #Mastodon. The app is available for Android (already on the Play Store and Izzidroid, and will soon be available on F-Droid), but a #Debian package has also been released. An iOS version remains to be seen for its success.

The app introduces some very important innovations to the federated app landscape.

1. Navigate the Fediverse from an app, even without creating an account


Raccoon is the only app that lets you browse the Fediverse even without an account. When you install it, you can select any Friendica or Mastodon instance and "leverage" its local public and federated timelines. This way, users can explore multiple instances before choosing which one to open an account on. Of course, even after adding an account (the app manages multiple accounts), you can browse the timelines of servers other than the one you signed up to.

2. "Browse through" messages: "swipe" navigation


Unlike all other social apps (both those for the Fediverse and those for commercial social networks), #RaccoonForFriendica lets you open a post in your timeline and continue browsing through previous and next posts by simply swiping left and right.
This is a truly interesting ergonomic innovation.

3. Finally a formatting bar in social apps


Since the app was created for Friendica, it features a built-in formatting toolbar reminiscent of Lemmy clients (in fact, the developer @janTeko first experimented with app development with a Lemmy app). The formatting toolbar can also be used for Mastodon instances running the Glitch-soc fork, such as infosec.exchange, tech.lgbt, and my poliversity.it instance, which was the one the developer experimented with.

In addition to being more immediate, writing formatted posts is also made easier by a "preview" function that helps avoid errors in Markdown or BBCode coding.

4. Finally, Mastodon users will be able to enjoy Fediverse groups too.


As you may know, Mastodon doesn't support the display of group posts. Even if you select a group, you'll still see a single timeline where top posts alternate with replies. Searching for a thread on Mastodon is therefore very complicated, but the #Raccoon developer has found a way to enable "topic" viewing across all accounts that are "activitypub groups," be they #Lemmy, #NodeBB, Piefed, Mbin, Peertube, Wordpress, Mobilizon, Flipboard, etc.
This idea also came about thanks to the fact that the developer had previously tried his hand at developing an app for Lemmy and was able to experiment with the formatting bars and display of Lemmy "communities," which are nothing other than "#activitypub groups."

5. Other interesting features


Among other features, you can


6. What's still missing?


The app features all the features found in most other Mastodon apps, except one: the correct handling of Mastodon posts that quote other posts. These are still displayed in a fairly primitive way. The developer is trying to decide whether to adapt to Mastodon specifications or reinterpret the feature in a more personalized way.
It must be said that, unfortunately, the implementation of quoted messages (already present in Friendica for ages) was implemented by Mastodon very late, only in recent months, and in a very "personal" way that many other software developers did not appreciate.

7. Raccoon is an app that will benefit users who already use Mastodon but also those who have never "tried" the Fediverse


This app has been under development for almost two years, and the beta version is just over a year old. However, version 1.0 has resolved all previously encountered issues.
Based on user feedback, the developer will evaluate whether to create an iOS version and even a Windows version.
Anyone who wishes to allow reporting of application errors can enable anonymous crash reports.

8. Links and Resources


This is the developer's profile:
androiddev.social/users/janTek…

This is the app repository: github.com/LiveFastEatTrashRac…

This is the Play Store link:
play.google.com/store/apps/det…

This is the link on IzzyDroid (the app will be released on F-Droid soon, but is currently under review):
apt.izzysoft.de/fdroid/index/a…

Here is the developer's blog:
livefasteattrashraccoon.github…

Finally, from here you can download the .apk or .deb package without using the online stores. line:
github.com/LiveFastEatTrashRac…

One last recommendation


The public's response will be important to enable the further development of this app.
If you want to test it on Mastodon, I recommend using instances running the glitch-soc fork. Among these, I'd recommend the infosec.exchange instance, which is well managed by @jerry. And of course, but only if you communicate in Italian or Esperanto, I'd be happy to host you on my poliversity.it instance.
Regarding Friendica, I recommend two instances: friendica.world, managed by @ruud and featuring a rather lively timeline, and, of course, social.trom.tf, excellently managed by @tio.
If you communicate in Italian, I'd be happy to host you on my poliverso.org instance.

Greetings to all and let me know if you need further information, if you have tried the app and how you found it.
Francesco
You can also interact with me through the Mastodon account @informapirata and the Friendica account @notizie
in reply to P03 Locke

@p03locke I understand your outburst, and personally, I think it's quite well-founded. However, I remind you that the problem lies in the fact that Mastodon has chosen to implement proprietary solutions that don't follow the Activitypub standard, and that almost the entire Fediverse wants to conform to this supposed de facto standard. The fact that Lemmy adopts solutions that are different from other software, but still more in line with Activitypub, shouldn't be considered a problem.
in reply to macfranc

Mastodon isn’t the entirely of ActivityPub apps. There's also PeerTube, Pixelfed, Loops, Micro.blog, Flipboard (145M users), Misskey, and many many others.

Is there any ActivityPub app that Lemmy is compatible with, or is it broken for all of them? Why pretend that it's part of a big Fediverse, when a vast majority of these instances are broken to us? (I'm not picking on discuss.tchncs.de, but you can plug in any Lemmy server you want and see the same kind of problems.)

The fact that Lemmy adopts solutions that are different from other software, but still more in line with Activitypub, shouldn’t be considered a problem.


You can have this stance, and be a purist about the RFCs and how the protocol is supposed to work. And you can push for these standards on your own platform for Lemmy.

But, at the end of the day, you still have to deal with the warts of other protocols and write the custom code it takes to bridge one app with another app. And then be thankful that you are not trying to bridge together an entirely different standard and are just trying to smooth over some structural differences in implementation.

in reply to P03 Locke

oh, a clarification: I'm still @macfranc@poliversity.it

I'm a fan of Lemmy, though I recognize that some limitations could be considered flaws (piefed.social/comment/11707767).

However, your perspective must take into account some design (and history) issues with the software you mentioned:

Lemmy barely works with PeerTube [discuss.tchncs.de]


It's important to understand a few concepts here:
- Lemmy is based on Activitypub groups
- A group works by "resharing" an initial post and all replies to that post
- With some programs (Mastodon's "socialverse," Misskey, Pleroma, Friendica, or Pixelfed), you can "post inside a group" only by mentioning the "group user"; with others (Lemmy/Piefed/Mbin/NodeBB's forumverse, but also Peertube, Mobilizon, or Flipboard), you simply assign a discussion to a group (you can do this easily from the interface). This second mode doesn't yet have a syntax shared by all the software in the Fediverse.
- Finally, a very important feature of Lemmy is that a post can only be published to one channel at a time. This might seem like a limitation (we'll discuss it later, when talking about Flipboard), but it's actually designed by the developers to prevent synchronous crossposting, which can dramatically increase spam.

Lemmy handles the display of Peertube content very well and correctly assigns it to the correct Peertube channel. What doesn't work well is the update system, which is why Lemmy can't act as a Peertube feed reader. This isn't Lemmy's fault, nor is it Peertube's, as each handles Activitypub groups differently.

Lemmy doesn't work with Pixelfed [discuss.tchncs.de]


That's not true. Lemmy handles Pixelfed very well. Pixelfed users can open threads on Lemmy or reply to Lemmy discussions. However, Pixelfed only shows users retweets made by Pixelfed, not those from other software. Therefore, Pixelfed users cannot access the groups.
Regarding your user, I'd like to point out that feddit.it can see it: feddit.it/u/NotAHopeInHades@pi…

Lemmy doesn't work with Loops [discuss.tchncs.de]


Loops is still a very immature software, with very limited interoperability. I wouldn't consider it a valid test for certifying Lemmy's functionality.
Regarding your user, I'd like to point out that feddit.it can see it: feddit.it/u/spaceotter@loops.v…

Lemmy doesn't work with Micro.blog [discuss.tchncs.de]


I'm not familiar with Microblog, but (regarding your user) I'd like to point out that feddit.it can see it: feddit.it/u/akshay@social.lear…

Lemmy doesn't seem to work with Flipboard


Flipboard uses groups to manage the "magazines" of the "main accounts." Magazines are the thematic sections of the main account. Basically, the main account (for example, @NationalGeographic@flipboard.com) publishes a news item, and depending on the topic, it can be published in the "Science" Activitypub group (@science-NationalGeographic@flipboard.com) or the "Environment" Activitypub group (@environment-NationalGeographic@flipboard.com), OR both.
This design, intended to maximize visibility on the Mastodon audience, is incompatible with Lemmy's logic.
Lemmy, in fact, as I mentioned before, doesn't allow synchronous crossposting of the same content across multiple groups.

The same goes for Misskey.


Lemmy handles Misskey very well. And Misskey handles Lemmy very well. I don't understand the problem.


From what I can see, that is not a back-end restructuring but as far as a new architectural design it will purely affect the front-end UI. Which will begin to look somewhat more similar to PieFed, yet without coming anywhere close to what PieFed offers today, as opposed to what PieFed offered like a year ago. e.g. there will be no ability to hold polls (or to share those custom-built feeds?).

More relevant is that Lemmy 1.0 may take a year or so to become fully deployed across the Threadiverse, if past experience is any judge. The devs say to explicitly expect major breaking bugs and perhaps to avoid deployment in prod as a result. And ofc apps are going to need to catch up as well. This one being a breaking change may lead most older apps unable to connect to an instance that uses the newer software (unless I am misreading that part about the older backwards compatible API).

Lemmy.world in particular, which holds ~50% of Threadiverse users and >90% of the most highly-active communities (unfortunately for the aim of decentralization) is well-known for delaying deployment until the Lemmy code fixes such issues.

So a year from now Lemmy will begin to catch up to some of what PieFed had almost a year ago in the past already, and meanwhile I expect PieFed will not itself be standing still all that time... I am glad to see that Lemmy is still being actively worked on, truly I am, but also I find it hard to actually be excited about that pace, by comparison. Then again, any movement forward still counts, and improves the Fediverse as a whole, so by however much, it is still a good thing! 😀


reshared this

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The Fediverse is built on the promise of decentralized communication. However, when users from different instances federate, they often encounter a barrier that code alone can not fix: language. Some platforms are designed to integrate with external translation providers, but this has downsides for instance admins (cost and/or maintenance overhead). In this article we'll discuss how managing translation on clients may help distribute costs and let users configure their favorite service.
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

📣 Il DevConf si avvicina!!!

Fieri di sapere che @_elena sarà presente al @devconf@citiverse.it ❤️

Non vediamo l'ora di scambiare 4 chiacchiere con lei e tutti gli altri relatori e le persone presenti fra il pubblico ed intanto facciamo rete e promuoviamo il DevConf Italia.

E tu che fai il 7 e 8 Luglio?
Ti aspettiamo a Pavia al Learning Space Cravino!

#devconf #devconfita #devconfitalia

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Grid component was added to Jetpack Compose.

It lets you build two-dimensional layouts.

You’ll need "foundation-layout:1.12.0-alpha03" to try it out.

#AndroidDev #JetpackCompose

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Beyond contentDescription, this article explores some techniques to improve accessibility in Compose Multiplatform apps. Using Raccoon as a case study, it covers design ideas for better screen reader integration, ensuring content parity and preserving semantics integrity. It highlights that a11y is a collaborative effort: together we can make the Fediverse more inclusive and usable for everyone.
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Se ti piace pubblicare su #Pixelfed le foto di luoghi e città d'Italia, ricordadi di menzionare alla fine del post le comunità cittadine di citiverse.it!

Citivrse.it è un forum completamente federato tramite ActivityPub e la sezione "Luoghi e città" contiene l'unico forum tematico federato sui luoghi d'Italia!

Per condividere un post Pixelfed dovrai fare solo due cose:
- cercare la comunità di tuo interesse per esempio @ lombardia @ citiverse.it o @ napoli @ citiverse.it (per il momento ci sono ancora pochi comuni che non siano capoluogo di provincia)
- aggiungere alla fine del post la menzione all'account della categoria

A quel punto, tutti coloro che sono iscritti alle comunità locali o che le seguono dal #Fediverso, vedranno il tuo post

Ecco la pagina delle categorie locali di citiverse.it
citiverse.it/category/12/luogh…

@fediverso@feddit.it

in reply to Francesco

@macfranc@pixelfed.uno naturalmente è possibile pubblicare foto o altri contenuti sulle comunità di citiverse.it anche da Mastodon, Friendica, Lemmy, Pleroma, Piefed, NodeBB, etc etc

reshared this

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Gradle is the de facto standard build tool for KMP projects and for a reason: it is extremely powerful and highly flexible. However, if not configured correctly, it may result in suboptimal build performance or its configuration may become hard to maintain over time. In this article we'll discuss what are the main issues I experienced and what solutions I adopted to mitigate them in Raccoon; namely its module structure and the convention plugins it uses.
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

YAAAAAAAA @Bonfire is a HONOURABLE MENTION at the very first #OpenSocialAwards at @publicspaces

🐌 Slow Software for a Burning World ❤️‍🔥

(Also the most shy people in the room)

#PubConf2026

Questa voce è stata modificata (2 mesi fa)
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

The winners of the inaugural Open Social Awards have been announced!

This initiative by @wearenew_public, PublicSpaces and @waag aims to give the field of decentralised social media a serious boost. The grand prize of €10.000 goes to the @newsmast. The Excellence Awards, each of €5.000, go to @blackskyweb.xyz and @sillapp. And the honourable mentions go to Bounce, Dandelion, Streamplace, Leaflet, and Bonfire Networks.

Congratulations to all winners!

#PubConf2026

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Moderation system and new user role


!Friendica Support hi!

Some updates for the develop branch: These days a PR got merged that provides three things:

  1. Massive enhancements for the moderation system
  2. A new user role "moderator"
  3. Reports can now be transmitted to other systems

The moderation system now should contain everything from deleting a post, blocking a user and even writing an email to a local user. I have done tests but not everything is tested in "real life", so please have a look if everything works for you. Especially we now support admin activities via API, but I don't know by now how these can even be reached via client.

Also there is now a possibility to assign the user role "moderator" to a user. So for now on you can delegate this task to trusted users.

And finally: it should be possible now to transmit reports to other systems. This I haven't tested in real life, because this is harder to test.

reshared this

in reply to Michael 🇺🇦

@Michael 🇺🇦 Not sure if I'm doing something wrong or not. On my dev server I assigned a couple other accounts as "Moderators" but when I log into those test accounts I do not see "Moderation" in their main menu. Have the themes not been updated yet to check whether to display that or not?

I see that the moderator role is only stored in the config table of the database, is there some particular reason there isn't a "role" column under the user table to indicate "Moderator" status? Without that it will be difficult to show that information on profiles/hovercards, you'd have to get site config info and cross-reference user IDs.

The media in this post is not displayed to visitors. To view it, please log in.

Smetti di pubblicare sulle piattaforme: trasforma il tuo sito web in un nodo del Fediverso

...la vera innovazione del Fediverso non è Mastodon. È Activitypub!

#ActivityPub trasforma il social networking da funzionalità di piattaforma a standard web aperto. E una volta che l'interazione sociale diventa un protocollo anziché un prodotto, i siti web ordinari possono parteciparvi direttamente. I blog non devono più dipendere esclusivamente da piattaforme esterne per la distribuzione e la discussione. Possono diventare parte integrante del web sociale.

ztfr.eu/stop-posting-to-platfo…

@Che succede nel Fediverso?


Stop Posting to Platforms — Turn Your Website into a Fediverse Node
Discover how ActivityPub transforms WordPress into a decentralized social platform while keeping full control over content and audience.
🔗 Read the full article here: ztfr.eu/stop-posting-to-platfo…

#activitypub #blog #fediverse #interoperable #Mastodon #media #protocol #social #socialmedia #wordpress #x


in reply to Poliverso - notizie dal Fediverso ⁂

Grazie per la condivisione
Ritengo che, al di là dell'implementazione tecnica specifica toccata anche dall'articolo, l'aspetto davvero rivoluzionario stia nel come si possa spiegare a chiunque quanto il web possa tornare (tornare!!) protocollo-centrico, dalla deriva odierna dove, invece, è sostanzialmente inteso come servizio-centrico, con tutte le gravi conseguenze che stiamo pagando e che per fortuna stanno diventando oggetto di forte dibattito e protesta da ormai diverso tempo a questa parte.
Grazie!
Cercherò di trarne almeno due o tre lezioni per i miei studenti e (sarebbe importantissimo) anche per i miei colleghi! 👍😊
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Did you notice that in the latest beta versions, besides APKs to install on Android a .deb package has popped up to be installed on Debian-based Linux distros? This is not by chance: thanks to Kotlin Multiplatform's power, Raccoon has been ported to JVM and can now run as a desktop app. In this post I'll shortly describe how this came to be, from ideation to implementation; which were the main challenges I found in the migration process and what potential implications it has on the project and its users.

Il post di Fedilab su Holos, il Fediverso tascabile

Molti conoscono i messaggi, le foto e i video sul #Fediverso . Ma il protocollo #ActivityPub definisce in realtà diversi tipi di oggetti, ognuno distinto e più o meno compatibile con le varie app:

- Nota: post breve (Mastodon)
- Articolo/Pagina: testo lungo o link condiviso (WriteFreely, Lemmy)
- Immagine (Pixelfed)
- Video (PeerTube)
- Audio (Funkwhale)
- Evento con data e luogo (Mobilizon)

#Fedilab #HolosSocial @Che succede nel Fediverso?

Ogni tipologia ha le proprie app e la propria logica. Si federano tutte tra loro, ma ogni app mostra al meglio lo scopo per cui è stata creata e semplifica il resto. Un evento Mobilizon visualizzato da Mastodon appare come un normale post: i dettagli sono presenti, ma non c'è modo di interagire direttamente con esso. Un video di PeerTube viene visualizzato come un link, non come un vero e proprio lettore. Per ottenere l'esperienza completa, la soluzione più comune rimane quella di avere un account per rete.

HolosSocial riunisce tutte queste funzionalità in un'unica app. È in grado di riconoscere diversi tipi di oggetti ActivityPub e di presentarli in modo appropriato: un vero e proprio lettore video, un elemento di calendario per gli eventi, un lettore di articoli. È possibile collegare facilmente il proprio cloud per ospitare i contenuti multimediali, con i video compressi sul dispositivo prima del caricamento.

@Fedilab Apps supporta diverse API (Mastodon, PeerTube, Misskey...), ma ognuna presenta i limiti del proprio server: ciò che il server è in grado di fare, ciò che federa, ciò che espone. Holos, invece, funziona direttamente con i tipi di oggetto di ActivityPub, aprendo filtri che vanno oltre gli allegati, il tutto da un unico account.

holos.social/how-it-works


Most people know about messages, photos and videos on the #Fediverse. But the #ActivityPub protocol actually defines several object types, each one distinct and more or less compatible across apps:

- Note: short post (Mastodon)
- Article / Page: long text or shared link (WriteFreely, Lemmy)
- Image (Pixelfed)
- Video (PeerTube)
- Audio (Funkwhale)
- Event with date and place (Mobilizon)

(1/4)

#Fedilab #HolosSocial


reshared this

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Most people know about messages, photos and videos on the #Fediverse. But the #ActivityPub protocol actually defines several object types, each one distinct and more or less compatible across apps:

- Note: short post (Mastodon)
- Article / Page: long text or shared link (WriteFreely, Lemmy)
- Image (Pixelfed)
- Video (PeerTube)
- Audio (Funkwhale)
- Event with date and place (Mobilizon)

(1/4)

#Fedilab #HolosSocial

in reply to Fedilab Apps

Each type has its own apps and its own logic. They all federate together, but each app shows at best what it was built for and simplifies the rest. A Mobilizon event seen from Mastodon shows up as a regular post: the details are there, but no way to interact with it directly. A PeerTube video shows up as a link, not a real player. To get the full experience, one account per network is still the usual path.

(2/4)

reshared this

in reply to Fedilab Apps

HolosSocial brings them together in a single app. It understands different ActivityPub object types and presents each one in its own way: a real video player, a calendar entry for events, a reader for articles. You can easily attach your own cloud to host your media, with videos compressed on the device before upload.

(3/4)

reshared this

in reply to Fedilab Apps

Are you aware of the ActivityPub API Task Force at the W3C? You might find it interesting.

github.com/swicg/activitypub-a…

in reply to Evan Prodromou 🇨🇦🇺🇸🇬🇷🇵🇸

@evan
Yes, I know it. And I'm already thinking about bringing it to Fedilab. My main difficulty right now is being alone with a lot of work already. But I do think it's also my role as a developer to bring things forward. Especially when I believe in it.
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

La fabbrica dell'abbandono: avvenire.it/idee-e-commenti/la…
Un'acuta riflessione di Elena Granata, urbanista e docente al Politecnico di Milano, sul problema dell'abitare in Italia

Consiglio di lettura: il suo bellissimo libro La città è di tutti. Ciò che ha valore non ha prezzo: einaudi.it/catalogo-libri/prob…

#abitare #metropoli #AreeInterne #spopolamento #DirittoAllaCasa #città

@scuola
@maupao
@Puntopanto
@alephoto85
@lindasartini
@RFancio
@lgsp

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Started working on bringing ActivityPub Polls to NodeBB 📋

First step is adding in separate handling of the Question object. Right now NodeBB treats it as a "Note-like" and renders it like a post :smile: 50% of the way there... will need to link it to nodebb-plugin-poll...

One complication... the plugin ties votes to users. This data isn't reflected over-the-wire in AP, only the aggregate voter counts are shared :thinking_face:

github.com/NodeBB/nodebb-plugi…

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Friendica 2026.05 released


We are very happy to announce the availability of the new stable release of Friendica “Blutwurz” 2026.05. In addition to several improvements and new features, this release contains fixes for security problems that Doyensec/Mastodon has notified us about. Thanks for your report!

Some highlight of Friendica 2026.05 are

  • UI improvements in mainly in the frio theme,
  • improved several performance issues,
  • improved support of Bridgy Fed and the ATproto account integration,
  • we added a new addon to ease the handling of images.

For details, please the CHANGELOG file in the repository. 2026.05-1 fixed a small internal problem with the CI but did not change the functionality of Friendica.

This is the last release of Friendica that works with PHP version lower then 8.2. please upgrade your server environment if you are still using older versions of Friendica.

If you have developed your own addons for Friendica note that we reworked our hook system and introduced a new AddonHelper class.

What is Friendica


Friendica is a decentralised communications platform, you can use to host your own social media server that integrates with independent social networking platforms (like the Fediverse or Diaspora*) but also some commercial ones like Tumblr and BlueSky.

How to Update

Updating from old Friendica versions


If you are updating from an older version than the 2026.01 release, please first update your Friendica instance to that version .

Pre-Update Procedures


Ensure that the last backup of your Friendica installation was done recently.

Using Git


Updating from the git repositories should only involve a pull from the Friendica core repository and addons repository, regardless of the branch (stable or develop) you are using. Remember to update the dependencies with composer as well. So, assuming that you are on the stable branch, the commands to update your installation to the 2026.05 release would be
cd friendica
git pull
bin/composer.phar run install:prod
cd addon
git pull
If you want to use a different branch than the stable one, you need to fetch and checkout the branch before your perform the git pull.

Pulling in the dependencies with composer will show some deprecation warning, we will be working on that in the upcoming release.

Using the Archive Files


If you had downloaded the source files in an archive file (tar.gz) please download the current version of the archive from friendica-full-2026.05.tar.gz (sha256) and friendica-addons 2026.05.tar.gz (sha256)) and unpack it on your local computer.

As many files got deleted or moved around, please upload the unpacked files to a new directory on your server (say friendica_new) and copy over your existing configuration (config/local.config.php and config/addon.config.php) and .htaccess files. Afterwards rename your current Friendica directory (e.g. friendica) to friendica_old and friendica_new to friendica.

The files of the dependencies are included in the archive (make sure you are using the friendica-full-2026.05 archive), so you don’t have to worry about them.

Post Update Tasks


The database update should be applied automatically, but sometimes it gets stuck. If you encounter this, please initiate the DB update manually from the command line by running the script
bin/console dbstructure update
from the base of your Friendica installation. If the output contains any error message, please let us know using the channels mentioned below.

Please note, that some of the changes to the database structure will take some time to be applied, depending on the size of your Friendica database this update might run for days.

If you are using the daemon for your background worker, note that we have moved the functionality into the console. Adopt your setup to use the new bin/console daemon command.

Known Issues


At the time of writing this, none with 2026.05

How to Contribute


If you want to contribute to the project, you don’t need to have coding experience. There are a number of tasks listed in the issue tracker with the label “Junior Jobs” we think are good for new contributors. But you are by no means limited to these – if you find a solution to a problem (even a new one) please make a pull request at github or let us know in the development forum.

Contribution to Friendica is also not limited to coding. Any contribution to the documentation, the translation or advertisement materials is welcome or reporting a problem. You don’t need to deal with Git(Hub) or Transifex if you don’t like to. Just get in touch with us and we will get the materials to the appropriate places.

Thanks everyone who helped making this release possible, and especially to all the new contributors to Friendica, and have fun!


friendi.ca/2026/05/21/friendic…

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Il momento dell'interruzione è arrivato: ora armiàmoci di pazienza... 😅

#citiverse #dns #cambiodidominio #NodeBB


ATTENZIONE - Durante la giornata di oggi e di domani potrebbe verificarsi una temporanea interruzione di servizio del forum federato citiverse.it


Informiamo tutti gli utenti iscritti a Citiverse.it e a tutti gli altri utenti che utilizzano le categorie di Citiverse.it come "gruppi federati" dalle loro istanze Mastodon, Friendica, Pixelfed o Lemmy, che

durante la giornata di oggi e di domani potrebbe verificarsi una temporanea interruzione di servizio sul dominio citiverse.it


a causa del cambio di gestore del dominio.

Ci scusiamo per il disguido e ricordiamo che il problema non riguarderà le altre nostre tre istanze:

  • poliverso.org: la nostra istanza Friendica
  • feddit.it: la nostra istanza Lemmy, che con le sue comunità è da anni un punto di riferimento anche per gli utenti Mastodon
  • poliversity.it: la nostra istanza Mastodon potenziata che consente di scrivere anche con testo formattato e senza lmitazione di caratteri

Quando il problema si sarà risolto, provvederemo a comunicarlo tempestivamente

@fediverso


Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

RISOLTO: il server citiverse.it è tornato completamente online solo domenica mattina...

@fediverso

poliversity.it/@macfranc/11657…


ATTENZIONE - Durante la giornata di oggi e di domani potrebbe verificarsi una temporanea interruzione di servizio del forum federato citiverse.it


Informiamo tutti gli utenti iscritti a Citiverse.it e a tutti gli altri utenti che utilizzano le categorie di Citiverse.it come "gruppi federati" dalle loro istanze Mastodon, Friendica, Pixelfed o Lemmy, che

durante la giornata di oggi e di domani potrebbe verificarsi una temporanea interruzione di servizio sul dominio citiverse.it


a causa del cambio di gestore del dominio.

Ci scusiamo per il disguido e ricordiamo che il problema non riguarderà le altre nostre tre istanze:

  • poliverso.org: la nostra istanza Friendica
  • feddit.it: la nostra istanza Lemmy, che con le sue comunità è da anni un punto di riferimento anche per gli utenti Mastodon
  • poliversity.it: la nostra istanza Mastodon potenziata che consente di scrivere anche con testo formattato e senza lmitazione di caratteri

Quando il problema si sarà risolto, provvederemo a comunicarlo tempestivamente

@fediverso


Questa voce è stata modificata (3 mesi fa)
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

We just released Bonfire Social 1.0.3 🔥 with dozens of bug fixes and UX improvements, plus:

  • Federated comments embeddable on any web page.
  • Deep Ghost integration: SSO, membership tier sync, and automatic article import.
  • New dashboard widgets: spotlight, polls closing soon, top discussions.
  • #CalmEmpowerment: a new design pattern that starts with a few sensible defaults, offers a middle layer of common adjustments, and reveals the full options only when you need them. Boundaries and post permissions got this treatment first, more to follow...
  • Modular community rules: a first step in bringing research and co-design with students and researchers at @hci@micro.blogs.princeton.edu into Bonfire, so governance becomes something communities can better define and share, and that others can fork and adapt.

Read the full post: bonfirenetworks.org/posts/bo...#Bonfire #Fediverse #ActivityPub #Ghost #CommunityRules

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

ATTENZIONE - Durante la giornata di oggi e di domani potrebbe verificarsi una temporanea interruzione di servizio del forum federato citiverse.it


Informiamo tutti gli utenti iscritti a Citiverse.it e a tutti gli altri utenti che utilizzano le categorie di Citiverse.it come "gruppi federati" dalle loro istanze Mastodon, Friendica, Pixelfed o Lemmy, che

durante la giornata di oggi e di domani potrebbe verificarsi una temporanea interruzione di servizio sul dominio citiverse.it


a causa del cambio di gestore del dominio.

Ci scusiamo per il disguido e ricordiamo che il problema non riguarderà le altre nostre tre istanze:

  • poliverso.org: la nostra istanza Friendica
  • feddit.it: la nostra istanza Lemmy, che con le sue comunità è da anni un punto di riferimento anche per gli utenti Mastodon
  • poliversity.it: la nostra istanza Mastodon potenziata che consente di scrivere anche con testo formattato e senza lmitazione di caratteri

Quando il problema si sarà risolto, provvederemo a comunicarlo tempestivamente

@fediverso


I Gruppi del Fediverso: un modo per incontrare altri utenti Mastodon, Friendica o Pixelfed in base ai loro interessi

Il Fediverso è un luogo fatto soprattutto di interazioni sociali ma rispetto ai social commerciali non è facilissimo trovare utenti che condividano i nostri stessi interessi. Ecco come giocarsi la carta dei “Gruppi”

informapirata.it/2025/02/03/i-…

#Calabria #Campania #comunità #Fediverso #Friendica #gruppi #Lemmy #Mastodon

informapirata.it/2025/02/03/i-…


Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Threads, il social che ti molesta: benvenuti in FFF, il Finto Fediverso di Facebook (e non provate a uscire)

Se mai ci dovessimo dimenticare di quanto è squallido Threads, la realtà ce lo ricorda puntualmente...

informapirata.it/2026/05/14/th…

@fediverso


Threads, il social che ti molesta: benvenuti in FFF, il Finto Fediverso di Facebook (e non provate a uscire)

Se mai ci dovessimo dimenticare di quanto è squallido Threads, la realtà ce lo ricorda puntualmente…
informapirata.it/2026/05/14/th…


Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

La regolamentazione UE non salverà i social network aperti. La newsletter di Laurens Hof (e Threads non ha più senso di esistere)

La Commissione europea ha deciso di non estendere le norme di interoperabilità del Digital Markets Act ai social media, precludendo così una potenziale via di adozione per i social network aperti.

connectedplaces.online/reports…

@fediverso

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Fedle: bot Fediverso simil wordle


Esiste nel Fediverso un gioco famoso in altri social network soprattutto su X: si chiama Fedle ed è una variante di Wordle.

Un po' di storia: Wordle


Su X/Twitter si trovano persone che pubblicano post pieni di numeri e quadratini gialli, grigi e verdi.

Si tratta di un gioco chiamato Wordle che consiste nell'indovinare una parola messa a disposizione dal videogioco ogni giorno; la versione originale ha i termini in inglese di 5 lettere e si hanno a disposizione sei tentativi, partendo dalla sola lettera iniziale. Indovinata la parola, si copia il risultato sui social network.

Creato nel 2021 dallo sviluppatore Joseph Wardle, si è diffuso su Twitter per poi essere acquistato dal New York Times e ne sono nate parecchie varianti anche in italiano (parle, parolette, parole sante...).

Wordle è un programma completamente grafico tastiera compresa, anche se in un gioco di questo tipo la vista neanche servirebbe. Così le persone con disabilità visiva non potevano giocare, finché qualcuno non ha creato l'estensione chrome accessible wordle - in teoria supporta tutti i browser con estensioni, ma se Wordle modifica la propria architettura, l'estensione potrebbe non funzionare più. Vale la pena?

Chi ama i social network commerciali si tenga Wordle, perché noi nel Fediverso abbiamo qualcosa di alternativo, stabile, accessibile e completamente rispettoso della riservatezza.

Fedle: un bot Wordle per ActivityPub


Se Wordle è un'interfaccia web, Fedle è un bot con cui interagire esattamente come lo si farebbe con qualunque utilizzatore umano: botta e risposta. Per cui va bene ogni client fediverso e ogni browser web senza installare programmi in più.

La versione italiana risponde a @fedle_it@fedle.fedilab.app - per ricevere ogni giorno alle 14:00 una parola italiana da indovinare, basta seguire il bot come si farebbe con qualunque altro handle fediverso.

Come si usa


Quando si interagisce con Fedle_it la visibilità dei messaggi deve essere su "privato" - solo le persone che menziono.

  • aiuto: manda un elenco di comandi
  • regole: mostra le regole del gioco disponibili anche nella pagina informazioni di Fedle.
  • una volta ricevuta la parola del giorno, basterà rispondere alla conversazione in privato, con quella che si presume sia la soluzione.

Se fedle dice "6 lettere, inizia per l", si potrà rispondere (impostando la visibilità su privato) semplicemente scrivendo ad esempio lavoro.

Per comodità, ecco i comandi e le regole del gioco:

Indovina la parola del giorno in 6 tentativi.
La prima lettera viene data come indizio. La tua risposta deve essere della lunghezza giusta e nel dizionario.
:correct: = lettera giusta, posizione giusta
:misplaced: = lettera giusta, posizione sbagliata
:absent: = lettera non nella parola

Comandi:


  • aiuto: mostra queste regole
  • statistiche: statistiche personali
  • migliori: classifica istanza (7 giorni)
  • statistiche istanza.tld: statistiche per una istanza
  • suggerisci: PAROLA: proponi una parola
  • esercizio: allenati con una parola casuale
  • nuovo esercizio: ottieni una nuova parola


I simboli (emoji)


Come detto, graficamente si mostrano dei simboli. Dei quadratini.

  • 🟩 - verde, lettera presente nella parola e posizionata nel posto giusto. Se la soluzione è "sopra" ma tu hai scritto "sport", ci saranno due simboli verdi nella posizione 1 e 4.
  • 🟨 - giallo, lettera errata. Misplaced. Presente nella parola, ma posizionata nel posto sbagliato. Se la tua risposta è "sport" ma la soluzione è "sopra", in posizione 2 e 3 ci saranno due segni gialli perché le due lettere sono scambiate di posto.
  • ⬛ - grigio: lettera assente. La parola non contiene la lettera in questione. Nell'esempio di "sport", la "t" sarà una tessera grigia perché nella parola richiesta, "sopra", non esiste la t.


Competizione e condivisione


Ovviamente non è obbligatorio condividere i propri risultati sui social network, ma Fedle quando si arriva alla soluzione, restituisce un link da cliccare. Si apre il browser e si copia il risultato con l'apposito pulsante, che poi si può trasferire incollandolo sul composer del proprio client fediverso.

Ogni domenica arriva la classifica settimanale delle istanze che hanno giocato, e ogni giorno vengono dati i risultati della parola precedente: quanti giocatori hanno provato, la percentuale di risoluzioni, la media di tentativi svolti.

Si può barare con l'AI? Volendo sì. Ma se lo fai... ti dai praticamente del pollo da solo.

Hashtag da usare


Di solito si usa #fedle che è già preimpostato nel post coi risultati da incollare nel composer del client Fediverso. Ma nessuno vieta di aggiungerne altri, tipo #ParoleSante o #FedleItalia o anche WordGame, Puzzle, Rompicapo...

CREDITS:
Elena Brescacin - @elettrona@poliversity.it | traduttrice italiana di Fedle

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Buongiorno.
Nuovi #consiglidifollow

Questa volta l'elenco comprende account da cui si possano trarre notizie e informazioni non banali riguardo al Fediverso e al mondo dell'informatica.
Non è esaustivo: condivido alcuni degli account che mi è capitato d'incontrare per caso e che mi piacciono.

Ecco dunque il

Settimo elenco: Info Fediverso e Informatica.


@admin
@aiucd
@anewsocial
@AntennaPod
@ArchaeoBasti
@cheeaun
@chiaraepoi
@Curator
@fediverso
@informapirata
@FediFollows
@fediforum
@FediTips
@fediversereport
@Flipboard
@Framasoft
@Galessandroni
@hackordie_radio
@informatica
@jerome_herbinet
@kappazeta
@kathsone
@leodurruti
@lealternative
@lisamelton
@lorenzo
@macfranc
@MastodonEngineering
@moshidon
@notizie
@poliverso
@privacity
@quillmatiq
@sbarrax
@skariko
@snow@snowfan.it
@snow@snowtest.it
@stefano
@tleilax
@wikimediaitalia
@wubby74
@zeppe

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

If you see someone asking for help with using Mastodon and the wider Fediverse, please feel free to tag me into the thread.

I'm especially trying to help new or non-technical people who want straightforward easy-to-understand advice 🙂

(Also feel free to message or reply if you want help with something yourself!)

#FediTips

in reply to JoachimJakobs

@JoachimJakobs

The interface that mastodon.social uses is experimental, so it may have bugs like this. There is no other interface on the mastodon.social website.

However, you can use your account by other methods such as mobile apps. I've tried to list them at fedi.tips/which-apps-can-i-use…

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

L'istanza mastodon.galileivr.org è la prima e l'unica istanza Mastodon scolastica italiana. Perché non ce ne sono altre?


Il social etico del Liceo statale Galileo Galilei di Verona, gestito da @carlo@mastodon.galileivr.org e da Fabio @rigoni, nasce da un progetto scolastico (“Benessere in Rete 2.0 - Mastodon ed al tre diavolerie”) e costituisce il primo progetto di questo genere in Italia.

Sarebbe bello se anche altri istituti potessero seguire l'esempio del Galilei, ma a quanto pare molte scuole sono più interessate ad aprire un account Instagram che ad intraprendere una strada complessa ma ricca di opportunità gli studenti e per tutta la comunità.

Speriamo che l'esempio del Liceo Galilei possa essere seguito da altre scuole, ma sarà importante che tutta la comunità del #Fediverso contribuisca a diffondere i valori di questo progetto a tutte le scuole che conoscono.

@fediverso

mastodon.galileivr.org/

#Mastodon #Galiverso

in reply to Piero Bosio

@pierobosio@soc.bosio.info grazie al software libero, le potenzialità messe oggi a disposizione della scuola sono praticamente infinite. Purtroppo una parte della società civile si impegna attivamente per ignorarle e farle ignorare.
La scuola forse è l'unica istituzione che potrebbe riuscire a dare il via a una rivoluzione gentile per far diventare il software libero lo strumento per consolidare il diritto alla conoscenza
in reply to macfranc

@macfranc
Sì. Sono passati 12 anni ed è cambiato poco o niente in Italia. Tuttavia merita riascoltarlo.

youtu.be/gdsd2L_pqs4

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Disintossicazione dai social e ingresso nel Fediverso: la sfida dei 15 giorni.

Ti propongo un percorso collettivo di due settimane per limitare l’uso dei social mainstream e scoprire insieme la libertà del Fediverso. Lo faremo in un gruppo WhatsApp dove ogni giorno ci sosterremo, commenteremo i successi e condivideremo le fatiche di questo “svezzamento” digitale.

librotilovvo.com/2026/05/10/di…

@Che succede nel Fediverso?

Unknown parent

@Elena Brescacin sono sicuro anch'io che questa sia la risposta giusta. Come ho scritto altrove

mi sembra una strategia adeguata. Infatti chi ha un account social quasi sicuramente ha anche un account WhatsApp e quindi quello è il modo più facile per creare un gruppo. Non puoi chiedere a persone di questo genere di aprire un gruppo Matrix o xmpp...
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please log in.

"Siamo entusiasti di annunciare che la @European Commissionha aggiornato i pulsanti "Segui" nel piè di pagina del sito web!". L'annuncio di @Hannah Grace sull'aggiunta del pulsante Mastodon

Un gran giorno, proprio alla vigilia della "festa dell'Europa"!

@Che succede nel Fediverso?

eupolicy.social/ap/users/11592…


Excited to announce that the @EUCommission has updated it's follow buttons on the website footer!
What's that first platform there? Could that be #Mastodon?
And where did the link to #X go?
All the posts and comments here on Mastodon calling for this, trust me we read them!

#SocialMedia #EU #EuropeanCommission #FollowUs


Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The media in this post is not displayed to visitors. To view it, please go to the original post.

Excited to announce that the @EUCommission has updated it's follow buttons on the website footer!
What's that first platform there? Could that be #Mastodon?
And where did the link to #X go?
All the posts and comments here on Mastodon calling for this, trust me we read them!

#SocialMedia #EU #EuropeanCommission #FollowUs

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Riflessioni tossiche sul Fediverso.

Terza puntata.


Alcuni giorni fa sono incappato per caso in un post con il quale un account che non conoscevo comunicava di avere l'abitudine di bloccare tutti coloro che scrivessero post più lunghi di 500 caratteri. Solo io penso che, allo stesso modo, avrebbe potuto scrivere che non intedeva interagire con chi talvolta indossasse i pantaloni neri o con chi bevesse latte a colazione?

Indosso quasi sempre pantaloni neri, a colazione di solito bevo latte, inoltre spesso scrivo post ben più estesi di 500 caratteri. Per gentilezza mi sono dunque premurato di provvedere al blocco dell'account sconosciuto per risparmiargli la fatica; dopo di che, come mio solito, mi sono scatenato nelle mie elucubrazioni tossiche.

§

Sono nel Fediverso dal 2022, non ricordo esattamente da quando: prima di piantare le radici in Poliversity.it mi ero iscritto a Livello Segreto, in epoche in cui progettavo di sbirciare per qualche mese e poi andarmene.
Invece sto ancora resistendo dopo quattro anni.

Dal 2022 mi è capitato di bloccare per sfizio soltanto l'account sconosciuto di cui sopra, mentre blocchi ragionati sono stati quelli rivolti al bridge verso il malefico Bluesky, a qualche dannoso spammer, e ad appena due altri account. Questi due altri account sono dunque LE eccezioni.

Eccezioni: ecco la parola magica. Due account talmente insopportabili e ingestibili da indurmi ad assicurarmi che non potessero interagire con i miei post.

Se erano eccezioni, qual è stata la normalità? Se non ho piacere di vedere un account mi limito a silenziarlo. Il silenziamento è elegante: lascia agli altri la libertà di navigare, leggere, cercare, informarsi. Il blocco, invece, è una violenza, in quanto limita l'orizzonte di chi blocchiamo.

Un Fediverso in cui tutti bloccassero tutti sarebbe un Soliverso. Il Soliverso non sarebbe interessante.

§

Concludo con gli hashtag che voglio appiccicare a questo post: #riflessionitossiche e #silenziamento.
Non cito alcuna community.1

Arrivederci alla prossima riflessione tossica.

1 Il mio admin d'istanza @macfranc mi chiede di citare la sua community @fediverso che amministra e modera personalmente. Questa è un'eccezione che posso concedermi: una community nel cui admin ho fiducia. Non posso che accontentarlo, senza che ciò confuti le mie pensate tossiche delle prime due puntate.

Questa voce è stata modificata (3 mesi fa)
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Le conferenze FediForum e 2mr.social di questa settimana dimostrano come il fediverso stia cercando di costruire connessioni con la politica europea

La scorsa settimana si sono tenute due conferenze sul fediverso, entrambe caratterizzate da interessanti iniziative volte a costruire ponti: da un lato verso i politici europei, dall'altro verso atproto, superando i limiti dei protocolli. L'ultima edizione del FediForum ha visto come ospite d'onore un europarlamentare olandese dei Verdi e ha dedicato ampio spazio a interventi introduttivi sia su ActivityPub che su atproto. Il lunedì successivo, la conferenza tedesca 2mr.social, organizzata da Save Social ad Amburgo, ha riunito politici, media e rappresentanti della società civile, concludendosi con un dibattito sulla possibilità di trovare un terreno comune tra i progetti basati su Mastodon e atproto.

connectedplaces.online/reports…

@Che succede nel Fediverso?

Connected Places è un progetto nato dalla passione di @Connected Places. Vuoi supportare il loro lavoro? Puoi fare una donazione cliccando qui
Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

Our @fediforum@mastodon.social demo is up! 🔥

We showed off Bonfire Mosaic and our ongoing work on federated groups and new publisher tools we’ve been co-designing with jacobin.de, including federated discussion threads that can be embedded on their existing website.

Built on our modular framework for community-governed digital spaces.

Watch 👉 spectra.video/w/hV9wzGzsXvNj...

in reply to Bonfire

You can read more about our work on groups in this previous blog post: bonfirenetworks.org/posts/wh...

And if you're an #ActivityPub developer who's interested, please join the W3C task force discussions: github.com/swicg/groups/issues

reshared this

Poliverso - notizie dal Fediverso ⁂ ha ricondiviso questo.

The paper Governing Together: Toward Infrastructure for Community-Run Social Media by @s0hw@hci.social @andresmh@hci.social and colleagues at hci.princeton.edu (which we will discuss at #FediForum today) takes on a tension at the heart of decentralised social media. The fediverse promises to empower communities to govern themselves and set norms in their own context, on their own terms. But communities can't actually govern in isolation. Their members talk across boundaries, bad actors hop between servers, and the rules one community sets can directly undermine another's. The authors call these "governance frictions."

Their argument is that we've spent a lot of design effort looking inside communities, like improving moderation tools and onboarding, but almost none on what they call inter-community governance: the infrastructure that lets communities coordinate, share information, and manage their relationships with each other.

To explore what that infrastructure could look like, they ran four design workshops with 24 Fediverse admins, moderators, and developers. Participants imagined ideal tools, and the authors synthesized those ideas into six concrete challenges, like making governance decisions visible, sharing nuanced information about issues, controlling who you share what with, and minimizing barriers to adoption.

The synthesis lands on three design principles:

Modularity: communities need a shared vocabulary, like a "Governance Nutrition Facts" label, so they can read each other parsimoniously.

Polycentricity: communities should sit in overlapping "trust bubbles," not one global network, so they can have nuanced, evolving relationships.

And forkability: communities should be able to copy and adapt each other's governance structure and rules, preserving autonomy while reducing labor.

The big takeaway: decentralisation alone isn't enough. If we want community-run social media to actually work, we need to design the connective tissue between communities, and the design principles here may apply well beyond the Fediverse, to any platform where multiple communities coexist.

bonfire.cafe/post/01KQETGFGP...


Today at #FediForum we'll have a discussion with some of the co-authors of the academic paper Governing Together: Toward Infrastructure for Community-Run Social Media. There's no better time to read this paper!

bonfire.cafe/post/01KQDCWGK0...

@mayel@bonfire.cafe:

If you're attending #FediForum let's have a discussion tomorrow around this open access paper: Governing Together: Toward Infrastructure for Community-Run Social Media which argues that decentralized platforms like the Fediverse focus on governing within communities, but ignore the frictions between them. From workshops with 24 Fediverse community organisers, they identify six design challenges (visibility, information collation, tiered sharing, relationship-building, customization, and adoption) and propose three principles for "inter-community governance": modularity (shared vocabulary, like governance nutrition labels) and forkability (copy and adapt others' governance structure or rules), polycentricity (overlapping trust bubbles instead of one global network, i.e. archipelagos), . Decentralisation and autonomy alone aren't enough, communities need connective tissues to interconnect them beyond just technical federation (a mycelium network if you like 😊)
If you're interested and are able to read or peruse it ahead of time that will help us have a more grounded and potentially productive discussion based on it...



reshared this