this post was submitted on 29 Dec 2024
6 points (65.0% liked)

Ask Lemmy

27352 readers
1770 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either [email protected] or [email protected]. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email [email protected]. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try [email protected] or [email protected]


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

Suppose I am thinking of a website. I might think to myself "this would be great to have in the fediverse" (the last time I thought this was with Neopets, as I was joking that still being HTML was their way of waiting 20 years for the fediverse to be invented). But unless you have some kind of third party linking technology, I am aware there are limitations in a website's code. But you can't simply take a glance at a website and know if it's compatible, right? Is there a way to know without having to constantly ask admins and take their word? What sites would you want to join the fediverse if you could inspire it?

Speaking of third party software or tech, can they join? I hear the Hypothesis toolbar is quite popular as a third party feature and might be good for this thought experiment.

top 2 comments
sorted by: hot top controversial new old
[โ€“] [email protected] 8 points 1 week ago

The HTML is just the user interface, the surface. 90% of the work happens under the hood, processing and forwarding posts, all the logic... You can't transfer that from a random site to another. It's all purpose-built.

[โ€“] [email protected] 7 points 1 week ago* (last edited 1 week ago)

Fediverse uses ActivityPub protocol, you have to implement the protocol to be part of the Fediverse. Anything that implements it can join.

There's a special endpoint that all Fediverse instances have to implement and if that endpoint exists and is valid, the instance is part of the Fediverse. Note that if you implement only the single endpoint, it's pretty useless, because no interaction occurs, so you need to implement more parts to actually be a meaningful part of the Fediverse.

As an example, I'm currently writing a blog system for my blog which will implement ActivityPub, so the posts will be directly available in Lemmy. And all the Lemmy comments will appear on my blog.

Edit:. If you're interested more specifically in the special endpoint, it's /.well-known/nodeinfo, every Fediverse instance (no matter the software) will have one, for example your Lemmy instance: https://lemmyusa.com/.well-known/nodeinfo or mine: https://lemmings.world/.well-known/nodeinfo or the Mastodon server I'm on: https://phpc.social/.well-known/nodeinfo