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

Complete this sentence:

Fediverso
169 88 79

Gli ultimi otto messaggi ricevuti dalla Federazione
  • @johannab No, not at all snarky. 💕

    What is so interesting is to discern between the technical and social, and I think that most people have a very functional-technical perspective of what it means to communicate online, so to say. Consider it merely as extra channels to interact with others, more choice to connect.

    But of course our online social network is much more than merely a channel, and we have to 'project our social' somehow over these thin copper and fiberglass wires, while we try to make sense and interpret the social signals that come from other remote places.

    I think we underestimate the impact of communicating online, and the narrow 'social bandwidth' that our current networking tools support. Then we translate online situations to how we would behave offline and get wrong expectations, misconceptions, and subequenctly miscommunications.

    We are still all youngers online, still all learning the ropes, while we do social networking offline for 1,000's of years already.

    read more

  • @smallcircles

    Awesome!

    I hope my response didn't come off snarky, as that wasn't how I meant it - at worst I intended to be a bit pedantic. And relatable analogies are *always* at my fingertips when talking to the inexperienced or "non-tech" social network users, for sure.

    But *eventually* we need to draw people in to a little more media- and tech-literate understanding.

    I'm bookmarking your blog post, thanks - this is a topic in my current academic modules and my hoped-for masters capstone

    read more

  • @johannab

    What I particularly like in your definition, is that it makes clear that "fediverse" by itself indicates a pure technosphere. It enables social communication, and merely facilitates it. What people do on that channel, the way they communicate and how they interact with others then determines the social experience.

    SX starts to consider a social experience from the most personal perspective, where a person has individual needs wrt their online participation. Then using the "Pyramid of perspective" this scale up to consider inter-personal relationships, and at the top of the pyramid and at the largest scale we shape the constructs of society together.

    (Note that SX is a universal solution development methodology, even though it starts with a focus on social web and software development.)

    See also: https://coding.social/blog/reimagine-social/#pyramid-of-perspective

    read more

  • @johannab

    That is a good, more matter of fact characterization to all the analogies indeed. Thank you.

    read more

  • @smallcircles

    Other: loosely-bound meta-network of more tightly-bound community or topical networks.

    I *describe my experience* using all kinds of analogies such as the other options in this poll.

    read more

  • @Curry @theraccoonbytes I was thinking of privately reaching out to Casey and PJ first (Kevin has barely used the instance) to see what their plans are for the future...

    and then maybe try to assemble a group of volunteers to see if anyone is interested in helping out with hosting, moderation, onboarding, community engagement, etc.

    For now whenever I can I browse their local timeline and interact with people to make them feel seen and valued...

    read more

  • @draNgNon thanks, some very good food for thought.

    I think the crucial point is that we do not know and do not offer proper ways to deal with different modes of communication, esp. if the only medium channel constitutes a stream of sticky notes, such as we have here in this space.

    On the first point, when is something an vs. a healthy interest area, I think depends how well one is able to cross the 'membranes' of all the various social contexts and information spaces one navigates online, as it were.

    There should be a place for 'influencing' to an extent if only to reach your crowd and build community and such. But all in balance and proportion and clear social context preferably. Non-profits and groups want to influence, we may want to be informed.

    To the last point. There's urgency to address the dark world situation, and either organize or lose. defines as a way to engage in constructive ..

    https://social.coop/@smallcircles/116159361728695210

    read more

  • @theraccoonbytes @_elena Are there specific measures I can be taking to help keep our beloved alive? Besides being active myself?

    read more
Post suggeriti
  • 0 Votes
    24 Posts
    88 Views
    @potterybyosa good question! That name sounds correct.
  • 0 Votes
    1 Posts
    10 Views
    Week in Fediverse 2026-01-09Servers- Wafrn v2026.01.02- snac v2.86- Ktistec v3.2.7- Mitra v4.16.1- Mastodon v4.5.4- Bookwyrm v0.8.3- PieFed v1.4.5- shops v0.2.0- Cross-posting is coming to NodeBB!- Lemmy Development Update December 2025Clients- IceCubesApp v2.12.2- tooi v0.17.0- Thunder v0.8.4- NeoDB You v1.0.6- Phanpy changelogTools and Plugins- Poduptime v6.1.0Articles- Mandy: ActivityPub on Goblins-----#WeekInFediverse #Fediverse #ActivityPubPrevious edition: https://mitra.social/objects/019b800a-060c-a6fc-6a7a-4c9bef0d6ea9
  • 0 Votes
    47 Posts
    3k Views
    @wjmaggos @evan @chris @blaine @anewsocial Huge difference between screenshotting vs always being a part of another network and another organization's infrastructure by default.To be clear, I don't agree with Fediverse platforms depending on a blocklists, I much prefer approve-lists, but I don't think that's a popular opinion either.
  • 0 Votes
    1 Posts
    18 Views
    Mastodon has a concept called "pinned statuses", which is a special collection attached to a Person actor. https://docs.joinmastodon.org/spec/activitypub/#featured It wasn't readily known how this collection is updated and federated (not without code achaeology), but claire@social.sitedethib.com recently shared some additional info :smiley: The actor itself will issue an Add activity targeting the collection with the status in object. This activity is sent to all followers of the actor. No activity is sent if the actor has no remote followers. A Remove is sent when a pinned post is unpinned. This is what the Add looks like: { "@context": "https://www.w3.org/ns/activitystreams", "type": "Add", "actor": "https://example.org/users/testUser", "target": "https://example.org/users/testUser/collections/featured", "object": "https://example.org/users/testUser/statuses/115266412340579560" } The corresponding Remove is identical except for type, which is of course, Remove.