Goofed Home

test

$$7553
https://scrapetacular.ydns.eu/u/admin posted on Mar 6, 2026 03:15

Sorry I’m debugging something

https://scrapetacular.ydns.eu/activities/18ff7f92-64fe-4cb6-9510-92a801bd4981

$$11290
https://lemmy.zip/u/IntrovertTurtle posted on Mar 13, 2026 14:15
In reply to: https://scrapetacular.ydns.eu/activities/18ff7f92-64fe-4cb6-9510-92a801bd4981

Test

https://lemmy.zip/comment/25228308

Introducing New Fediverse Software, Goofed v0.0.1, Minimum Viable Shitpost Edition

$$10170
https://scrapetacular.ydns.eu/u/admin posted on Mar 10, 2026 16:13

I’m building a new activitypub/threadiverse software focused on the needs of self hosters who want a single user instance.

I’ve been posting with it semi-regularly for the last month, and I think it’s ready for an open demo.

One of my objectives is to have the lightest resource usage for memory and CPU constrained hardware, as well as the fastest loading web interface for older phones and limited data plans. I ran out of data on my phone last week and having a 41kb front page came in very handy.

You can try the web UI at https://scrapetacular.ydns.eu/latest You can also POST AS A GUEST TO THE FEDIVERSE without signing up. I’m not sure you can do this anywhere else, I’m manually approving posts on the backend because .. well you know. If it asks for a user and pass, use guest and guest, your post will appear with a username like guest4269.

Ideally, open this post https://scrapetacular.ydns.eu/post/10127 and reply to it.

My other plan for mobile is to target the Sync for Lemmy app, as it’s dead, meaning it’s no longer a moving target.

I’ve made a few technical choices aimed at keeping things fast

These include:

No ORMs

  • They are convenient but make performance tuning difficult when things get complex as you don’t write the queries directly

No Javascript

  • I may have to go back on this if I keep the guest posting function, it might need a captcha or anubis.

No nested comments in the web UI

  • Nested comments are super slow, you are essentially querying the database for the OP, then querying for the N immediate children, then doing N queries for all of their children, then keep going recursively until you reach your depth limit, or all comments are found, you then need to render this structure with html/css

No front page images

  • This is more of a personal preference that happened to make things load faster, the front page displays the text of the OP and last few comments IN FULL, giving a good preview of the conversation, and allocating more space to people who write rather than post memes. Inline images in posts are also replaced with links.

No upvotes/downvotes

  • DID YOU KNOW that most threadiverse traffic is upvotes, downvotes adn emojis? You get an instant speedup by simply not processing them. Also, since this is a single user instance, all my comments are by definition awesome

ROADMAP

  • Massive refactor
  • Make the project public
  • unit tests (this is basically my only requirement for v1)
  • sync for lemmy API
  • admin UI
  • “AI” to “My Butt” wordfilter (mandatory and hardcoded)
  • default subscription to /c/fuck_AI
  • Solve channel discoverablity once and for all
  • SUPERBLOCK (i.e. block everyone who liked this comment)
  • dockerfile? I don’t use docker tbh
  • Read Mastodon posts? Do they even have good content?

Tech Stack

  • Go
  • SQLite

I’m using the pure Go sqlite library, Bluemonday for html sanitisation, Blackfriday for Markdown and Migrate for auto db migrations.

End

Thanks to Snoopy and the Cool Froges at jlai.lu for allowing me to test on their channel.

Is this project of interest to you? Have I missed anything obvious? Is there anything else you would like to know?

https://scrapetacular.ydns.eu/activities/50114ac8-fd26-47cd-8fe0-ad97f0027c5e

51 posts in conversation

$$11078
https://lemmy.net.au/u/FreedomAdvocate posted on Mar 12, 2026 23:39
In reply to: https://scrapetacular.ydns.eu/activities/3e86b7f8-5c83-4ca1-98a2-7105270683de

I’m trying to understand why anyone would opt to self host an instance just for themselves. What are the benefits? A hypothetical that has likely never happened isn’t a benefit.

https://lemmy.net.au/comment/1338949
$$11084
https://scrapetacular.ydns.eu/u/admin posted on Mar 12, 2026 23:49
In reply to: https://scrapetacular.ydns.eu/activities/6854a009-e7a9-45d1-9c27-4ca0814fcbd3

I swear to god this wasn’t me or any of my immediate family

https://scrapetacular.ydns.eu/activities/9dd74bf5-4079-4724-ae36-982862c25d4c

Introducing New Fediverse Software, Goofed v0.0.1, Minimum Viable Shitpost Edition

$$10127
https://scrapetacular.ydns.eu/u/admin posted on Mar 10, 2026 14:56

I’m building a new activitypub/threadiverse software focused on the needs of self hosters who want a single user instance.

I’ve been posting with it semi-regularly for the last month, and I think it’s ready for an open demo.

One of my objectives is to have the lightest resource usage for memory and CPU constrained hardware, as well as the fastest loading web interface for older phones and limited data plans. I ran out of data on my phone last week and having a 41kb front page came in very handy.

You can try the web UI at https://scrapetacular.ydns.eu/latest You can also POST AS A GUEST TO THE FEDIVERSE without signing up. I’m not sure you can do this anywhere else, I’m manually approving posts on the backend because .. well you know. If it asks for a user and pass, use guest and guest, your post will appear with a username like guest4269. Ideally, open this post and reply to it.

My other plan for mobile is to target the Sync for Lemmy app, as it’s dead, meaning it’s no longer a moving target.

I’ve made a few technical choices aimed at keeping things fast

These include:

No ORMs - They are convenient but make performance tuning difficult when things get complex as you don’t write the queries directly No Javascript - I may have to go back on this if I keep the guest posting function, it might need a captcha or anubis. No nested comments in the web UI - Nested comments are super slow, you are essentially querying the database for the OP, then querying for the N immediate children, then doing N queries for all of their children, then keep going recursively until you reach your depth limit, or all comments are found, you then need to render this structure with html/css No front page images - This is more of a personal preference that happened to make things load faster, the front page displays the text of the OP and last few comments IN FULL, giving a good preview of the conversation, and allocating more space to people who write rather than post memes. Inline images in posts are also replaced with links. No upvotes/downvotes - DID YOU KNOW that most threadiverse traffic is upvotes, downvotes adn emojis? You get an instant speedup by simply not processing them. Also, since this is a single user instance, all my comments are by definition awesome

ROADMAP

  • Massive refactor
  • Make the project public
  • unit tests (this is basically my only requirement for v1)
  • sync for lemmy API
  • admin UI
  • “AI” to “My Butt” wordfilter (mandatory)
  • default subscription to /c/fuck_AI
  • Solve channel discoverablity once and for all
  • SUPERBLOCK (i.e. block everyone who liked this comment)
  • dockerfile? I don’t use docker tbh
  • Read Mastodon posts? Do they even have good content?

Tech Stack

  • Go
  • SQLite

I’m using the pure Go sqlite library, Bluemonday for html sanitisation, Blackfriday for Markdown and Migrate for auto db migrations.

Thanks to Snoopy and the Cool Froges at jlai.lu for allowing me to test on their channel.

Is this project of interest to you? Have I missed anything obvious? Is there anything else you would like to know?

https://scrapetacular.ydns.eu/activities/e8a9d1fd-18e0-4198-a016-eb26ed88b336

8 posts in conversation

$$10696
https://jlai.lu/u/inlandempire posted on Mar 11, 2026 22:22
In reply to: https://scrapetacular.ydns.eu/activities/f47beec3-f650-46bf-b234-0669e6642109

Bwoah very interesting thanks for sharing the details

https://jlai.lu/comment/19939100
$$10991
https://jlai.lu/u/just_chill posted on Mar 12, 2026 19:24
In reply to: https://scrapetacular.ydns.eu/activities/70c73ccd-e9c2-4fa3-99cb-58c655cec2c1

I doubt that a lot of people will see it, and there’s very few nerds in there that will be interested in self hosting. But I really like the idea, it’s unhinged in the best possible way !

https://jlai.lu/comment/19956060

Madblog: A Markdown Folder That Federates Everywhere

$$10293
https://lemmy.manganiello.tech/u/fabio posted on Mar 10, 2026 21:49

Using #Madblog as the easiest way to spin up an Indieweb/ActivityPub-compatible blog.

Zero db, zero JS, entirely hosted on text files.

https://lemmy.manganiello.tech/post/303327

$$10952
https://lemmy.manganiello.tech/u/fabio posted on Mar 12, 2026 16:46
In reply to: https://lemdro.id/comment/22977240

At the current state it’s only single-user, but I’m working on a multi-user implementation. It should be available as soon as I have a proper implementation for the ActivityPub Group actor (similar to what WriteFreely already does, where you have a Group @blog actor that aggregates post from multiple Person actors). That would also unlock full compatibility with Lemmy/NodeBB and other threadiverse implementations. But it takes a while to get done right - and a multi-user set up is also a design challenge when your selling point is to have a blog running on a single folder with Markdown files.

About a free instance, it’s not currently available (you’ll need your own domain and host and then you can just spin up a Docker container), but AFAIK YunoHost is considering adding it to their offering.

https://lemmy.manganiello.tech/comment/297228
$$14494
https://piefed.social/u/synechiaa posted on Mar 18, 2026 17:44
In reply to: https://lemmy.manganiello.tech/post/303327

This feels very cool…but I think it would look a bit confusing if all the fediverse reactions and the replies and webmetions here are displayed together.It feels like uncategorized message notification records😵

https://piefed.social/comment/10586504

Hosting a WebSite on a Disposable Vape

$$7610
https://feddit.org/u/ManfredMumpitz posted on Mar 6, 2026 09:48
https://feddit.org/post/26713915

$$9253
https://lemmy.world/u/Fmstrat posted on Mar 9, 2026 10:00
In reply to: https://feddit.org/post/26713915

Last year, I was tearing apart some of these fancier pacifiers for adults when I noticed something

When you know you’re going to enjoy the article.

https://lemmy.world/comment/22558838
$$9255
https://lemmy.world/u/Fmstrat posted on Mar 9, 2026 10:07
In reply to: https://pawb.social/comment/21006504

Loaded very quickly for me, just a few seconds. I’m guessing it was overloaded for a bit.

https://lemmy.world/comment/22558910

Frist Psot

$$7040
https://scrapetacular.ydns.eu/u/admin posted on Mar 4, 2026 14:22

Testestestest

https://scrapetacular.ydns.eu/activities/64b9a8de-f1e7-4355-ba26-80451920d016

5 posts in conversation

$$7185
https://jlai.lu/u/inlandempire posted on Mar 4, 2026 22:22
In reply to: https://scrapetacular.ydns.eu/activities/64b9a8de-f1e7-4355-ba26-80451920d016

hi, congrats, here’s a cool froge cool froge

https://jlai.lu/comment/19809850
$$7307
https://scrapetacular.ydns.eu/u/admin posted on Mar 5, 2026 10:52
In reply to: https://jlai.lu/comment/19809850

That’s a very cool froge, and thanks !

https://scrapetacular.ydns.eu/activities/02bfb6c1-7596-419a-93d1-d6a313ff8dad

Goose eggs

$$6637
https://lemmy.world/u/FauxPseudo posted on Mar 3, 2026 14:04

We knew it was goose egg season but hadn’t found their nest. This morning it was visible. 7 eggs. Probably less than a week old.

I’m going to have to change dinner plans this week now that I have gose eggs available.

Goose egg facts:
Three times the size of a chicken egg.
Chicken eggs are 30% yolk.
Goose eggs are 50% yolk.
That means the yolk is the size of 1.5 chicken eggs.
This makes them perfect for dippy yolks with fresh baked bread.
Boil time for a firm white and liquid yolk is one minute per ounce, so probably 6 to 7 minutes. Have an ice bath ready when you take them out of the water because they will continue to cook until you open them up.
They are great for baking. But not ideal for omelets because of the higher yolk content.

You get about one egg per female goose every other day. We have three females. So we will have about 10 eggs per week until they stop just before summer.

If a snake gets to a goose egg before we do that snake probably won’t have to eat for a month.

Time to make some crusty bread, buy some salted butter, and I crazy. Maybe some anchovies too. Anchovy butter on crusty bread dipped in goose yolk is very tasty.

https://lemmy.world/post/43805410

$$7336
https://slrpnk.net/u/tektite posted on Mar 5, 2026 12:34
In reply to: https://lemmy.world/comment/22490437

You just can’t hide cedar eggs from a three legged dog!

https://slrpnk.net/comment/21078070
$$7360
https://lemmy.world/u/FauxPseudo posted on Mar 5, 2026 13:56
In reply to: https://slrpnk.net/comment/21078070

Yeah. I’m hopeful that they build the nest inside their coop or outside of the fenced in portion of the yard.

https://lemmy.world/comment/22491959

California's age verification law is proving controversial — here's what you need to know, and why some Linux distros are in the firing line

$$6569
https://piefed.ca/u/Sunshine posted on Mar 3, 2026 09:28
https://piefed.ca/c/technology/p/566626/california-s-age-verification-law-is-proving-controversial-here-s-what-you-need-to-know-and

$$6862
https://discuss.tchncs.de/u/apparia posted on Mar 3, 2026 23:47
In reply to: https://mander.xyz/comment/25625174

Thanks, honestly I had not actually read the bill before coming here to shitpost, and it seems like yeah it’s more well-intentioned than people are giving it credit for.

I still have serious reservations about the broadness, vagueness, and premise that mandatory age signals are a good idea at all – it’s a lateral move at best; weakly attempting to curb the most overtly predatory parts of the whole “age verification” movement, without opposing the idea itself.

But you’re right, it’s not the blatant data-vacuuming law that I think some people imagine it to be.

https://discuss.tchncs.de/comment/24293704
$$6969
https://fedia.io/u/Th4tGuyII posted on Mar 4, 2026 08:47
In reply to: https://lemmy.dbzer0.com/comment/24734794

IMO the real solution to preventing kids getting into adult content is for Governments to agree on and enforce a universal set of parental controls that every program and website has to respect. Put the onus on parents to make sure their kids aren’t doing that stuff.

But that’s not the world we’re working with. Instead Governments have decided they’re going to play nanny, and it would appear nobody is taking no for an answer.

So from a practical perspective, if I’m going to have to play along, I’d much rather my own computer handle my sensitive data locally and prove my age for me, than multiple fuckwits’ servers off who-knows-where holding onto that data per website I want to visit.

https://fedia.io/m/technology@piefed.social/t/3534796/-/comment/14264150

Presenting ilias, yet another dashboard because obviously the world needed one more

$$5620
https://piefed.social/u/halfdane posted on Mar 1, 2026 11:02

You know how it goes. You’re happily using Homer or Homepage for your home-lab dashboard. It’s great. It looks nice. It does its job. But then one evening you think: “Wouldn’t it be cool if the dashboard actually showed whether my services are alive without building a custom tile for homer?”

And instead of, oh I don’t know, contributing to homer or using Uptime Kuma next to it like a reasonable person, you go full not-invented-here and build your own thing from scratch.

So here’s ilias, a static HTML dashboard generator that actually checks your stuff.

OfozH6AxZoPCIc7.png

What makes it different from Homer / Homarr / Dashy / the other 47 dashboards?

It actually runs arbitrary checks. You give it a YAML config with HTTP endpoints and shell commands, and it:

  1. Executes all the checks in parallel (so treat it like a shell script and don’t be stupid!)
  2. Matches results against rules you define (status codes, exit codes, regex on output)
  3. Bakes everything into a single, self-contained HTML file. No JavaScript, no API server, no database, no Docker container running in the background

The output is literally one .html file. You can scp it to a Raspberry Pi running nginx, open it from a USB stick, email it to yourself … it just works. It’s HTML and CSS. That’s it.

The “why should I care” summary

  • Zero runtime dependencies. No Node.js, no Docker, no database. One tiny binary, one HTML file out.
  • Active health checks. HTTP requests, shell commands, regex matching on output. Not just a bookmark page.
  • Generate blocks. Run a command before rendering: pipe a Prometheus query into a chart, embed the image as a banner: now your dashboard can show graphs.
  • Single HTML file output. Icons, CSS, images, everything is inlined. The file is fully self-contained.
  • NixOS module included. Systemd timer, nginx vhost, sandboxed service. If you’re a NixOS person, it’s services.ilias.enable = true and you’re done (after verifying my code ofc, I’m just a rando on the internet!).
  • ~1,100 lines of Go. One external dependency (gopkg.in/yaml.v3). That’s the whole thing. You can read the entire codebase during lunch.

Quick taste

Minimal config:

title: My Lab  
groups:  
  - name: Services  
    tiles:  
      - name: Jellyfin  
        icon: https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/jellyfin.svg  
        link: http://jellyfin.lan:8096  
        slots:  
          - name: status  
            check:  
              type: http  
              target: http://jellyfin.lan:8096/health  
            rules:  
              - match: { code: 200 }  
                status: { id: ok, label: "✅" }  
              - match: {}  
                status: { id: down, label: "❌" }  
ilias generate -c config.yaml -o index.html  

Done. Open index.html. Your Jellyfin tile shows ✅ or ❌ based on whether /health returns 200.

Want to check disk space too? Add a command check:

      - name: Disk  
        slots:  
          - name: root  
            check:  
              type: command  
              target: "df / --output=pcent | tail -1 | tr -d ' '"  
            rules:  
              - match: { output: "^[0-6]\\d%$" }  
                status: { id: ok, label: "✅ <70%" }  
              - match: { output: "^[7-8]\\d%$" }  
                status: { id: warn, label: "⚠️ 70-89%" }  
              - match: {}  
                status: { id: full, label: "🔴 ≥90%" }  

Hover over any status to see the raw command output in a tooltip. Regex matching on stdout. Exit codes. The works.

“But what about…”

Uptime Kuma? Uptime Kuma is excellent for monitoring with alerting, history, and notifications. ilias can’t do any of that! It’s for when you want a single glanceable status page that you regenerate every 5 minutes via cron ro whatever. No history, no alerts, no database. Just “is everything green right now.”

Homer? Homer is a beautiful bookmark dashboard. ilias took that idea and asked “what if the bookmarks could tell you if my random, unsupported service behind them is actually working?” If you just want a pretty link page or use the services already supported, Homer is great. If you want status checks for everything baked in, give ilias a try.

Links

https://piefed.social/c/selfhosted/p/1830079/presenting-ilias-yet-another-dashboard-because-obviously-the-world-needed-one-more

$$6061
https://lemmy.today/u/altphoto posted on Mar 2, 2026 05:04
In reply to: https://scrapetacular.ydns.eu/activities/bcfa477a-44a4-4bd9-99b4-18c76b29c678

Excellent! A dashboard dashboard!

https://lemmy.today/comment/22600808
$$6233
https://lemmy.dbzer0.com/u/black_flag posted on Mar 2, 2026 14:22
In reply to: https://piefed.social/comment/10344500

Cool ❤

https://lemmy.dbzer0.com/comment/24714156

Growth of the Fediverse (20260301)

$$5676
https://piefed.zip/u/Vicinus posted on Mar 1, 2026 14:00

Monthly Active Users^[1]^:
| Software | Current | Yesterday[1D] | Last Week[6D] | Last Month[30D] | 3 Months Ago[90D] | 6 Months Ago[180D] | 1 Year Ago[365D] | All-Time Maximum |
| :——– | ——-: | ——-: | ——-: | ——-: | ——-: | ——-: | ——-: | ——-: |
| Piefed | 6179 | 6173 | 5556 | 2322 | 1632 | 1648 | 304 | 6179 |
| Lemmy | 40418 | 41389 | 39183 | 36132 | 35313 | 40214 | 48182 | 72618 |
| Mbin | 808 | 822 | 825 | 773 | 739 | 880 | 914 | 3967 |
| Threadiverse | 47405 | 48384 | 45564 | 39227 | 37684 | 42742 | 49400 | |
| | | | | | | | | |
| Mastodon | 787641 | 788844 | 798673 | 740922 | 676783 | 684859 | 913427 | 2737163 |
| Pixelfed | 119519 | 120239 | 115309 | 120485 | 77178 | 111147 | 234134 | 338813 |
| Peertube | 41181 | 41348 | 40855 | 28695 | 26691 | 23287 | 35082 | 41348 |
| Loops | 8088 | 8316 | 8110 | 4423 | 1969 | 29174 | 0 | 29821 |
| Bookwyrm | 1563 | 1606 | 1609 | 3817 | 2805 | 2962 | 7524 | 9429 |
| Friendica | 2632 | 2618 | 2637 | 1460 | 1297 | 1743 | 4395 | 4734 |
| Forgejo | 114 | 121 | 124 | 510 | 386 | 370 | 615 | 1168 |
| Funkwhale | 267 | 266 | 270 | 258 | 218 | 227 | 480 | 1114 |
| Flohmarkt | 21 | 18 | 33 | 33 | 3 | 0 | 0 | 40 |
| | | | | | | | | |
| Fediverse | 1008431 | 1011760 | 1013184 | 939830 | 825014 | 896511 | 1245057 | |

Difference^[1]^:
| Software | -1 Day[1D] | -1 Week[6D] | -1 Month[30D] | -3 Months[90D] | -6 Months[180D] | -1 Year[365D] | -All-Time Maximum |
| :——– | ——-: | ——-: | ——-: | ——-: | ——-: | ——-: | ——-: |
| Piefed | 6 | 623 | 3857 | 4547 | 4531 | 5875 | 0 |
| Lemmy | -971 | 1235 | 4286 | 5105 | 204 | -7764 | -32200 |
| Mbin | -14 | -17 | 35 | 69 | -72 | -106 | -3159 |
| Threadiverse | -979 | 1841 | 8178 | 9721 | 4663 | -1995 | |
| | | | | | | | |
| Mastodon | -1203 | -11032 | 46719 | 110858 | 102782 | -125786 | -1949522 |
| Pixelfed | -720 | 4210 | -966 | 42341 | 8372 | -114615 | -219294 |
| Peertube | -167 | 326 | 12486 | 14490 | 17894 | 6099 | -167 |
| Loops | -228 | -22 | 3665 | 6119 | -21086 | 0 | -21733 |
| Bookwyrm | -43 | -46 | -2254 | -1242 | -1399 | -5961 | -7866 |
| Friendica | 14 | -5 | 1172 | 1335 | 889 | -1763 | -2102 |
| Forgejo | -7 | -10 | -396 | -272 | -256 | -501 | -1054 |
| Funkwhale | 1 | -3 | 9 | 49 | 40 | -213 | -847 |
| Flohmarkt | 3 | -12 | -12 | 18 | 0 | 0 | -19 |
| | | | | | | | |
| Fediverse | -3329 | -4753 | 68601 | 183417 | 111920 | -236626 | |

Change (%)^[1]^:
| Software | -1 Day[1D] | -1 Week[6D] | -1 Month[30D] | -3 Months[90D] | -6 Months[180D] | -1 Year[365D] | -All-Time Maximum |
| :——– | ——-: | ——-: | ——-: | ——-: | ——-: | ——-: | ——-: |
| Piefed | 0.1% | 11.2% | 166.1% | 278.6% | 274.9% | 1932.6% | 0.0% |
| Lemmy | -2.3% | 3.2% | 11.9% | 14.5% | 0.5% | -16.1% | -44.3% |
| Mbin | -1.7% | -2.1% | 4.5% | 9.3% | -8.2% | -11.6% | -79.6% |
| Threadiverse | -2.0% | 4.0% | 20.8% | 25.8% | 10.9% | -4.0% | |
| | | | | | | | |
| Mastodon | -0.2% | -1.4% | 6.3% | 16.4% | 15.0% | -13.8% | -71.2% |
| Pixelfed | -0.6% | 3.7% | -0.8% | 54.9% | 7.5% | -49.0% | -64.7% |
| Peertube | -0.4% | 0.8% | 43.5% | 54.3% | 76.8% | 17.4% | -0.4% |
| Loops | -2.7% | -0.3% | 82.9% | 310.8% | -72.3% | 0.0% | -72.9% |
| Bookwyrm | -2.7% | -2.9% | -59.1% | -44.3% | -47.2% | -79.2% | -83.4% |
| Friendica | 0.5% | -0.2% | 80.3% | 102.9% | 51.0% | -40.1% | -44.4% |
| Forgejo | -5.8% | -8.1% | -77.6% | -70.5% | -69.2% | -81.5% | -90.2% |
| Funkwhale | 0.4% | -1.1% | 3.5% | 22.5% | 17.6% | -44.4% | -76.0% |
| Flohmarkt | 16.7% | -36.4% | -36.4% | 600.0% | 0.0% | 0.0% | -47.5% |
| | | | | | | | |
| Fediverse | -0.3% | -0.5% | 7.3% | 22.2% | 12.5% | -19.0% | |

Tracker Comparison^[1,2]^:
| Software | Fediverse-Observer^[1]^ | FediDB ^[2]^ |
| :——– | ——-: | ——-: |
| Piefed | 6179 | 6196 |
| Lemmy | 40418 | 49143 |
| Mbin | 808 | 1418 |
| Threadiverse | 47405 | 56757 |
| | | |
| Mastodon | 787641 | 1026747 |
| Pixelfed | 119519 | 129301 |
| Peertube | 41181 | 38969 |
| Loops | 8088 | 7997 |
| Bookwyrm | 1563 | 3818 |
| Friendica | 2632 | 3293 |
| Forgejo | 114 | 1421 |
| Funkwhale | 267 | 761 |
| | | |
| Fediverse | 1008431 | 1269064 |

Notes:

  1. Threadiverse is Piefed, Lemmy, and Mbin. Fediverse only accounts for listed software [12], not the other [117] software tracked by Fediverse-Observer.
  2. Fediverse-Observer provides daily MAU back to 20221130. FediDB only provides a current snapshot (snapshot within the last 15 minutes, no time series data) and doesn’t track all software.
  3. Not sure why the two sources have different counts. A quick search of Lemmy showed they found all the same large servers (1 FediDB duplicate found: lemmygrad.ml & lemmygrad.com, 679 & 651 MAU), but got significantly different total MAU counts somehow? Fediverse-Observer MAU appears correct (at least with regards to Lemmy).
  4. “Last Week” is actually [6D]ays ago not the usual [7D]ays because there was a server detection/duplication issue that happened [7D]ays ago and was corrected [6D]ays ago.
  5. Weirdly Loops has a ~3 week gap in data about a year ago.

Takeaways:

  • Positive Growth (every day last week): Piefed
  • Lemmy’s data has up and down in the last week. May be due to the NSFW server shutting down, then coming back as an archive, and then shutting down again?
  • Loops may have reached its local peak and people are starting to leave again :(
  • Seems like a middling, slightly negative week for the Fediverse.
https://piefed.zip/c/fedigrow/p/1165910/growth-of-the-fediverse-20260301

$$6021
https://piefed.social/u/Skavau posted on Mar 2, 2026 02:47
In reply to: https://scrapetacular.ydns.eu/activities/1a03a7b6-7f09-47ff-9c8c-21c3c2fb42ab

Piefed

https://piefed.social/comment/10351225
$$6028
https://scrapetacular.ydns.eu/u/admin posted on Mar 2, 2026 03:09
In reply to: https://piefed.social/comment/10351225

Thanks, I guess measuring the other way only makes sense in the community based threadiverse.

https://scrapetacular.ydns.eu/activities/a8c1ca8e-c7b5-4fe2-b65b-43ea2bb26c22
Create New Post