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

  • OpenStars@piefed.social
    link
    fedilink
    English
    arrow-up
    2
    ·
    4 hours ago

    Try PieFed. The reason you keep seeing furry content on Lemmy is that you are forced into browsing “All” in order to see some new content, but then you don’t like some of the new content that you see.

    On PieFed with categories of communities (instance-defined Topic areas and user Feeds that are user-customizeable and shareable) you can have your cake (have a tight Subscribed feed, e.g. without being subscribed to any politics communities if you wanted) but then also eat it too (news & politics content is but a click away, or movies & TV).

    Combining together comments across all cross-posts also helps a lot with community discovery. I haven’t searched by All in a long time, unless I just felt nostalgic and wanted to, but there is no longer any need with this new model.