this post was submitted on 14 Jan 2026
195 points (95.3% liked)

Fediverse

38906 readers
549 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, Mbin, etc).

If you wanted to get help with moderating your own community then head over to !moderators@lemmy.world!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration)

founded 2 years ago
MODERATORS
 

Following https://tarte.nuage-libre.fr/c/fediverse/p/194717/we-need-more-users I decided to explore data a little bit more. I'm not the biggest fan of growth-as-as-target so I wanted to see how much the people were participating in the discussion.

The data

I took the data from the API explorer in https://api.fediverse.observer/ with this query:

query {  
  monthlystats {  
    date_checked  
    softwarename  
    total_posts  
    total_users  
    total_comments  
  }  
}  

Then parsed the json with this https://jqlang.org/ filter:

jq '.data.monthlystats | map(select(.total_users > 0 and (.softwarename == "lemmy" or .softwarename == "mbin" or .softwarename == "kbin" or .softwarename == "piefed"))) | group_by(.date_checked) | map( {date_checked: .[0].date_checked, total_users: ([.[] | .total_users] | add), total_posts: ([.[] | .total_posts] | add), total_comments: ([.[] | .total_comments] | add)}) | map({date_checked, posts: .total_posts/.total_users, comments: .total_comments/.total_users}) | sort_by(.date_checked) | map([.date_checked, (.posts | tostring), (.comments | tostring)]) | .[] | @csv'  

(As you see I filtered for the threadiverse. I also did the same with all software, I'll put the graph for that in comments)

Then did a good old' chart

What to think of it

I don't know. Users' activity is on the rise and I find it nice

you are viewing a single comment's thread
view the rest of the comments
[–] sol@feddit.uk 7 points 22 hours ago

My experience is that Lemmy is decent for tech-related stuff but outside of that, it can be difficult to find active communities depending on the hobby. I just went looking for a good Spanish learning or general language learning community and the few that I found have been inactive for months. Maybe I wasn't looking in the right place (I searched in Communities > All).

I don't think maximum growth should be a goal for Lemmy, I just think it needs a critical mass of activity to keep it interesting. Currently I think we just about have that for many tech/FOSS related topics but not so much outside it. The problem, I think, is that a lot of people who aren't into tech/FOSS issues don't know about Lemmy and don't see why they wouldn't just use Reddit or Discord.