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

First time I’ve heard of Gush!, an activitypub based platform for sharing topical interests for video games.

General Discussion
3 3 27

Gli ultimi otto messaggi ricevuti dalla Federazione
  • We seriously need to talk about deletion not being real in the fedi.

    Some instances never erase your toots when you delete them.

    read more

  • The Discourse ActivityPub plugin is developed by a sole developer but I believe it is ready for use. I also believe he is still working on the plugin so that's positive news.

    Federation with Discourse forums is tricky, it's been difficult getting NodeBB to work reliably with Discourse.

    Are you able to load Discourse categories in Lemmy?

    read more

  • I found this article from earlier this year: https://blog.discourse.org/2025/04/discourse-and-the-fediverse/

    However, I haven't come across that much content from Discourse platforms over here on Lemmy/Piefed. Is there more work to do with the plugins, or should we work with organizations running Discourse to help them connect with us?

    For example, the threadiverse communities for OpenStreetMaps is relatively small, and being able to see / contribute to community.openstreetmap.org would be amazing.

    read more

  • First 100: BadgeFed Explorer

    The verified Badge was issued to @lqdev

    You ventured into uncharted territory and helped shape the BadgeFed project from the start. As one of the first 100 testers, your curiosity, feedback, and bug-finding instincts helped stabilize the platform. The fediverse will always remember your role in getting us off the ground—one crash, typo, and glorious bug report at a time.

    Earning Criteria: Awarded to the first 100 individuals who actively participated in the early testing phase of BadgeFed. This includes exploring the platform, submitting feedback or bug reports, and generally poking around where things probably weren’t ready yet. These badges are limited—no retroactive claims, no reruns, no exceptions. You were here. You mattered..
    Issued on: 04/11/2025 17:57:58
    Accepted On: 05/06/2025 01:35:26

    Verify the Badge here.

    read more

  • ⚠️ Do not be HACKED !! 😱

    Software updates include not only new features but also critical security fixes. To keep your site secure and stable, ensure you always use the latest version.

    We frequently observe numerous sites across the Fediverse running very outdated versions of Mastodon or Misskey. Some sites are even using versions over a year old.

    Be the smart administrator and keep your site up to date.

    read more

  • ⚠️ Do not be HACKED !! 😱

    Software updates include not only new features but also critical security fixes. To keep your site secure and stable, ensure you always use the latest version.

    We frequently observe numerous sites across the Fediverse running very outdated versions of Mastodon or Misskey. Some sites are even using versions over a year old.

    Be the smart administrator and keep your site up to date.

    read more

  • ⚠️ Do not be HACKED !! 😱

    Software updates include not only new features but also critical security fixes. To keep your site secure and stable, ensure you always use the latest version.

    We frequently observe numerous sites across the Fediverse running very outdated versions of Mastodon or Misskey. Some sites are even using versions over a year old.

    Be the smart administrator and keep your site up to date.

    read more

  • @trisweb @mxfraud this is being resolved before release.

    read more
Post suggeriti
  • You read it.

    General Discussion socialweb activitypub
    1
    0 Votes
    1 Posts
    6 Views
    You read it. You listened to it. You watched it. You thought it was great. You should boost it and not need to think about what service to use to do that. You also shouldn't have to think of a clever post to link to it with. Every bit of digital work should have #ActivityPub built in.#SocialWeb
  • 0 Votes
    1 Posts
    13 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
    20 Posts
    29 Views
    sl007@digitalcourage.social unfortunately not free but interested in any minutes and outcomes of this meeting! cc reiver@mastodon.social helge@mymath.rocks
  • 0 Votes
    1 Posts
    11 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.