this post was submitted on 03 Apr 2025
133 points (97.2% liked)

Fediverse

32412 readers
538 users here now

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

If you wanted to get help with moderating your own community then head over to [email protected]!

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
 

Every time I go to the piefed frontpage I'm blown away by how much more polished it is. It has all the bells and whistles that lemmy is sometimes missing.

Whats the catch? Why aren't we recommending everyone goes to piefed instead of lemmy?

App support is one thing I can think of.

top 50 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 13 hours ago

Do we have to recommand it? Do to the nature of the threadiverse, Lemmy content is available on PieFed and PieFed content is available on Lemmy. It is mostly a matter of chosing an instance. We could surely add an PieFed recommendation to our go to threadiverse instance but is there instance culture there yet?

Shouldn't we recommand it first to active user, the ones that create and animate communities, the ones that would create new feeds making those instances more alive?

[–] [email protected] 25 points 1 day ago

I think it's good that PieFed is so small, that means they can move faster and innovate more without fearing that things will break for thousands of people. I think it's good that a project like PieFed can try things and see what works and sticks and this is then a good indicator for projects like Lemmy to copy what is good and leave out what is not good.

[–] [email protected] 75 points 2 days ago* (last edited 2 days ago) (3 children)

Apps make or break those platforms. Lemmy apps are way better than what Mastodon has for example (but I have to tip my hat to Phanpy). We got really lucky that Lemmy exploded in popularity due to Reddit API changes which meant many app developers gave Lemmy a shot. I probably wouldn’t use Lemmy so much if Voyager didn’t fill the hole Apollo left in my heart.

[–] [email protected] 3 points 21 hours ago

If it can get apps, ill probably be more on it.

I love you lemmy.world but I would rather like to run my own piefed.

[–] [email protected] 36 points 2 days ago

Voyager is so polished, it elevates the whole experience.

[–] [email protected] 6 points 1 day ago (1 children)

Phanpy is phenomenal and fixes a lot of the problems Mastodon and all microblogging platforms have.

[–] [email protected] 2 points 1 day ago

Mona is also a good app.

[–] [email protected] 20 points 1 day ago (1 children)

Probably app support. If Lemmy didn’t have wefwef/voyager during the API debacle of 2023, I probably would not have stuck around. The default UI is terrible for mobile.

[–] [email protected] 8 points 1 day ago (1 children)

The default UI is terrible for mobile.

I'm definitely in the minority, but I prefer the Web UI on mobile to apps

[–] [email protected] 3 points 1 day ago

I also like the default UI, even if it's not the prettiest. But for mindless scrolling I prefer Voyager.

[–] [email protected] 38 points 2 days ago* (last edited 2 days ago) (12 children)

We have data on what it costs to run a sizeable instance of Lemmy and it's not a lot. How does Piefed compare? Anyone starting an instance who envisions it growing large has to contend with this question. Currently it seems it's got a bit under 1000 users across under 10 servers.

There are now sizeable communities run on Lemmy instances that are reinforced by network effects. There needs to be a significant reason for them to migrate. To that point, the collective project is building communities away from corporate power, not software. The software is a tool to facilitate that. Lemmy has worked well so far in this regard. If someone can show that Piefed can work better and not cost significantly more, it'll probably get adopted for new communities. If the difference is drastic, we may even see migrations from Lemmy.

[–] [email protected] 23 points 1 day ago* (last edited 1 day ago) (7 children)

We won't 100% know the answer to that until we get there. But in 2025 fear of a lack of CPU cores is NOT what keeps me awake at night.

Early performance results are positive. Check these links out:

https://join.piefed.social/2024/02/13/technical-performance-of-each-fediverse-platform/

https://join.piefed.social/2024/02/09/comparing-network-utilization-of-lemmy-kbin-and-piefed/

There are many many ways to ruin web app performance and choice of backend language is not really a big one. It's what you do with it that counts.

https://piefed.social/ is running on a low end VPS which costs $7.50 per month. Load average is about 1.45 during the busiest part of the day. Most of the load is caused by federating with lemmy.world and that won't increase as more users come on board.

PieFed is also really efficient with storage. After 16 months of operation, subscribed to every popular community, the piefed.social DB is 30 GB and the media storage is 28 GB. A Lemmy instance would be 10x that. I haven't bothered to add S3 storage code because we just don't need it (yet).

Anyway, all this focus on costs and downsides is only half the coin. There are massive benefits that come from using Python:

  • Easy and fun
  • Fast development velocity
  • Huge amounts of developers know Python
  • Extensive and mature libraries with good documentation
  • Good readability
  • Cross-platform without re-compiling

For a FOSS project where volunteer contributions from people play a big part these things are really important. There are many ways a project can fail (not just technical reasons but social & governance too) and running out of CPU is way way down on the list.

[–] [email protected] 1 points 20 hours ago

Thats super impressive. I need to take a look at hosting a personal instance just for the fun of it if its really what it costs.

[–] [email protected] 6 points 1 day ago* (last edited 1 day ago) (1 children)

These performance results are only from the browser side, but dont cover server performance. The database for lemmy.ml is 60 GB, and that is with 6 years of history. Not sure where your 10x claim comes from. The lemmy.ml server costs 70 Euros per month and doesnt have much loa, with almost 10 times as many active users.

[–] [email protected] 7 points 1 day ago

The lemmy.ml server costs 70 Euros per month and doesnt have much loa, with almost 10 times as many active users.

I know the 0.03€ per user per month has been known for a while, but it still impresses me.

[–] [email protected] 7 points 1 day ago (1 children)

using Python

Full disclosure: I like Python a lot and have written a lot of it.

That said, if not for my recent work experiences, I would be absolutely horrified at the idea of using Python for such a project. Between the type system and being interpreted, the performance and runtime issues are pretty painful. That and the historical greater dependence on external application servers really makes Python-based services something that really sucks to administer.

However, as I noted, I have also recently seen Python performing far faster than it has any right to with highly-optimized use of multi-processing and offloading the server stuff to Go.

I think I'm going to have to take a look at Piefed source this weekend.

[–] [email protected] 8 points 1 day ago

Cool! Before you dive in, check this out https://join.piefed.social/docs/developers/

load more comments (4 replies)
[–] [email protected] 11 points 2 days ago (4 children)

I second this. Lemmy is written in Rust where as piefed is written in Python. When it comes to running a high-performance webserver, Lemmy has the advantage.

[–] [email protected] 19 points 2 days ago (4 children)

While theoretically true, the main bottleneck with Lemmy seems to be the database performance, so with both projects depending on PostgreSQL for that, I somewhat doubt that Piefed being written in Python will have much noticeable effect in reality.

[–] [email protected] 3 points 1 day ago

the main bottleneck with Lemmy seems to be the database performance, so with both projects depending on PostgreSQL

Postgres being a bottleneck is a first for me. Not saying it's not possible, just... It's postgres. Wondering if it's more an issue with ORM, etc.

load more comments (3 replies)
load more comments (3 replies)
load more comments (10 replies)
[–] [email protected] 28 points 2 days ago (1 children)

All your saying is, it looks better. I am not using any Lemmy webfrontend, I've always been using the apps that are available, many of which are absolutely polished.

[–] [email protected] 12 points 2 days ago (11 children)

There's more than that.
Stuff like feeds, topics and better onboarding.

load more comments (11 replies)
[–] [email protected] 20 points 2 days ago (3 children)

My biggest issue with Piefed is how much space the UI uses. Last I checked it didn't have a "compact mode" like current Lemmy or Alexandrite. Browsing communities is also a bit awkward since it shows you so many topics without a way to sort or remove them.

[–] [email protected] 15 points 2 days ago
  • apps
  • alternative front ends
  • Comments view / chat view
[–] [email protected] 17 points 2 days ago (4 children)

Why aren't we suggesting Mbin over Lemmy, actually? Because it seems like it has the same options. And Mbin even has an app (not just the PWA function)!

[–] [email protected] 17 points 2 days ago (19 children)

There's quite a few nice apps for Lemmy. I'm using Connect for Lemmy on android and it's wonderful.

load more comments (19 replies)
[–] [email protected] 11 points 2 days ago* (last edited 2 days ago) (1 children)

Yes, you are right. Mbin is far more advanced than Lemmy. And PieFed more avanced than Lemmy, less then Mbin.

There are lot neat features in Mbin and PieFed so i wish we consider all options before pushing Lemmy everywhere. I also wish more app support from both of them.

I wish we try to remain neutral because, i strongly believe that the 3 softwares can inspire each other.

load more comments (1 replies)
[–] [email protected] 8 points 1 day ago (2 children)

Interstellar works with PieFed now although the API it uses is only enabled on one instance https://preferred.social/ as we're still testing it out.

load more comments (2 replies)
load more comments (1 replies)
[–] [email protected] 16 points 2 days ago (26 children)

What's missing from Lemmy that would make it unattractive to the average user? Remember the majority of users don't post, comment or otherwise interact with the platform beyond voting.

[–] [email protected] 9 points 2 days ago (4 children)

For those that may only vote and otherwise lurk, there's a decent amount.

The inability to create multi-communities/reddits (or feeds as Piefed calls them), the absence of post-folding/deduplication for when someone posts the same article to multiple communities (sometimes similar, sometimes distinct), the absence of keyword filtering to automatically filter out stuff from local/all feeds one's uninterested in, and these are just a few from the top of my head for those that mostly lurk.

[–] [email protected] 6 points 1 day ago (2 children)

Keyword filtering is about to be merged into Lemmy. Other features will also be added over time.

load more comments (2 replies)
load more comments (3 replies)
load more comments (25 replies)
[–] [email protected] 11 points 1 day ago* (last edited 1 day ago)

I never knew what it was because I'm a bit desensitised to knew apps / app names.

Edit: using https://phtn.app/ has made Lemmy extremely pleasant to use too. I haven't had a better experience on any platform.

[–] [email protected] 15 points 2 days ago* (last edited 2 days ago) (16 children)

Generally, because I think all server-centric AP software is broken and I want to see a client-first application to browse the social web.

Particularly in relation to piefed: it seems to be focused on the exact opposite (giving more power to the server admins) and it takes a good page of social engineering / "nudge theory" principles to guide its design. Much like Mastodon, it seems to be strongly opinionated about how people should behave and it kinda gives me an icky feeling about its culture.

load more comments (16 replies)
load more comments
view more: next ›