Skip to content

Sudonix and fediverse

Solved Customisation
  • @Panda yes, that appeared after the upgrade to 3.8.4. Not sure where it came from and need to investigate.

  • @Panda said in Sudonix and fediverse:

    would not having the nodebb in a root website url potentially add to problems?

    No. That shouldn’t have any bearing.

  • @phenomlab I’ve seen the same issue on my forum.

  • Am I understanding this correctly. This sounds like it pulls in posts from other sources that have the same technology without having to go to the actual page into the category that you setup for it. There is also the ability to follow people on those sites and get their new posts to automatically show up on your site under the specified category.

    How is this different than rss feeds? If I were to comment on my site with the category setup like this, then that comment would show up on the other site and vise versa? Then in addition I would be able to see all of the comments?

  • @Madchatthew said in Sudonix and fediverse:

    If I were to comment on my site with the category setup like this, then that comment would show up on the other site and vise versa? Then in addition I would be able to see all of the comments?

    Yes, this is how federated content is supposed to work. Personally, I do not see the appeal. It means ingesting foreign content into your own site which seems slightly pointless to me as the content already exists elsewhere. Isn’t the point of your own forum to be where the content should originate?

  • @phenomlab said in Sudonix and fediverse:

    Isn’t the point of your own forum to be where the content should originate?

    Agreed!

  • @phenomlab I agree with you as well. If it is my sight, I want my content/users content for my sight. I would just link out to another site or post if I found it relevent rather than have all of that other site’s content on my own site. Besides, I believe with SEO, having links out like that is supposed to help your score. If I am wrong about that let me know.

  • @Madchatthew you’re 100% right.

  • I had the intuition that Luddite @phenomlab wouldn’t be rushing to adopt Activitypub, thats why I made the post encouraging him to get onboard 🙂
    I think @phenomlab your contributions right now on that area would be very helpful.

    Federation will have huge advantages, especially for starting off forums that would otherwise be quiet, because it can bring in posts from similar sites to increase content.

    The only problem at the moment is it doesn’t work perfectly, not the concept!

  • @Panda said in Sudonix and fediverse:

    Federation will have huge advantages, especially for starting off forums that would otherwise be quiet, because it can bring in posts from similar sites to increase content.

    Can’t say I agree with this statement. To me, if I visit a new forum, I’d much rather be viewing original content rather than that which I can easily consume elsewhere. I understand that new forums are often empty with not much content, but the growth needs to be organic rather than ingested from elsewhere to make it look busy.

    Using RSS feeds to pull in content from remote sites is fine as long as you use it for reading reference and create a discussion around the topic you are referring to (as I do with Sudonix), but absolutely pointless if you include the entire article and all associated responses - you may as well just visit the origin site instead.

    Another issue is SEO and the impact duplicated content will have on your own forum when it comes to Google indexing your site. Duplicated content negatively impacts SEO and in addition, that same content may be proprietary meaning you need permission to include it on your site.

    Potentially, it’s a legal minefield which should be treated with trepidation to ensure no copyright infringement takes place.


Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

Related Topics
  • NodeBB recent cards customisation

    Solved Customisation
    3
    2 Votes
    3 Posts
    62 Views

    @phenomlab thank you very much for the assistance Mark, massively appreciated as always.

    The great thing about this is it’s all documented for other NodeBB users that come looking for solutions 😃.

    Looks far better 🤝👍🏻.

  • CSS code customization for the link preview plugin

    Solved Customisation
    4
    3 Votes
    4 Posts
    547 Views

    @crazycells said in CSS code customization for the link preview plugin:

    does OGProxy show the pdf previews as well?

    Not yet, but it could with a bit of additional code.

  • Page control arrows for PWA

    Solved Customisation
    27
    25 Votes
    27 Posts
    1k Views

    @crazycells it is, yes - I think I’ll leave it as there is no specific PWA CSS classes I know of. Well, you could use something like the below, but this means multiple CSS files for different operating systems.

    /** * Determine the mobile operating system. * This function returns one of 'iOS', 'Android', 'Windows Phone', or 'unknown'. * * @returns {String} */ function getMobileOperatingSystem() { var userAgent = navigator.userAgent || navigator.vendor || window.opera; // Windows Phone must come first because its UA also contains "Android" if (/windows phone/i.test(userAgent)) { return "Windows Phone"; } if (/android/i.test(userAgent)) { return "Android"; } if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) { return "iOS"; } return "unknown"; // return “Android” - one should either handle the unknown or fallback to a specific platform, let’s say Android }

    Once you’re in that rabbit hole, it’s impossible to get out of it.

  • CSS codes to prevent votes to disappear

    Solved Customisation
    3
    1 Votes
    3 Posts
    250 Views

    @phenomlab yes, it is 🙂 thanks a lot…

  • Ubuntu Upgrade All Packages

    Solved Linux
    3
    3 Votes
    3 Posts
    342 Views

    @phenomlab Upgraded, everything works 🙂

  • Post Style View

    Solved Customisation
    67
    18 Votes
    67 Posts
    5k Views

    @cagatay

    Just add margin-left on the element like @phenomlab said to you :

    topic [component="post/parent"] { margin-left: 10px; }

    aa08c62b-4223-4cba-8c0f-c73d50474c0d-image.png

    Maybe @phenomlab have a better way

  • CSS codes for fa-info icon

    Solved Customisation
    9
    6 Votes
    9 Posts
    602 Views

    I have just figured it out…

    it can be targeted with text-decoration-color:

    I was mistakenly using color

  • Nav Drop-down [Sudonix]

    Moved Bugs
    3
    1 Votes
    3 Posts
    310 Views

    @phenomlab said in Nav Drop-down [Sudonix]:

    @jac Fixed

    d2e5410b-fa82-4fc9-a861-7913d3c560ab-image.png

    Thanks for reporting.

    Thanks mate, not a problem 😁.