Co-Founder (NodeBB) | Husband 🤷‍♂️ and Dad 🙉 to three | Rock Climber 🧗‍♂️ | Foodie 🥙 | Conductor 🎵 | Saxophonist 🎷

✅ Small teams craft better code.
🇨🇦 Made in Canada
🗨️ Federating NodeBB with funding from NLNet ♥️🇪🇺

  • 1 Post
  • 14 Comments
Joined 3 months ago
cake
Cake day: August 14th, 2025

help-circle

  • I’ve been looking into how to accomplish this too… because it is a UI/UX problem and I am very bad at designing user interfaces.

    Mixing them like so works, although it’s hard because then it minimizes the size of topics (since it is just the title.) It means microblog content get a bit of a UI boost due to on screen size.

    Limiting the max height of microblog posts and showing a snippet of the threaded content OP is another way, but that makes the page more feed-like and less of a “topic listing”, which isn’t always the way to go either.

    For reference, NodeBB also mixes threads and microblog posts. We do this by generating a title from microblog posts. It’s not the best solution either.





  • That’s one of the issues that need to be worked through. It’s a totally legitimate concern.

    In cases where communities with polarising viewpoints discuss the same topic, it would lead to inter-community disputes and exacerbate some instance relationships.

    One solution would be to have the original community be responsible for moderation, and moderation actions from cross-posted communities only affect their “view”, so to speak.

    I don’t know what the answer is quite yet.






  • Yes. It is being worked on, and you are not far off.

    Respondents here have mentioned that Piefed and Lemmy list cross-posts in places, sometimes in the community listing, sometimes in the post itself.

    That’s missing the point, which is that the conversations should be combined.

    Take it a step further, though. You shouldn’t have to combine posts, they should all be the same post.

    So how do we get there? Both Piefed and Lemmy do this internally, and don’t expose this to other instances. NodeBB (aka me) is hoping to explore this question and put in the protocol research to make this a reality. I’ll be working together with members of the Forum and Threaded Discussions Working Group about these things. (forum-wg@community.nodebb.org)

    The issue (as usual) is buy-in from Lemmy and Piefed (and don’t forget mbin!) We all have to move in lockstep so that nobody gets left behind.

    We’ve only just started discussions on how this might work, but hopefully we’ll be able to make this a reality soon.



  • Hey! Thanks for the concise reply. There’s a lot of technical stuff I can say about Discourse and such, but because I am the maintainer for NodeBB it is probably in my best interest to keep my mouth shut as we directly compete!

    Anyhow, the OrderedCollection stuff is actually all from me. I’ve been working as part of the Threadiverse working group to bring intercompatible formats to all threadiverse software, which besides Discourse and NodeBB, includes Lemmy, Piefed, and Mbin.

    The OrderedCollection enables software (like NodeBB) to quickly backfill entire topics. This is a huge problem on the microblog-side of the fediverse, and is not really a problem on the theadiverse, since there is already strong support for synchronization. However, smaller instances often do run into issues where they can’t ever “catch up” on old posts because there’s no way to get those posts. (e.g. start following a new community, you can’t read any of the old content)

    To that end, Lemmy and Piefed have (or soon will) ship code to allow software to backfill using OrderedCollections. They don’t use them yet, but they will provide them. It helps software like mine because I will then be able to see entire threads from communities I don’t even know about or follow. It’s a huge boost to discovery! :smile:

    > while Discourse decided to use an OrderedCollection, with the first item being the opening post.

    NodeBB also does this, but they’re not incompatible per se. You’ll see NodeBB topics showing up just fine on Lemmy and Piefed (see activitypub@community.nodebb.org or general), and that’s because NodeBB does the extra step of announcing OP and replies, just like Lemmy/Piefed.

    Importantly, Discourse does this too, but because of the inability to find Discourse categories, I don’t think it’s easy to follow them. Chicken and egg, really. The way the AP integration in Discourse is built-out, it is more insular by design. Threads from Discourse only ever go out to the fediverse, you can’t post in from the fediverse. That makes those communities much more insular by design and severely limits discovery.