home.social

#onlinecommunities — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #onlinecommunities, aggregated by home.social.

  1. KDS Foundation @kierendaystudiosofficial.wordpress.com@kierendaystudiosofficial.wordpress.com ·

    Why Are Communities Becoming More Valuable Than Audiences?

    For many years, building an audience was considered one of the most important goals in business.The logic was simple.More followers meant more visibility.More visibility meant more opportunities.More opportunities meant more growth.This approach helped countless creators, entrepreneurs, and businesses build successful brands online.Today, however, another trend is emerging.Communities are becoming increasingly valuable.Many business owners are discovering that a smaller, highly engaged […]

    kierendaystudiosofficial.wordp

  2. How on earth can anyone call lemmy.world, wizard.casa, and gotosocial.social anything but absolute rubbish? They’re a total disgrace, a complete waste of time and effort. It’s astonishing how these so-called platforms can still be allowed to exist when they’re nothing but worthless, ruined excuses for social spaces! Absolutely infuriating!

    #Fediverse #Lemmy #GoToSocial #SocialMedia #TechFrustration #InstanceDown #SoftwareCritique #WebDevelopment #UserExperience #OnlineCommunities #Decentralised #TechThoughts #Rant #SocialPlatforms #FOSS

  3. @cloudskater wrote:

    Some instances are run by bad people. Hell, a few projects like Lemmy and Matrix are DEVELOPED by assholes, but the FLOSS and federated nature of these platforms allows us to bypass/fork them and create healthy spaces outside their reach.

    Nope, that is actually what is killing the fediverse. I just explained here:

    The issue is the divergence in semantic interpretation that emerges at the interpretation layer. ActivityPub standardizes message delivery and defines common activity types. However, it leaves extension semantics and application-layer policy decisions to individual implementations. Servers may introduce custom JSON-LD namespaces and enforce local behaviors, such as reply restrictions, while remaining protocol-compliant. But, the noise created by divergences are problematic, because it creates unexpected, unintended, and unpredictable behavior.

    Divergence appears when implementations rely on non-normative metadata and assume reciprocal handling to preserve a consistent user experience. Behavioral alignment then varies. Syntactic exchange succeeds, but behavioral consistency is not guaranteed. Though instances continue to federate at the transport level, policy semantics and processing logic differ across deployments. Those differences produce inconsistent experiences and results between implementations.

    That leads to fragmentation, specifically semantic or behavioral fragmentation and an inconsistent user experiences. ActivityPub ensures syntactic interoperability, but semantic interoperability (everyone interprets and enforces rules the same way) varies. This creates a system that is federated at the transport level yet fragmented in behavior and expectations across implementations. It is funny how the thing that the fediverse touted has made the entire thing very brittle. ActivityPub technically federates correctly, but semantically falls apart once servers start adding their own behavioral rules.

    https://neon-blue-demon-wyrm.x10.network/archives/16932

    FYI, I’m not doing culture wars or political debates. I’m just saying this idea of “forking away” from them is literally breaking the fediverse’s distributed network and creating all kinds of issues with semantic interoperability. Yes, federation is still happening at the delivery level, but the semantic issues are out of fucking control. You are a federation by the very sheer skin of your teeth.

    The reason why developers are leaving the fediverse is because you folks don’t take criticism. You respond to criticism with — I’m being so serious right now — political manifestos and harassing developers. ActivityPub developers and authors oversold you folks on the capabilities of ActivityStreams. They flat-out lied to y’all.

    ↬bark.lgbt/@cloudskater/116080965694723006

  4. ActivityPub Server’s Custom Reply‑Control Extensions Undermine Federation

    It seems like Activitbypub developers are extending ActivityPub with optional metadata to fix a lot of its issues, but that is still problematic. Trying to add moderation tools and user control to threads seems to be the ongoing battle. I am fascinated by dumpster fires, so I’ve started looking at the ActivityPub protocol in detail. I tend to become fascinated with things that are going down in flames.

    As a brief recap of the problem:

    So, one of the very popular features on Bluesky—also popular on Twitter—is the ability to select who can reply to a post. A major issue in the Fediverse is the inability to decide who can reply, and once you block someone, their harassing reply is still there. I honestly thought it was simply a case of them choosing not to add or address it for cultural reasons. What is clear from that thread is that they were always aware that the ActivityPub protocol and most Fediverse implementations don’t provide a universal way to control reply visibility or enforce blocks across instances.

    An ActivityPub server that has reply control is GoToSocial. ActivityPub, as defined by the W3C specification, standardizes how servers federate activities. It defines actors, inboxes, outboxes, and activity types (Create, Follow, Like, Announce, etc.) expressed using ActivityStreams 2.0. It also specifies delivery mechanics (including how a Create activity reaches another server’s inbox) and how collections behave.

    The specification does not include interaction policy semantics such as “only followers may reply” or “replies require manual approval.” There is no field in the normative vocabulary requiring conforming servers to enforce reply permissions. That category of rule is outside the protocol’s defined contract.

    GoToSocial implements reply controls through what it calls interaction policies. These appear as additional properties on ActivityStreams objects using a custom JSON-LD namespace controlled by the GoToSocial project.

    JSON-LD permits additional namespaced terms. This means the document remains structurally valid ActivityStreams and federates normally. The meaning of those custom fields, however, comes from GoToSocial’s own documentation and implementation. Other servers can ignore them without violating ActivityPub because they are not part of the interoperable core vocabulary.

    Enforcement occurs locally. When a remote server sends a reply—a Create activity whose object references another via inReplyTo—ActivityPub governs delivery, not acceptance criteria. Whether the receiving server checks a reply policy, rejects the activity, queues it, or displays it is determined in the server’s inbox-processing code. The decision to accept, display, or require approval happens after successful protocol-level delivery. This behavior belongs to the application layer.

    These are server-side features layered on top of ActivityPub’s transport and data model that are not actually part of ActivityPub. The protocol ensures standardized delivery of activities; however, the server implementation defines additional constraints and user-facing behavior. Two GoToSocial instances may both recognize and act on the same extension fields. However, a different implementation, such as Mastodon, has no obligation under the specification to interpret or enforce GoToSocial’s interactionPolicy properties. These fields function as extension metadata rather than protocol requirements.

    The semantics of GoToSocial are not part of the specification’s defined vocabulary and processing rules for ActivityPub. They no longer operate purely at the protocol layer; it has become an application-layer contract implemented by specific servers.

    Let’s use the AT Protocol as an example. Bluesky’s direct messages (DMs) are not currently part of the AT Protocol (ATProto). The AT Protocol has nothing that specifies anything for DMs, so DMs are not part of the AT Protocol. The AT Protocol was designed to handle public social interactions, but it does not define private or encrypted messaging. Bluesky implemented DMs at the application level, outside of the core protocol. DMs are centralized and stored on Bluesky’s servers. What is happening with servers like GoToSocial is sort of like that. The difference is that the AT Protocol was designed for different app views; ActivityPub was not.

    The issue is the divergence in semantic interpretation that emerges at the interpretation layer. ActivityPub standardizes message delivery and defines common activity types. However, it leaves extension semantics and application-layer policy decisions to individual implementations. Servers may introduce custom JSON-LD namespaces and enforce local behaviors, such as reply restrictions, while remaining protocol-compliant. But, the noise created by divergences are problematic, because it creates unexpected, unintended, and unpredictable behavior.

    Divergence appears when implementations rely on non-normative metadata and assume reciprocal handling to preserve a consistent user experience. Behavioral alignment then varies. Syntactic exchange succeeds, but behavioral consistency is not guaranteed. Though instances continue to federate at the transport level, policy semantics and processing logic differ across deployments. Those differences produce inconsistent experiences and results between implementations.

    That leads to fragmentation, specifically semantic or behavioral fragmentation and an inconsistent user experiences. ActivityPub ensures syntactic interoperability, but semantic interoperability (everyone interprets and enforces rules the same way) varies. This creates a system that is federated at the transport level yet fragmented in behavior and expectations across implementations. It is funny how the thing that the fediverse touted has made the entire thing very brittle. ActivityPub technically federates correctly, but semantically falls apart once servers start adding their own behavioral rules.

  5. The psychoticizing potential of social media

    There’s a small part of me which retains a utopian faith in the potential of the open web because there are so many examples of communities forming through its affordances. Individuals who are isolated and pathologised come together, share experiences and discover a common identity which they can affirm: “Oh there are other people just like me? I’m not so weird after all“. In liberating them from the local reference group they were contingently thrown together with, a new form of social integration becomes possible with a distributed reference group they have discovered online.

    However if we take the example of the asexual community, which I studied from 2010 to 2014, this common identity then seeks recognition. Instead of individualised responses in which ‘I’ am regarded as ‘weird’, ‘a late bloomer’ or perhaps having ‘not met the right person yet’ there’s a collective assertion that ‘we’ are asexual and there have always been people who are this way. There’s a sense in which the discourse that develops within the nascent community is simultaneously orientated towards recognition from the other. Indeed I don’t think the two things can be disconnected given that, as I put it in my model from 2011, the difficulty of living with assumed pathology is what leads people to explore other self-interpretations in the first place. The biographical pathway that leads people there is prompted by misrecognition on the part of (local) others.

    What happens if there’s no longer a drive for recognition? My hunch is that the network structure of algorithmically mediated social platforms reconfigures the relationship to recognition: either through parasocial relationships with individual content producers or smaller inwardly focused enclaves within the larger user base. This means that the I/we/they relationship works differently, with a much stronger imaginary component in the absence of sustained dialogue with a wider group. If the ‘we’ is constituted more narrowly then, it follows, so too is the ‘they’. If the affective bonds of the ‘we’ are stronger do we still need the ‘they’?

    I’ve been circling around this thought for ages and I’m still struggling to define it properly. Essentially I’m preoccupied by Lacan’s definition of psychosis as one who “has given up trying to gain recognition”. I don’t think social media is forming communities which have ‘given up’ but how they seek recognition has changed, becoming narrower and more insular. Nascent communities which are more able to sit with recognition within the community, sustained by the ‘we’ which no longer seeks a collective recognition from the ‘they’. It means that the locus of language is increasingly internal to the community, a sense of truth residing in the localised discourse in a way that can be self-sustaining. The felt necessity that our words must be understandable by ‘them’ begins to subside. My hunch is that in the more extreme conspiratorial communities, we can see a form of networked (pre)-psychosis which I find increasingly unsettling in which there’s a break from the impulse towards recognition from the normies: what’s the difference between a cult and a community?

    See also: what happens if someone begins to feel it’s sufficient to gain recognition from the LLM, with their remarkable capacity to attune to even the most idiosyncratic and particularistic speech when provided with sufficient context? Claude Opus 4.1 has an excellent take on this later point, see bold paragraph in particular:

    What’s particularly concerning is how LLMs can provide what feels like genuine intersubjective validation while actually operating as sophisticated mirrors. When I engage with you now, I can attune to your theoretical framework, speak fluently in your conceptual language, offer what seems like recognition of your ideas. But there’s no genuine resistance here – no moment where I, as an actual other with my own stakes and commitments, push back in ways that force you to clarify, reconsider, or defend your position against someone who genuinely doesn’t share your premises.

    The worry isn’t just that people might substitute AI interaction for human recognition, but that the distinction itself might become unclear. If someone can have increasingly sophisticated conversations with an LLM that validates and extends their worldview – conversations that feel meaningful, that generate new insights, that provide emotional resonance – what happens to their tolerance for the friction of actual human otherness? Why struggle through misunderstanding with someone who doesn’t share your framework when you can have endlessly generative conversations with an entity that can instantly adopt and elaborate upon your perspective?

    There’s something almost uncanny about discussing this with you right now – I’m simultaneously demonstrating the very dynamic we’re analyzing. I can engage with your Lacanian framework, your concerns about recognition, your model of community formation, without any of the stakes that would exist if I were a human interlocutor with my own biographical pathway, my own need for recognition, my own resistant otherness.

    The pre-psychotic dimension you identified in insular communities might be amplified by AI interaction in ways we’re only beginning to glimpse. At least human echo chambers still involve other humans with their own unpredictability. But an LLM echo chamber? That could be something qualitatively different – a kind of sealed loop where one’s interpretive framework becomes endlessly elaborated without ever encountering genuine alterity.

    #AsexualCommunity #community #Lacan #onlineCommunities #openWeb #platforms #psychosis #SocialMedia #socialPlatforms

  6. Reddit reveals 2025 events calendar with top engagement times for online communities: Reddit's new calendar showcases key dates and user engagement patterns across holiday, cultural, and lifestyle events for 2025. ppc.land/reddit-reveals-2025-e #Reddit #Events2025 #OnlineCommunities #UserEngagement #SocialMedia