What features are missing from piefed, or, why aren't we reccommending piefed instead of lemmy?
from Irelephant@lemm.ee to fediverse@lemmy.world on 03 Apr 18:16
https://lemm.ee/post/60289513

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.

#fediverse

threaded - newest

avidamoeba@lemmy.ca on 03 Apr 18:26 next collapse

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.

Die4Ever@retrolemmy.com on 03 Apr 18:40 next collapse

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.

I don’t think this is a major concern yet. The largest PieFed instance has 308 active users, 2nd place has 34. They’ve got room to grow.

piefed.fediverse.observer/list

People can start posting about PieFed on Reddit and see how the Reddit users react.

avidamoeba@lemmy.ca on 03 Apr 18:44 collapse

But how is that not a concern if you’re interested in attracting more users? You run an instance with 500 users. Some thread on Reddit explodes and you get 1000-10000 new users in a few days. If Piefed has poor scaling you might be unable to pay the bills for your now much larger instance. That’s not gonna be great for you or the new users.

Die4Ever@retrolemmy.com on 03 Apr 18:50 collapse

I think it’s unlikely that they would attract such a large number of users with 1 post on r/RedditAlternatives or something. Lemmy gets spammed everywhere and we usually don’t even gain 1000 users a day overall across all instances.

There’s already been some comments about PieFed and they didn’t result in huge surges.

avidamoeba@lemmy.ca on 03 Apr 19:01 collapse

Sure but does the rate of growth matter? The post asks about recommending Piefed instead of Lemmy. I presume the point is that the number of Piefed users would grow if we did that. So whether a thread produces 10, 1000, or 10000 users in a day, the number of users would grow over time. Then I think the question remains, if my Piefed instance costs $10/mo to run today, would it cost $100 with 10000 users or $1000, or more, or less?

Relevant

Die4Ever@retrolemmy.com on 03 Apr 19:08 collapse

The rate of growth does matter yea. If an instance gets worried, they can lock signups. Slow growth means the software has time to improve as they notice issues.

Lemmy had many issues scaling before, except Lemmy had huge surges with the Reddit API blackouts.

If people start recommending PieFed now, it’s on their own terms instead of a massive wave. They can backoff if they get too many users.

avidamoeba@lemmy.ca on 03 Apr 19:56 collapse

Yeah, that makes sense for the defect class of performance problems. I’m more concerned with the inherent performance (compute) disadvantages of Python. Perhaps they wouldn’t matter, hard to know without load testing.

I didn’t downvote.

Snoopy@piefed.social on 03 Apr 21:14 collapse

Well, i thought the same about rust and python. i'm not a dev and lack understanding on their component.

My opinion became more nuanced with Lemmy. I have read there spike in ressource usage with lemmy on server.

So, I believe the language matter but also its features, the way you think how people will use it. Its core design.

When you manage a social network, the most fondamental feature is the moderation board. I find this area is lacking on Lemmy. Crosspost ? Duplicate everywhere, on my timeline, i get 4-5 time the same post...so i believe it miss some design thinking.

From what i see, the various lemmy-bot (most of them are written in python i think ?) and alternative frontend are improving lemmy experience. For example, how do you add an mod with lemmy-web-ui ?

I also believe that being written in Rust make it harder for new devs to help. But in later time we will see a change.

I'm not sure if it answer part of your question, but there are area where lemmy can improve :
https://join.piefed.social/2024/02/09/comparing-network-utilization-of-lemmy-kbin-and-piefed/

Sibshops@lemm.ee on 03 Apr 18:49 next collapse

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.

poVoq@slrpnk.net on 03 Apr 19:02 next collapse

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.

msage@programming.dev on 03 Apr 20:53 next collapse

Postgres is so quick if you know how to use it…

nickwitha_k@lemmy.sdf.org on 04 Apr 08:53 collapse

You don’t even need to know how to use it very well, in my experience.

msage@programming.dev on 04 Apr 09:16 collapse

Really depends on many factors. If you have everything in RAM, almost nothing matters.

If your dataset outgrows the capacity, various things start to matter, based on your workload. Random reads need to have good indices (also writes with unique columns), OLAPs benefit from work_mem, >100M rows will need good partitioning, OLTP may even need some custom solutions if you need to keep a long history, but not for every transaction.

But even with >B of rows, Postgres can handle it with relative ease, if you know what you’re doing. Usually even on a hardware you would consider absolutely inadequate (last year I migrated our company DB from MySQL to Postgres, and with even more data and more complex workflows we downsized our RAM by more than half).

nickwitha_k@lemmy.sdf.org on 04 Apr 08:50 collapse

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.

avidamoeba@lemmy.ca on 03 Apr 19:05 collapse

Yeah, this would be my concern as well if I had to run it. Sure Python apps can be fast and most time is spent in IO, not compute, and if you’re running a profitable operation the exact cost of compute might not matter much. However if you’re running a non-profit service and you want it to be as dirt cheap as possible so it can be free for most users, then the cost of compute very much does matter.

rglullis@communick.news on 03 Apr 19:54 collapse

If you want it to be “free to most users”, the cost of data storage and IO will completely dominate over the cost of CPU.

There are plenty of good arguments to prefer Rust over python for a distributed application, but “language efficiency” is not one of them.

Anyway, if you are biased in favor of Rust and want a decent argument to justify it, I will let you use ‘It’s easier to compile Rust to WASM and have the application run on the browser, while compiling python in a cross-platform way is a nightmare’, free of charge.

nickwitha_k@lemmy.sdf.org on 04 Apr 08:55 collapse

Ease of cross-compiling is really one of my favorite things about Rust. It can run anywhere with little coaxing needed.

Irelephant@lemm.ee on 03 Apr 21:08 next collapse

Its written in python, but I don’t think the overhead is too much because the bottleneck is DB performance.
It has support for lemmy’s protocol, so the network effect really isn’t an issue.

Blaze@lemmy.dbzer0.com on 03 Apr 21:12 collapse

Its written in piefed,

Small lapsus ha ha

Irelephant@lemm.ee on 03 Apr 21:28 collapse

Thanks.

rimu@piefed.social on 03 Apr 22:27 collapse

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.

avidamoeba@lemmy.ca on 03 Apr 23:27 next collapse

That’s nice info, thanks! Do you know why the db difference?

rimu@piefed.social on 03 Apr 23:34 collapse

I've never seen a Lemmy DB, sorry. But I hang out in the Lemmy matrix rooms and read about admins struggling with their 300 GB databases quite often.

Emperor@feddit.uk on 03 Apr 23:48 collapse

Can confirm. When we took over the running of feddit.uk migrating the images took forever as it was around 300GB.

rglullis@communick.news on 04 Apr 11:21 collapse

Migrating the images as in media? The discussion is about database sizes.

The biggest DB I have is the one from alien.top, which got close to deal with 600k mirrored bots and 10M posts + comments. The database was clocking around 25GB.

nickwitha_k@lemmy.sdf.org on 04 Apr 08:47 next collapse

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.

rimu@piefed.social on 04 Apr 08:56 collapse

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

nutomic@lemmy.ml on 04 Apr 10:54 next collapse

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.

Blaze@lemmy.dbzer0.com on 04 Apr 12:15 collapse

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.

monarch@lemm.ee on 05 Apr 01:25 collapse

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.

simple@lemm.ee on 03 Apr 18:28 next collapse

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.

Snoopy@piefed.social on 03 Apr 21:20 next collapse

Thank for your feedback.

Maybe you can tell them ? I'm giving feedback to piefed dev on their UI, suggesting ideas is also part of PieFed's development. :)

rimu@piefed.social on 03 Apr 23:19 next collapse

Ok. Watch this space: https://codeberg.org/rimu/pyfedi/issues/540

Blaze@lemmy.dbzer0.com on 04 Apr 12:26 collapse

Great!

jeena@piefed.jeena.net on 04 Apr 02:53 next collapse

That is exactly the main reason I created my own theme, but yeah there should be a official compact theme, especially for the mobile phone.

rimu@piefed.social on 12 Apr 23:09 collapse

Compact mode has been added now, FYI. Screenshots at https://codeberg.org/rimu/pyfedi/issues/540#issuecomment-3788240

simple@lemm.ee on 12 Apr 23:13 next collapse

That looks perfect, thanks for your work!

Blaze@lemmy.dbzer0.com on 12 Apr 23:20 collapse

Very cool!

rglullis@communick.news on 03 Apr 18:34 next collapse

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.

Blaze@lemmy.dbzer0.com on 03 Apr 20:10 next collapse

It may be a bit opiniated, but it’s nice to see a different approach from Lemmy devs who don’t see the need for any additional moderation tool.

I brought up mod mail during the AMA, it has been considered too complex to implement. A moderation panel with an overview of the mod queue would be nice too, but not a priority.

I’m not saying Piefed is perfect, but at least they prioritize that aspect.

rglullis@communick.news on 03 Apr 20:23 next collapse

“moderation duties” and “regular participants” in a forum system have such different use cases, it makes no sense to try to make it work with the software itself.

It would be better/faster/easier to simply build a separate tool that can be useful for moderators, instead of trying to shoehorn it in the existing API. But I don’t really think that this is something that really bothers people enough, given that last time I asked if I could get 20 people interested to sponsor the development of the moderation tool, and to this day only one person showed up.

Blaze@lemmy.dbzer0.com on 03 Apr 20:33 collapse

It would be better/faster/easier to simply build a separate tool that can be useful for moderators,

Piefed built it in their software without a separate tool

rglullis@communick.news on 03 Apr 20:38 collapse

And by doing so, it makes it available only for moderators with accounts on piefed. What is the current TAM? 20 people?

A separate tool could connect to any server federating “Report” activities. What is the current TAM? Any moderator of a group, no matter if their account is on Lemmy/PieFed/PixelFed/Misskey/Mastodon…

Blaze@lemmy.dbzer0.com on 03 Apr 20:43 collapse

20 people?

piefed.fediverse.observer/dailystats&days=7

360 currently, so around 18 times that.

A separate tool could connect to any server federating “Report” activities.

The appetite seems limited as you pointed out yourself in the comment above.

rglullis@communick.news on 03 Apr 20:45 collapse

360 currently

Please, read things in context. I’m talking about moderators.

Are all the 360 PieFed users also community moderators?

Blaze@lemmy.dbzer0.com on 03 Apr 20:47 next collapse

Those features also impact all Piefed users.

Irelephant@lemm.ee on 03 Apr 21:31 collapse

I can add a piefed account as a mod to a community I mod right now.

rglullis@communick.news on 03 Apr 21:53 collapse

How many people like you are using PieFed right now?

nutomic@lemmy.ml on 04 Apr 11:04 collapse

We are working on new moderation features all the time, for example 1.0 will correctly federate instance bans which is quite complicated to get right. There will also be a plugin system which allows for much more flexible mod tools. Its just that our time is very limited for all the work that needs to be done on a project with over 50k active users.

Blaze@lemmy.dbzer0.com on 04 Apr 12:38 collapse

This comment was not supposed to be a huge critique of Lemmy, more like a comparison.

Everybody is aware that you do what you can with the resources you have.

nutomic@lemmy.ml on 04 Apr 13:15 collapse

Fair enough, its just a bit strange that this particular critique comes up regularly.

Blaze@lemmy.dbzer0.com on 04 Apr 13:22 collapse

I just gave it a try, this is what the moderation panel looks like on Piefed:

<img alt="" src="https://lemmy.dbzer0.com/pictrs/image/72ed8b66-93ed-4ac4-a36d-750383f36e09.webp">

<img alt="" src="https://lemmy.dbzer0.com/pictrs/image/de53ef95-d79f-4400-bf72-710f72e615c9.webp">

Maybe this makes it more clear

nutomic@lemmy.ml on 07 Apr 14:40 collapse

Thanks, good to know.

Irelephant@lemm.ee on 03 Apr 21:30 next collapse

If only activitypub c2s didn’t suck.

rglullis@communick.news on 03 Apr 21:55 collapse

ActivityPub C2S is not the the solution. It still requires a server and it still keeps the admins in control of everything.

ActivityPods seems to be going in the right direction, though…

SorteKanin@feddit.dk on 04 Apr 09:20 collapse

[PieFed] seems to be strongly opinionated about how people should behave and it kinda gives me an icky feeling about its culture

Yea, I get this same feeling. It’s not that I mind that culture or being mindful of how people behave and such - I just don’t think that is the domain of the software to decide. Individual instances can decide that for themselves, but the software shouldn’t influence that kind of thing, I feel.

Endymion_Mallorn@kbin.melroy.org on 03 Apr 18:35 next collapse

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)!

troyunrau@lemmy.ca on 03 Apr 18:38 next collapse

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

Endymion_Mallorn@kbin.melroy.org on 03 Apr 18:43 collapse

Oh, I'm aware that both Lemmy and Mastodon have good apps. I'm just pointing out that if the 'argument' is that alternatives don't have an app, MBin does have one.

Meshuggah333@fedia.io on 03 Apr 18:52 next collapse

Mbin has Interstellar, it's pretty good.

Endymion_Mallorn@kbin.melroy.org on 03 Apr 19:04 collapse

It really is, from my limited use. I use the PWA on my (very old) phone and Firefox on desktop. But I like Interstellar.

Nusm@yall.theatl.social on 03 Apr 19:27 collapse

MBin does have one.

…for Android. Nothing for iOS.

Meshuggah333@fedia.io on 03 Apr 19:54 next collapse

True, MBin is small so I'm not surprised they cater to the bigger platform.

Nusm@yall.theatl.social on 03 Apr 20:13 next collapse

You may not be from the US, but in the US smartphone market, as of late 2024, iOS (Apple) holds a larger market share than Android, with iOS at around 58% and Android at 42%.

Meshuggah333@fedia.io on 03 Apr 20:42 next collapse

I'm not, I was talking worldwide.

moonlight@fedia.io on 03 Apr 22:14 next collapse

The US isn't the only country, and I bet people using the fediverse skew heavily toward android in the US anyway.

Nusm@yall.theatl.social on 04 Apr 02:02 collapse

I wasn’t trying to be derogatory, I know that outside the US Android is the dominant platform, but in the US it’s iOS. (I actually thought the percentage of iOS users would have been a little higher.)

That’s an interesting assumption that the Fediverse skews Android, I’d like to see some numbers on that.

jwr1@kbin.earth on 05 Apr 13:22 collapse

I'm the developer of Interstellar, and I am actually from the US. iOS support is something I'd like to add, but is not the priority. @Endymion_Mallorn made many good points about it not catering towards FOSS projects, but I'd also like to add, it costs $100 every single year in order to have an Apple developer account, which is required if you want to publish anything to the Apple App Store. Additionally, Apple's very expensive hardware is required in order to build and release any Apple software, which I do not own.

All that to say, I'd like to support iOS and macOS platforms, but Apple makes it extremely difficult (and costly) for that to happen. Why should I have to pay $100 every year in order to publish a free app that I'm not even making any money off of?

Nusm@yall.theatl.social on 05 Apr 14:25 collapse

Man, that all makes perfect sense, and I appreciate the reply. Thanks for laying out the challenges for a small dev to develop for iOS.

I actually like the look of Mbin and Piefed, but like I said, I use Voyager to surf Lemmy a lot of the time, and Voyager doesn’t support Mbin/Piefed. I’d be willing to try and maybe switch to a different app, but there’s currently no iOS app for either. I’m not above using a PWA, but the Piefed instance I signed up to doesn’t even offer an actual PWA, but just a bookmark that opens Piefed in a Safari tab.

So, to bring it back to the original question, that’s the reasons that Piefed is a no-go for me.

Endymion_Mallorn@kbin.melroy.org on 03 Apr 22:26 collapse

On Android, software can be made with free tools, released on Github/Gitlab/Forgejo/etc, and pushed into an F-Droid repo. Heck, you might not even need the F-Droid side, you can just throw an APK up at your free host of choice. Plus, I don't think there's a language restriction in terms of what can be compiled for Android (I'll make my ignorance known here). Apple is not an open platform. One language is accepted, they have one way to develop software, one (overstuffed) place to download that software from. It is much more difficult to develop an app for iOS compared to Android. And if you try to monetize it, people will use a PWA.

To make it clear, this is not meant to be a debate on Apple. This is just my take on why free fediverse software is much more likely to show up on Android.

Meshuggah333@fedia.io on 03 Apr 22:41 collapse

Agreed.

Endymion_Mallorn@kbin.melroy.org on 03 Apr 19:55 next collapse

I don't really have a positive thing to say about people who want to stick to Apple as their primary device ecosystem.

Nusm@yall.theatl.social on 03 Apr 20:10 collapse

If you want to debate Apple, start another thread. This post is about Mbin and Piefied, and for me, I use Voyager on iOS to surf Lemmy. I don’t want to switch to or recommend Mbin or Piefied if there’s not an app for it and the best I can do is a PWA.

Don’t try to hijack the thread to push your anti Apple agenda. You can dislike Apple all you want, just not in this thread.

jeena@piefed.jeena.net on 04 Apr 03:01 collapse

This post is not about Mbin, only about Piefed (not Piefied).

Don't try to tell people what they can or can not talk about in this thread while disregarding it yourself.

Nusm@yall.theatl.social on 04 Apr 03:09 collapse

Woooo boy you told me! 🙄

Actually this thread is about Piefed (spelled correctly just for you), not correcting people who are correcting people, so now you’re in the wrong.

You’ll excuse me, but my eyes rolled so hard, I have to go try to get them back to the front.

jeena@piefed.jeena.net on 04 Apr 03:19 collapse

Very good.

Blaze@lemmy.dbzer0.com on 03 Apr 20:15 collapse

Valid point

Snoopy@piefed.social on 03 Apr 20:47 next collapse

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.

Endymion_Mallorn@kbin.melroy.org on 03 Apr 22:27 collapse

Totally agree with you that everyone in the fediverse should be working together. Especially the amazing devs.

Irelephant@lemm.ee on 03 Apr 21:09 next collapse

again, the apps are the killer.

iirc, piefed’s api is very similar to lemmy’s, so apps could support both.

rimu@piefed.social on 03 Apr 22:09 collapse

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.

Blaze@lemmy.dbzer0.com on 03 Apr 22:19 next collapse

Is Interstellar support complete? I thought it was still in alpha/beta phase

rimu@piefed.social on 03 Apr 22:57 collapse

Definitely alpha, yeah. But moving fast!

BagOfHeavyStones@lemm.ee on 07 Apr 22:39 collapse

Looks like preferred is invite only at this time.

“Invite code (see post on flagship instance)”

rimu@piefed.social on 07 Apr 23:18 collapse

Invite code is here: https://piefed.social/post/484755

sabreW4K3@lazysoci.al on 03 Apr 18:41 next collapse

Is there even a second instance running piefed? I’ve only seen piefed.social

flamingos@feddit.uk on 03 Apr 18:46 next collapse

There’s feddit.online and some personal ones I’ve seen knocking about.

sabreW4K3@lazysoci.al on 03 Apr 19:33 collapse

Thanks

Die4Ever@retrolemmy.com on 03 Apr 19:10 next collapse

piefed.fediverse.observer/list

sabreW4K3@lazysoci.al on 03 Apr 19:34 collapse

Is there a way to see version number? Everything else seems way slower than the flagship instance and even that seems slower than every Lemmy instance

flamingos@feddit.uk on 03 Apr 19:44 collapse

Seems they’re all running the same version, or Piefed doesn’t tag releases:

piefed.social nodeinfo

sh curl -s https://piefed.social/nodeinfo/2.0 | jq { “openRegistrations”: true, “protocols”: [ “activitypub” ], “software”: { “name”: “PieFed”, “version”: “0.1” }, “usage”: { “localComments”: 12382, “localPosts”: 1169, “users”: { “activeHalfyear”: 561, “activeMonth”: 309, “total”: 800 } }, “version”: “2.0” }

feddit.online nodeinfo

sh curl -s https://feddit.online/nodeinfo/2.0 | jq { “openRegistrations”: true, “protocols”: [ “activitypub” ], “software”: { “name”: “PieFed”, “version”: “0.1” }, “usage”: { “localComments”: 503, “localPosts”: 214, “users”: { “activeHalfyear”: 85, “activeMonth”: 34, “total”: 85 } }, “version”: “2.0” }

hendrik@palaver.p3x.de on 03 Apr 20:54 next collapse

There are no tags as of now. Everyone is running the main branch from Git. I suppose that's going to change at some point when PieFed deems itself ready.

flamingos@feddit.uk on 03 Apr 21:05 collapse

You guys are a lot braver than me lol, I’d never run the Lemmy main branch in prod.

sabreW4K3@lazysoci.al on 03 Apr 21:57 collapse

Running a main branch in production is beyond insanity.

rimu@piefed.social on 03 Apr 22:13 collapse

Welcome to the jungle

jeena@piefed.jeena.net on 04 Apr 03:45 collapse

Yeah, we don't have versioning yet because there are so few instances and it's a rolling release so to say. So most people update just every now and then. Most of the admins are in a matrix chanel together also.

Irelephant@lemm.ee on 03 Apr 21:31 next collapse

feddit.online, iirc. check join.piefed.social

jeena@piefed.jeena.net on 04 Apr 03:43 collapse

I've been running my one person instance for 8 month or something ;)

flamingos@feddit.uk on 03 Apr 18:42 next collapse

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.

Die4Ever@retrolemmy.com on 03 Apr 19:12 next collapse

What’s missing from Lemmy that would make it unattractive to the average user?

I don’t think it’s always easy to pinpoint UX issues and user friction. Sometimes these things just don’t stick with mainstream users. I say it’s worth a try to see which platform the average Reddit user will prefer.

But if you’re gonna use from a phone, Lemmy’s selection of mobile apps is unbeatable.

flamingos@feddit.uk on 03 Apr 19:17 collapse

Fair point. It probably hard to see these things when you’ve been in the thick of Lemmy for as long as most of us here have. It’s easy to dismiss not liking lemmy-ui because alternative frontends exist (written from Photon), but does that matter when the overwhelming majority of instances use it as their landing page.

Irelephant@lemm.ee on 03 Apr 20:18 next collapse

As I said, it has a lot more polish. Its easier to discover communities, and it has feeds.

Blaze@lemmy.dbzer0.com on 03 Apr 20:32 collapse

Two questions for you, I’m genuinely curious, I hope they don’t come up as agressive

  • why are you still using your Lemm.ee account instead of Piefed
  • why create this post here instead of !fediverse@piefed.social ?
flamingos@feddit.uk on 03 Apr 20:50 next collapse

why create this post here instead of !fediverse@piefed.social ?

This community is much bigger? He’s asking a question so probably wants input from the most people possible.

Blaze@lemmy.dbzer0.com on 03 Apr 20:55 collapse

It is, but there’s only one way to make Piefed grow, it’s to start getting Piefed communities more active.

Lemmy covers pretty much all the topics the current Threadiverse is interested in, so at some point posters have to accept to post to smaller communities.

I’m not saying everyone has to do it, but as OP states that Piefed is more polished, I was surprised

flamingos@feddit.uk on 03 Apr 21:11 collapse

Does it really matter when you can access the same content from Piefed? It’s one of fedi’s great strengths that different experiences can be tailored on the same platform.

Irelephant@lemm.ee on 03 Apr 21:28 next collapse

Yep! We should probably move some comms to piefed, so that .world doesn’t control too much, but not to piefed specifically.

Blaze@lemmy.dbzer0.com on 03 Apr 21:34 next collapse

not to piefed specifically.

Why not? I’m not saying to move everything, but a few communities to Piefed could be nice. A few to Mbin too to keep everyone happy.

Irelephant@lemm.ee on 04 Apr 07:09 collapse

Thats literally what I said.

Blaze@lemmy.dbzer0.com on 04 Apr 12:46 collapse

Alright, then I misread your comment

flamingos@feddit.uk on 03 Apr 21:36 collapse

There’s also three Fediverse comms (here, ml and zip) like do we really need another one?

Blaze@lemmy.dbzer0.com on 03 Apr 21:40 collapse

here

4 days delay with aussie.zone lemmy.dbzer0.com/post/40460535

ml

Power tripping admins feddit.nl/post/16246531

Zip

Single mod who didn’t want to create a meta posts to ask for more mods.

I studied the situation before starting to post to !fediverse@piefed.social

flamingos@feddit.uk on 03 Apr 21:48 collapse

Has world really not enabled parallel sending yet? That feature was made specifically for them.

Single mod who didn’t want to create a meta posts to ask for more mods.

But the sidebar does say to DM them if you’re interested in modding. Not wanting a meta post is weird though.

Blaze@lemmy.dbzer0.com on 03 Apr 21:53 collapse

Has world really not enabled parallel sending yet? That feature was made specifically for them.

I just checked the graph, its now 4.26 days.

Not wanting a meta post is weird though.

Every time I had a mod refusing meta posts it lead to power tripping. Better safe than sorry

Coelacanth@feddit.nu on 03 Apr 23:00 collapse

Even so, .world will eventually enable parallel sending, and even in the meantime aussie.zone only boasts 375 MAUs. I empathize with their plight but it’s what, 0.6% of the Lemmy userbase? I don’t know that such a miniscule minority is worth bending over backwards for and creating further fragmentation.

Don’t get me wrong, I’m all for choosing instances other than .world when setting up new comms. They’re too big. But while we’re still at a point where content amount is the primary concern and we’re trying to achieve critical mass I also don’t know if endless fragmentation is well advised.

Blaze@lemmy.dbzer0.com on 04 Apr 12:45 collapse

.world will eventually enable parallel sending

But when? I don’t want to openly ask LW admins because the 0.19.9 migration took them a while, but it doesn’t seem like it’s going to happen any time soon. I’ve seen someone mentioning that they might be delaying it due to resources issues, but their resource usage is not going to go down any time soon.

aussie.zone

It is not only aussie.zone. Reddthat is also hosted in Australia, and then had to add a proxy in Europe to prevent a similar delay: reddthat.com/post/37387576/17377718. Lemmy.nz is in a similar case.

Lemmy.blahaj.zone is also Australian IIRC, but not sure where the server is hosted. Reddthat is only 429 MAU, but Blahaj is 1171

Coelacanth@feddit.nu on 04 Apr 13:12 collapse

LW are hesitant to do major changes because if something goes wrong it disrupts the entire Lemmy ecosystem. It’s a direct negative consequence of them growing too big, but once they’re in this position I can understand their reservations. I too wish they’d implement upgrades faster but I have no reason to believe they will just refuse to implement an upgrade forever, that’s unreasonable to assume.

Lemmy.nz is what, about 100 MAU? And I know a Blåhaj admin is Australian but Fedi Observer has the server listed as based in Finland and hosted in Germany. Don’t know if that’s wrong though. Are their users also reporting delays?

Snoopy@piefed.social on 03 Apr 21:34 collapse

It doesn't matter, true. We can see every comments in a crossposted post. But on the other hand Blaze is also right. :)

I told him the same thing about its lemmy repport that i wished something less lemmy centric. :)

Blaze@lemmy.dbzer0.com on 03 Apr 21:38 collapse

I told him the same thing about its lemmy repport that i wished something less lemmy centric. :)

With our current situation, it’s just that most of the things are going to happen on Lemmy. New app update? it’s a Lemmy app. New monthly active user milestone reached? Lemmy is probably the main reason.

Hopefully things will get more balanced over time, but we can’t expect a perfect 1/3 split of posts between the three platforms.

Snoopy@piefed.social on 03 Apr 21:48 collapse

Yep but considering your activities, you can tell them more about PieFed and Mbin. It will help reach a more balanced software's use. :)

Blaze@lemmy.dbzer0.com on 03 Apr 21:52 collapse

Didn’t I with the Mbin post yesterday?

Snoopy@piefed.social on 04 Apr 11:26 collapse

Yes sorry, it's perfect. :)

Irelephant@lemm.ee on 03 Apr 21:27 collapse

This comm is much bigger, and I happened to be on my .ee account at the time.

e: And I’ve used this account for longer, so I don’t want to abandon it.

Blaze@lemmy.dbzer0.com on 03 Apr 21:34 collapse

And I’ve used this account for longer, so I don’t want to abandon it.

Probably the main reason why people won’t move to Piefed either

ElectroVagrant@lemmy.world on 03 Apr 20:57 collapse

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.

Blaze@lemmy.dbzer0.com on 03 Apr 21:02 next collapse

Fair point, but mobile apps and inertia seem to outweigh those additional features

rimu@piefed.social on 03 Apr 22:12 collapse

If you use a mobile app then whether your account is on Lemmy or PieFed makes no difference - most of your experience will be determined by which app you choose.

Blaze@lemmy.dbzer0.com on 03 Apr 22:18 collapse

Indeed, but at the moment only Interstellar has alpha support for Piefed.

Once the Thunder for is released, and Voyager, Arctic, Summit etc start to support Piefed, then it will be the case.

nutomic@lemmy.ml on 04 Apr 11:09 collapse

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

Blaze@lemmy.dbzer0.com on 04 Apr 12:39 collapse

Will there be a release with that feature before Lemmy 1.0, or will it be delivered with Lemmy 1.0?

nutomic@lemmy.ml on 04 Apr 13:16 collapse

It could be backported, but there are now significant changes between the 0.19 and development branches, so it would take some work.

misk@sopuli.xyz on 03 Apr 18:55 next collapse

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.

cronenthal@discuss.tchncs.de on 03 Apr 20:20 next collapse

Voyager is so polished, it elevates the whole experience.

Ulrich@feddit.org on 04 Apr 04:49 next collapse

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

SouthEndSunset@lemm.ee on 04 Apr 11:57 collapse

Mona is also a good app.

mesamunefire@lemmy.world on 04 Apr 23:59 collapse

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.

ddash@lemmy.dbzer0.com on 03 Apr 19:04 next collapse

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.

Irelephant@lemm.ee on 03 Apr 21:11 collapse

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

jgrim@discuss.online on 04 Apr 01:24 next collapse

I run a Pixelfed instance. The code is faaaaaaaarrrrr from polished. Its buggy and the admin interface either doesn’t work or is poorly implemented. I’d rather run and moderate Lemmy than Pixelfed. I have considered just shutting it down several times. I run the instance social.photo.

jeena@piefed.jeena.net on 04 Apr 02:52 next collapse

People are talking about Piefed not Pixelfed

jgrim@discuss.online on 04 Apr 14:14 collapse

I know, I read it wrong :(

Madbrad200@sh.itjust.works on 04 Apr 03:05 next collapse

Piefed is another federated social aggregator piefed.social akin to Lemmy.

jgrim@discuss.online on 04 Apr 14:14 collapse

I know, I read it wrong. Because I’m a ding dong. :(

Irelephant@lemm.ee on 04 Apr 07:09 next collapse

I meant as a user.

jgrim@discuss.online on 04 Apr 14:14 collapse

Thanks, I’m a ding dong anyway.

Blaze@lemmy.dbzer0.com on 04 Apr 12:25 next collapse

discuss.online/post/17932425

jgrim@discuss.online on 04 Apr 14:14 collapse

Lmao, spot on! Thanks!

Irelephant@lemm.ee on 04 Apr 14:23 collapse

It doesn’t really surprise me that pixelfed is buggy ngl. It is still polished to the end user.

TORFdot0@lemmy.world on 04 Apr 01:40 collapse

For people that care about that sort of thing, that’s great. I just need the ability to subscribe to communities and comment on posts and Lemmy has been great for that while using voyager

Blaze@lemmy.dbzer0.com on 03 Apr 20:11 next collapse

  • apps
  • alternative front ends
  • Comments view / chat view
FarraigePlaisteach@lemmy.world on 03 Apr 21:33 next collapse

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

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

TORFdot0@lemmy.world on 04 Apr 01:38 next collapse

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.

Blaze@lemmy.dbzer0.com on 04 Apr 12:13 collapse

The default UI is terrible for mobile.

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

tfm@europe.pub on 04 Apr 13:15 collapse

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

jeena@piefed.jeena.net on 04 Apr 03:03 next collapse

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.

pseudo@jlai.lu on 05 Apr 08:26 next collapse

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?

snoopy@peculiar.florist on 05 Apr 10:02 collapse

@pseudo @Irelephant

Yes we do have to recommend PieFed. While PieFed is already incredible for what it is able to do, there are some missing key features. So we also need to be honnest about PieFed.

It is a new software so we need to invite more people to give a try. Once they try, sysadmin may give a go after listening to their user feedback.

Most active user won't create a community outside their main instance. Do you picture myself using Piefed.social for c/pisourd ? I would lose the benefit of my french speaking local timeline. :)

And yes, all content are federated but the way community are managed is different. I can show you the inside of tarte.nuage-libre.fr or !fediverse@piefed.social

Don't you want to give a try ? In exchange i will do a promotion on jlai.lu on any software you want to boost. That one will be the next "tour d'horizon" 😊

pseudo@jlai.lu on 06 Apr 13:53 collapse

I can show you the inside of tarte.nuage-libre.fr or !fediverse@piefed.social

Maybe one day. Why not :)

BagOfHeavyStones@lemm.ee on 07 Apr 22:27 collapse

For me…

Because the PWA font is too small and can’t be enlarged.

Because there’s no ‘back to top’ button so have to kill the app to refresh.

Because there’s no app.

But sometimes I use it anyway because the combining of articles is so much better than seeing the same article three or four times in a row in Voyager.