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


All will always be a dumpster fire.
PieFed has Popular, which is similar except curated to have less memes https://piefed.social/home/top/popular
The reason why I checked “All” is because I wanted to see which posts has the most upvotes.
This to me is an indicator of the quality of the users. At the time the top post in “All” had ~950 upvotes.
What does the majority of the users consume and deem worthy of upvoting? If it’s all memes that have the most upvotes and not original content or genuine posts then it’s the users themselves that are the problem.
As an outsider why would I want to join the Fediverse if the first things I see are memes/shitposting/bad news? I can get that on all the other already established social sites.
If you want others to join the Fediverse then you all need to create better OC. It’s literally that simple.