Lemmy walked so PieFed could run

7 months ago by SatyrSack to c/fedimemes

bdonvr 110 points 7 months ago

Lemmy is fine though what are you on about

path: 0 20829257, hotness: undefined, score: 110, children: 57
Skavau 20 points 7 months ago

Well, it works. But Piefed is developing more features quicker atm.

path: 0 20829257 20829264, hotness: undefined, score: 20, children: 35
bdonvr 42 points 7 months ago

So we should all just jump? Meh. Lemmy 1.0 is releasing soon which should help quite a bit.

path: 0 20829257 20829264 20829281, hotness: undefined, score: 42, children: 6
pseudo 45 points 7 months ago

Not necessarely that's the beauty of the fediverse. You can enjoy PieFed growth and all it's content but stick on Lemmy if you don't feel like moving.

path: 0 20829257 20829264 20829281 20829665, hotness: undefined, score: 45, children: 0
hayvan 41 points 7 months ago

AFAIK the two can federate with eachother so I'm glad we have both.

path: 0 20829257 20829264 20829281 20833251, hotness: undefined, score: 41, children: 2
Postimo 47 points 7 months ago

Thesis: Lemmy is better!

Antithesis: Piefed is better!

Synthesis: Bitch, they're federated??

path: 0 20829257 20829264 20829281 20833251 20833695, hotness: undefined, score: 47, children: 1
Batmorous 6 points 7 months ago

I vote use both

path: 0 20829257 20829264 20829281 20831483, hotness: undefined, score: 6, children: 0
Blaze 5 points 7 months ago path: 0 20829257 20829264 20829281 20829725, hotness: undefined, score: 5, children: 0
IndustryStandard 11 points 7 months ago

Piefed uses Python which is faster for development but the language is slower. Lemmy is built on Rust. I appreciate some features Piefed has but I do wonder about its scalability.

path: 0 20829257 20829264 20839232, hotness: undefined, score: 11, children: 8
drmoose 11 points 7 months ago

but the language is slower

it really depends what's the metric. Most web server stuff is IO-bound not compute-bound so Python can actually be faster than Rust.

path: 0 20829257 20829264 20839232 20840020, hotness: undefined, score: 11, children: 7
IndustryStandard 4 points 7 months ago

I thought Rust was faster for basically every metric?

The entire advantage of Python is supposed to be ease of development, in exchange for slower code execution. It is especially bad in terms of multiprocessing, which Rust is great at.

As I severely lack expertise on back-end development I asked for clarification to the forbidden oracle (AI) but it also told me that Rust is faster. I am not sure whether you feel like debunking an AI comment but if this is false I would love to hear why because from my current understanding Rust is always faster (for back-end development).

AI response

That statement is technically false, but it contains a grain of practical truth that often confuses people.

Here is the breakdown of why that statement is misleading and where the misunderstanding comes from.

The Verdict: False

Rust is almost invariably faster than Python, even in IO-bound tasks.

If you have a web server handling 10,000 concurrent connections that are all waiting on a database (pure IO-bound), the Rust server will use significantly less RAM and CPU to manage those "waiting" connections than the Python server.


Why the statement is wrong (The Technical Reality)

The argument assumes that "IO-bound" means the CPU does zero work. That isn't true. Even in an IO-heavy application, the application server must do the following:

  1. Event Loop Management
    The server has to track which connections are waiting and which are ready to resume.

    • Rust’s async runtimes (like Tokio) are incredibly optimized and have near-zero runtime overhead.
    • Python’s asyncio loop has significant overhead because it is still running interpreted Python code to manage the tasks.
  2. Serialization/Deserialization
    When the database replies, the server receives raw bytes. It must turn those bytes into objects (JSON parsing, ORM model instantiation). This is CPU-bound work.

    • Rust does this near-instantly.
    • Python is notoriously slow at object instantiation.
  3. The GIL (Global Interpreter Lock)
    Even if your code is async, Python can only execute one bytecode instruction at a time per process.

    • If 100 requests come back from the DB at the exact same millisecond, Python has to process them one by one.
    • Rust can process them in parallel across all CPU cores.

Where the statement is "Practically" True (The Grain of Truth)

The person making that statement is likely conflating "faster" with "indistinguishable to a human."

If a database query takes 100ms:

  • Rust overhead: 0.1ms → total response ≈ 100.1ms
  • Python overhead: 5.0ms → total response ≈ 105.0ms

To the human user, 100.1ms and 105ms feel exactly the same.

In this specific context, you could argue that Python is “just as fast” as Rust because the bottleneck is the database, not the language. But it is incorrect to say Python is faster.


The "Fediverse" Exception (Why it matters for PieFed)

The statement "web servers are IO-bound" is often true for something like a simple blog.
It is less true for the Fediverse.

ActivityPub (the protocol PieFed and Lemmy use) involves two things that are heavily CPU-bound, not IO-bound:

  1. JSON Parsing
    Fediverse servers throw massive JSON blobs at each other constantly.

    • Python is slow at parsing JSON compared to Rust.
  2. Cryptography (RSA Signatures)
    Every time a server sends a message to another server, it must cryptographically sign it (HTTP Signatures). Every time it receives a message, it must verify the signature.

    • Rust handles crypto operations natively and extremely fast.
    • Python relies on C-extensions (like cryptography), which are fast, but the overhead of calling back and forth between Python and C for every single request adds up.

Conclusion

The statement is false.

  • Rust is faster at raw execution.
  • Rust is faster at handling high concurrency (even IO-bound).
  • Python is only "faster" in one metric: development velocity – you can write the code faster in Python, but the code itself will not run faster than Rust.
path: 0 20829257 20829264 20839232 20840020 20841169, hotness: undefined, score: 4, children: 6
ComradeRachel 9 points 7 months ago

Lemmy still has a bigger user base doesn’t it?

path: 0 20829257 20829264 20829833, hotness: undefined, score: 9, children: 9
Skavau 13 points 7 months ago

Well yes, but you can interact with lemmy on piefed.

path: 0 20829257 20829264 20829833 20829877, hotness: undefined, score: 13, children: 7
JustVik 2 points 7 months ago

If it's true It's the main reason to not even think to use piefed.

path: 0 20829257 20829264 20829833 20829877 20832087, hotness: undefined, score: 2, children: 6
Mrselfdestruct25 1 point 7 months ago

And boobs and wieners.

path: 0 20829257 20829264 20829833 20833508, hotness: undefined, score: 1, children: 0
Supervisor194 3 points 7 months ago

Doesn't matter to me, I'm still using the old reddit theme on .world and that's what I want to keep using.

Piefed or Lemmy, it's the same content, so you're arguing about either UI or philosophical differences (Lemmy devs are tankies or whatever).

I'd consider Piefed if they had an old reddit UI available, but that's never gonna happen and I absolutely cannot stand either Lemmy's or Piefed's UI.

path: 0 20829257 20829264 20830149, hotness: undefined, score: 3, children: 8
Quokka 4 points 7 months ago

Oh, I had made one for quokk.au a few months ago. It got lost during an update as I didn't bother to save it, I can probably whip another one up this weekend if I remember.

Edit: This was a wip screenshot I took. It was never 100% the same, but yeah.
image

path: 0 20829257 20829264 20830149 20842640, hotness: undefined, score: 4, children: 2
Blaze 2 points 7 months ago

It looks great to be honest

path: 0 20829257 20829264 20830149 20842640 20846798, hotness: undefined, score: 2, children: 0
Supervisor194 1 point 7 months ago

Cool, well let me know if you do, I'll join up. I'm sure if you do there would be several dozen people who would be thrilled! 😂

path: 0 20829257 20829264 20830149 20842640 20849382, hotness: undefined, score: 1, children: 0
SatyrSack 3 points 7 months ago

I'd consider Piefed if they had an old reddit UI available, but that's never gonna happen

Why would that never happen?

path: 0 20829257 20829264 20830149 20836334, hotness: undefined, score: 3, children: 1
Supervisor194 3 points 7 months ago

Well, for one, the old Reddit interface's appeal is fairly limited in general. Most people use apps anymore, I feel like in general desktop users are not catered to even in default interfaces. Of people who do use the desktop, more of them are likely to be new(er) Reddit users who probably find the Lemmy/Piefed default UI to be superior to Reddit - but the pool of people who prefer old Reddit is dwindling, which doesn't usually lead to continuing support of things.

As it stands, few Lemmy instances have it and in any case it feels pretty fragile. It has broken a couple times and I think been fixed, but this has led instances to drop it altogether (dbzer0 used to have it, for example, but the lead said it was too much of a hassle and its devs weren't responding to his questions).

I'm fairly worried that 1.0 is gonna break it, tbh. It never gets any updates that I have noticed, and its functionality is a bit all over the place.

path: 0 20829257 20829264 20830149 20836334 20837657, hotness: undefined, score: 3, children: 0
Skavau 2 points 7 months ago

Well no, it's not just UI. Piefed has more features than Lemmy right now.

Fair enough if you're tethered to lemmy due to an old-reddit style UI, but it's not purely rooted in UI and ideology.

path: 0 20829257 20829264 20830149 20830210, hotness: undefined, score: 2, children: 2
Supervisor194 3 points 7 months ago

Yeah, sorry you're right, like being able to get feeds for small communities, and that sort of thing. But all the actual content is the same, is what I meant. Piefed doesn't provide any content that you can't get on Lemmy, just a different way to view it (UI) and organize it (features).

path: 0 20829257 20829264 20830149 20830210 20830425, hotness: undefined, score: 3, children: 1
Raiderkev 1 point 7 months ago

And my guy has almost 25 points

path: 0 20829257 20831295, hotness: undefined, score: 1, children: 0
IndieGoblin -1 points 7 months ago

Chill its a meme

path: 0 20829257 20830313, hotness: undefined, score: -1, children: 0
gigachad -7 points 7 months ago

Okay but it is developed by authoritarian communists. I mean it doesn't have to annoy you, but it definitely annoys me.

path: 0 20829257 20830808, hotness: undefined, score: -7, children: 2
PotatoesFall 13 points 7 months ago

I don't like the devs but at the same time it's not like they wield much power over users outside of the flagship instance, lemmy.ml. That's the nice thing about decentralized FOSS social media. Can even make a fork if they ever did something unpopular.

path: 0 20829257 20830808 20831857, hotness: undefined, score: 13, children: 1
gigachad 1 point 7 months ago

But they administrate their flag ship instance, which for a long time was the first instance new users registrated on, only to then see on what power trips the Admins are on. The missing separation of development of administration is literally the only critic point I have. If course, Lemmy is decentralized and that is a great thing. Over time, lemmy.ml already lost relevance and it will lose more as lemmy grows. But people tend to think "oh, so this is the official instance I better join there", just to then face opinions promoting North Korea or denying Russia's guilt in the invasion of Ukraine and so on. Check out the media bias in Lemmy.ml's news communities, it is insane.

Check !meanwhileongrad@sh.itjust.works for many examples.

path: 0 20829257 20830808 20831857 20838264, hotness: undefined, score: 1, children: 0
drmoose -12 points 7 months ago

Lemmy is fine though

except crazy authoritarian tankie leadership? It's just a matter of time until one of them goes wacky (again) and brings down the entire brand.

It's good to diversify here.

path: 0 20829257 20840051, hotness: undefined, score: -12, children: 15
Avicenna 5 points 7 months ago

that is just one instance, in particular lemmy.ml. pretty much everywhere else they make fun of them.

path: 0 20829257 20840051 20847449, hotness: undefined, score: 5, children: 3
LemmyEntertainYou 2 points 6 months ago

I'm out the loop. What's the deal with lemmy.ml? Has there been a controversy?

path: 0 20829257 20840051 20847449 21096829, hotness: undefined, score: 2, children: 2
cm0002 3 points 6 months ago path: 0 20829257 20840051 20847449 21096829 21155590, hotness: undefined, score: 3, children: 1
bigFab 3 points 7 months ago

I don't know which part of Lemmy u talking about. What I get to see is posts and comments ridiculizing or even hating russians (as people) get hundreds of likes.

path: 0 20829257 20840051 20844660, hotness: undefined, score: 3, children: 4
drmoose 0 points 7 months ago

Good, that's like being upset that nazi Germans are being hated on the telegraph. No shit Sherlock

path: 0 20829257 20840051 20844660 20853701, hotness: undefined, score: 0, children: 3
bigFab 4 points 7 months ago

Apparently you confused russians for israelis?

path: 0 20829257 20840051 20844660 20853701 20855562, hotness: undefined, score: 4, children: 2
MBM 2 points 7 months ago

It’s just a matter of time until one of them goes wacky (again)

What happened?

path: 0 20829257 20840051 20841705, hotness: undefined, score: 2, children: 0
bdonvr 1 point 7 months ago

Who cares if the devs are communists, worst comes to worst you can always fork it while you look for an alternative. Never has come to that though, and it doesn't look like it will.

path: 0 20829257 20840051 20842370, hotness: undefined, score: 1, children: 3
drmoose 3 points 7 months ago

Forking rarely succeeds for big projects. Good luck finding new maintainer to spearhead entire code base and rebrand. Much easier to start with a more trustworthy base.

path: 0 20829257 20840051 20842370 20843113, hotness: undefined, score: 3, children: 0
quinceyBones 3 points 7 months ago

Communists isn't the problem.

Transphobic, genocide deniers are.

path: 0 20829257 20840051 20842370 20842548, hotness: undefined, score: 3, children: 0
socsa 0 points 7 months ago

I don't care that they are communists, I care about how they are assholes. I don't owe assholes anything, certainly not loyalty. They are a toxic influence on the fediverse and should be marginalized. Maybe there was an argument that people should just let them cook when there was not alternative, but that is no longer the case.

path: 0 20829257 20840051 20842370 20850407, hotness: undefined, score: 0, children: 0
PrettyFlyForAFatGuy -1 points 7 months ago

That's just the tankie triad. there are lemmy instances that aren't run by nutters, feddit.uk for example

path: 0 20829257 20840051 20842279, hotness: undefined, score: -1, children: 0
Acamon 41 points 7 months ago

What's the difference? Can I see piefed communities through Lemmy? Or do I need a different account and/or app?

path: 0 20823732, hotness: undefined, score: 41, children: 70
Saapas 63 points 7 months ago

Piefed has more features and different devs. From an user perspective they're not very different.

path: 0 20823732 20823825, hotness: undefined, score: 63, children: 49
NuXCOM_90Percent 14 points 7 months ago

How different are the devs? Is it just a fork where they regularly pull the upstream lemmy? Or ground up?

This account is getting pretty old and about due for a nuking and dessalines seems to be speedrunning being the tankie musk (right down to surrounding himself with bot-friends). Lemmy is still good enough software but looking for an offramp if you catch my drift.

path: 0 20823732 20823825 20824768, hotness: undefined, score: 14, children: 47
cloudless 35 points 7 months ago

PieFed main devs support human rights.

PieFed is not a fork of Lemmy. It is a different software, but able to share content with Lemmy using the ActivityPub protocol.

For more info: https://join.piefed.social/features/

path: 0 20823732 20823825 20824768 20825283, hotness: undefined, score: 35, children: 5
HK65 5 points 7 months ago

Are there mobile apps for it as well?

path: 0 20823732 20823825 20824768 20825283 20829280, hotness: undefined, score: 5, children: 2
ColeSloth 2 points 7 months ago

Hmmm. I already use and like Thunder and it's supposed to work for piefed. I'll have to figure this out, because right now all I use is Lemmy with it.

path: 0 20823732 20823825 20824768 20825283 20830752, hotness: undefined, score: 2, children: 1
SlurpingPus 7 points 7 months ago

Piefed is unrelated at all, afaik.

They're a bit cavalier with development, though: when they recently rolled out the feature of posts having a ‘selected answer’ a-la StackOverflow, someone pointed out that the marker for the selected answer should be on the post's data structure, not the comment's, so a commenter can't hijack the marker — but the developer replied that they already moved on from that feature and won't be changing it.

path: 0 20823732 20823825 20824768 20825097, hotness: undefined, score: 7, children: 37
hendrik 10 points 7 months ago

Yes. Entirely different software. Different programming language and tech stack. Also different system requirements and feature set.

Not sure about the developer spirit. PieFed development has traditionally been moving crazy fast and it gets like several new features every month. I think that's a matter of focus. It comes with consequences, though. But I think overall the project is doing a good job with trying to be compatible to other software. Prioritizing important stuff and doing the right thing. Sometimes some things get done, rather than be 100% perfect. But past experience tells me things often get fixed or changed around once necessary. Not sure if that's a wise decision here. The JSON exchanged between the servers is probably extra work if changed around later.

path: 0 20823732 20823825 20824768 20825097 20825681, hotness: undefined, score: 10, children: 34
Skavau 7 points 7 months ago

The Stack overflow function is, to my knowledge, only on the test instance currently.

path: 0 20823732 20823825 20824768 20825097 20825398, hotness: undefined, score: 7, children: 1
arsCynic 1 point 7 months ago

I snaked you on your drift and surfed my way over already. Sorry ☺.

path: 0 20823732 20823825 20824768 20848224, hotness: undefined, score: 1, children: 0
jimmy90 -1 points 7 months ago

the lemmy devs are commies

is that not the obvious thing

are the piefed devs commies too?

what is this, the 1950s?

path: 0 20823732 20823825 20824768 20832893, hotness: undefined, score: -1, children: 1
NuXCOM_90Percent 2 points 7 months ago

To be clear: I don't give a fuck if someone identifies as communist. I disagree (more in the vicinity of demsoc, personally) but people have had more impractical ideologies.

The issue is that dessalines et al are very much tankies. People who will say and do whatever it takes to say that china and russia are correct because both of those countries used to identify as communist (how long either actually was is up for debate). And that tends to manifest as actively supporting the invasion of Ukraine and the state sponsored ethnic cleansing by, among other horrors, rape of (among multiple ethnic groups) the Uyghurs

path: 0 20823732 20823825 20824768 20832893 20833100, hotness: undefined, score: 2, children: 0
UnspecificGravity 3 points 7 months ago

I think the registration process and "official" app made piefed a more welcoming enrollment for people who are just casual users. Like, I had to explain a lot of shit to get my GF signed up for Lemmy. My grandma could sign up for piefed without much guidance.

path: 0 20823732 20823825 20826819, hotness: undefined, score: 3, children: 0
SatyrSack 46 points 7 months ago

In terms of what content you can see, the difference between Lemmy and PieFed is effectively the same as the difference between two Lemmy instances. As long as the instances federate with one another, it does not matter which platform you use. You can definitely interact with PieFed from Lemmy just fine. In fact, you are doing so right now! My account is on a PieFed Instance.

This meme is more making a joke about how relatively young PieFed is. Years back, a post to any community on the fediverse that got 20 upvotes was huge. But today, a post with 20 votes is basically nothing (depending in the size of the community). By the time PieFed came about, the fediverse was populated enough that a post with only 20 votes was nothing like a post with 20 votes in the olden days of Lemmy.

path: 0 20823732 20823951, hotness: undefined, score: 46, children: 0
Skavau 16 points 7 months ago

You can see lemmy communities on Piefed.

But you will need to make a new account on a piefed instance, same as you would moving to any other lemmy instance.

path: 0 20823732 20823804, hotness: undefined, score: 16, children: 7
theunknownmuncher 5 points 7 months ago

I thought we could easily migrate accounts between Fediverse instances and that that was a core feature of ActivityPub for preventing a single instance from dominating and effectively centralizing the Fediverse?

Does piefed not support account migration?

path: 0 20823732 20823804 20824007, hotness: undefined, score: 5, children: 6
Skavau 11 points 7 months ago

You can import your subscriptions, and communities can be migrated over - but I am unaware of an account migration function.

path: 0 20823732 20823804 20824007 20824062, hotness: undefined, score: 11, children: 4
theunknownmuncher 4 points 7 months ago

Hmm, only Mastodon is mentioned for this feature in the ActivutyPub spec... I'm not sure if it's the only service that has implemented this fully or if it's just the example used.

https://swicg.github.io/...

That's ashame, because account mobility is the most important tool for healthy decentralization. The reason Facebook or Twitter can "get away with" implementing such shitty policies and abusing their users is because the users are locked in, with a high cost to switching platforms.

The cost is highest for accounts like small businesses that live and die by social media marketing, once they have an established presence and successfully built a following on a platform, it is very risky for them to give that up and start over on a new one.

path: 0 20823732 20823804 20824007 20824062 20824255, hotness: undefined, score: 4, children: 3
KazuyaDarklight 9 points 7 months ago

Migrate is a strong word, more like you can copy your settings, it's certainly not intrinsic to the standard either. Remember, your username includes your instance after all. I am not deeply versed but one of the better platforms was Mastodon and it was still limited to moving your settings and followers to your new account and setting the old one to forward. Posts weren't reattributed or anything though.

The strength of the fediverse is how the data is duplicated and how it's the sum of many parts, but maintaining an "identity" on the fediverse is still wobbly, some like that though, it leans into the privacy/anonymity side of things.

path: 0 20823732 20823804 20824007 20824197, hotness: undefined, score: 9, children: 0
rozodru 12 points 7 months ago

for you an average user you're not going to notice much in difference. you'll get more features with Piefed but otherwise you can still view and interact with each instance.

From an admin side/someone who runs their own instance Piefed is just so much better. lighter, easier to set up, run, and manage.

path: 0 20823732 20824167, hotness: undefined, score: 12, children: 0
mesamunefire 10 points 7 months ago

No real difference in core features. Its all the extras that make me happy.

path: 0 20823732 20824539, hotness: undefined, score: 10, children: 2
SatyrSack 10 points 7 months ago

I have been really enjoying the scheduled post feature. I can set up my shitposts to be automatically posted at the optimal time of day. For English communities, I find that to be about 9:30 AM USA time.

path: 0 20823732 20824539 20825885, hotness: undefined, score: 10, children: 1
mesamunefire 2 points 7 months ago path: 0 20823732 20824539 20825885 20825902, hotness: undefined, score: 2, children: 0
kittenzrulz123 7 points 7 months ago

Basically there are no differences, sure piefed has extra features but if you're a mobile user no client acturally supports them. Also piefed is newer, less stable, and gets updated more frequently (so the difference between instances is bigger)

path: 0 20823732 20830390, hotness: undefined, score: 7, children: 5
Skavau 5 points 7 months ago

The different features are the differences, and you can use them on the browser if the mobile clients are behind. Piefed is fine enough on it.

path: 0 20823732 20830390 20830499, hotness: undefined, score: 5, children: 4
kittenzrulz123 4 points 7 months ago

Its not that the mobile clients are behind its that piefed has no mobile clients whatsoever, just a bunch of Lemmy clients that also happen to support piefed.

path: 0 20823732 20830390 20830499 20830945, hotness: undefined, score: 4, children: 3
Blaze 2 points 7 months ago

The limit between being a Lemmy or Piefed client gets a bit more blurry over time.

@moseschrute@piefed.social , would you consider Blorp a client for both Lemmy and Piefed, or a Lemmy client that also also supports Piefed?

path: 0 20823732 20830390 20830499 20830945 20839163, hotness: undefined, score: 2, children: 2
socsa -1 points 7 months ago

Piefed isn't run by cringe tankies who have diminished the struggle of an actual revolutionary by soiling their namesake with the view from an air conditioned computer chair.

Also, piefed isn't run by cringe tankies who call trans people bourgeoisie western pink washing, and then goes around begging for donations as if we owe them anything besides scorn.

path: 0 20823732 20850215, hotness: undefined, score: -1, children: 0
FenderStratocaster 35 points 7 months ago

Another migration. I know I'm sure I'll be told I'm a ding dong, but all these migrations are the reason why decentralized social media will never be popular. Some probably think that's a good thing, but 90% of the posts here are the same person posting hentai.

path: 0 20824334, hotness: undefined, score: 35, children: 35
Skavau 54 points 7 months ago

What do you mean "another migration"? Piefed and Lemmy communities and instances can be viewed from both.

path: 0 20824334 20824382, hotness: undefined, score: 54, children: 11
FenderStratocaster 28 points 7 months ago

I'll use the Casual Conversation community as an example. They started out on Lemmy.World. They had 6.7k subscribers. They moved to lemm.ee, which was shut down. Now they are at piefed. One of the biggest communities migrated multiple times and has lost almost 20% of the subscribers.

One could argue that this is the purpose of decentralized social media, but my point is that constant migration and evolution, while not exactly dubious, will keep casual users away.

path: 0 20824334 20824382 20824977, hotness: undefined, score: 28, children: 10
Skavau 30 points 7 months ago

Most of the initial communities made primarily on lemmy.world benefited from the initial flood of users joining from Reddit after the API fiasco. Most of them didn't stick around - but their presence on as subscribers on those communities still persists. It's a false number.

Subscribers aren't a great metric to determine community viability in many cases.

path: 0 20824334 20824382 20824977 20825274, hotness: undefined, score: 30, children: 2
0_o7 1 point 7 months ago

And the current uptick in piefed is because it's new tool in the block. It still remains to see if people stick around.

So, yea, we'll see how that pans out.

path: 0 20824334 20824382 20824977 20825274 20835656, hotness: undefined, score: 1, children: 1
Blaze 22 points 7 months ago

One of the biggest communities migrated multiple times and has lost almost 20% of the subscribers.

Subscribers are a poor metrics. Active users is much more relevant, and !casualconversation@piefed.social is as active as the previous versions used to be

path: 0 20824334 20824382 20824977 20826464, hotness: undefined, score: 22, children: 1
FenderStratocaster 5 points 7 months ago

That's fair.

path: 0 20824334 20824382 20824977 20826464 20828712, hotness: undefined, score: 5, children: 0
rimu 15 points 7 months ago

High-fidelity community migration (no loss of followers) is on my to-do list for the next release. It might get bumped to the release after but it's on the agenda.

path: 0 20824334 20824382 20824977 20828578, hotness: undefined, score: 15, children: 1
FenderStratocaster 4 points 7 months ago

Now we're talkin!

path: 0 20824334 20824382 20824977 20828578 20828708, hotness: undefined, score: 4, children: 0
hendrik 7 points 7 months ago

Yeah, I wish there was a good technical solution for this baked into the Fediverse. PieFed has some of that, you get some features for migrating communities there. But all of this is integral part of this place. We also have like 10 technology communities. It's not obvious what to subscribe to. Some formed due to growth and changed dynamics. Some because someone was against AI and someone else pro AI, and they split off and made yet another community with the same name. None of that is intuitive to newbies. You can of course subscribe to all of them but then you'll regularly get the same post 5 times in your timeline because it also leads to cross-posting and all kinds of things... This is by design, though. And it's difficult to design online platforms to be easy to use, cater to all people, grant freedom to everyone... I think we still got some room for improvement 😉

path: 0 20824334 20824382 20824977 20826264, hotness: undefined, score: 7, children: 2
korendian 1 point 7 months ago
path: 0 20824334 20824382 20824977 20826264 20828963, hotness: undefined, score: 1, children: 1
jerkface 15 points 7 months ago

Once upon a time you needed GNUtella, freeseek, kaazaa, eMule, NZB, DirectConnect, FreeNet, and bittorrent. Give it time, if you can't tolerate being an early adopter. You will find this pattern throughout life, not just on decentralized networks.

path: 0 20824334 20826190, hotness: undefined, score: 15, children: 4
tempest 1 point 7 months ago

Those were different times.

The average Internet user is a phone user who only knows apps.

I would say centralization might be required to reach Facebook like sizes but I'm not sure that is a valuable goal.

path: 0 20824334 20826190 20829176, hotness: undefined, score: 1, children: 3
jerkface 2 points 7 months ago

The times change but technologies still go through the same lifecycles. Nothing wrong with waiting for things to mature, though I'd rather accept some rough edges than accept getting sold as a product.

path: 0 20824334 20826190 20829176 20831001, hotness: undefined, score: 2, children: 2
tempest 1 point 7 months ago

What I meant more is less that the technologies change but that the users have. Users were more tech savvy by nessessity.

There are plenty of people online now who would never have made it before.

path: 0 20824334 20826190 20829176 20831001 20832332, hotness: undefined, score: 1, children: 1
ozymandias 10 points 7 months ago

you can just block the whole lemmynsfw instance

path: 0 20824334 20824366, hotness: undefined, score: 10, children: 6
FenderStratocaster 6 points 7 months ago

I did. I still get weird posts from time to time from different communities.

path: 0 20824334 20824366 20824781, hotness: undefined, score: 6, children: 5
ozymandias 3 points 7 months ago

i don’t think i’ll ever understand how people can get off to drawings…

path: 0 20824334 20824366 20824781 20824983, hotness: undefined, score: 3, children: 4
Wren 7 points 7 months ago

I have a very specific fantasy that doesn't happen in real life... yet.

path: 0 20824334 20824366 20824781 20824983 20825884, hotness: undefined, score: 7, children: 2
FenderStratocaster 5 points 7 months ago

I will never understand it, as it's not my thing, but more power to them I guess.

path: 0 20824334 20824366 20824781 20824983 20825017, hotness: undefined, score: 5, children: 0
balsoft 8 points 7 months ago

The point of ActivityPub is that you don't have to migrate your account to be part of any shiny new social media platform. You can just stick to lemmy and interact with piefed communities/posts/comments without even knowing about it, just like this post here (it was posted by a piefed user and you're viewing it on lemmy).

path: 0 20824334 20824931, hotness: undefined, score: 8, children: 7
FenderStratocaster 3 points 7 months ago

I understand you don't have to migrate your account. You do have to migrate the community though. Which caused a 20% decrease in members.

path: 0 20824334 20824931 20825053, hotness: undefined, score: 3, children: 6
Skavau 6 points 7 months ago

In an ideal world, and I know this is the end-game - Piefed does plan to support total community migration between instances. Ie a piefed.social community could move to piefed.ca and maintain all of its posts, comments and subscribers. Communities would be modular.

Lemmy wouldn't recognise this though, and I doubt that would ever change.

path: 0 20824334 20824931 20825053 20825660, hotness: undefined, score: 6, children: 1
nutomic 4 points 7 months ago

At some point in the future I will also have time to implement community migration for Lemmy. In theory it's not so complicated, but there are lots of other things to do.

path: 0 20824334 20824931 20825053 20825660 20829141, hotness: undefined, score: 4, children: 0
Blaze 1 point 7 months ago path: 0 20824334 20824931 20825053 20829815, hotness: undefined, score: 1, children: 3
FenderStratocaster 1 point 7 months ago

path: 0 20824334 20824931 20825053 20829815 20830163, hotness: undefined, score: 1, children: 2
HeyThisIsntTheYMCA 2 points 7 months ago

What you don't like my furry feet fotos pics?

path: 0 20824334 20829511, hotness: undefined, score: 2, children: 2
FenderStratocaster 4 points 7 months ago

I don't dislike them. I hate them. I HATE YOU

path: 0 20824334 20829511 20829768, hotness: undefined, score: 4, children: 1
DragonTypeWyvern 2 points 7 months ago

Can't please everyone! But you'll really, really please some of them

path: 0 20824334 20829511 20829768 20839054, hotness: undefined, score: 2, children: 0
garretble 34 points 7 months ago

This is the first I've heard of piefed, and so I'm just browsing the desktop site. It's kinda jank, to be honest.

path: 0 20831301, hotness: undefined, score: 34, children: 16
frog_brawler 10 points 7 months ago
path: 0 20831301 20831900, hotness: undefined, score: 10, children: 4
Tuuktuuk 11 points 7 months ago

It has polls, it supports push notifications so phone apps can immediately tell you about notifications, you can write remarks about users that will be shown to you only next to the user's name, and what I actually find the biggest usability improvement is that I can turn on notifications for any post or any community so that if anyone writes anything to that community, I get a notification. That's awesome with groups that get like one post every two weeks but where those few posts are all very interesting!

Some people also like that you can group a bunch of communities into one feed that you can view as if they were together just one community. Meaning, if there are copies of the same community on five instances, you can opt to merge their content when viewed from your user account.

path: 0 20831301 20831900 20832344, hotness: undefined, score: 11, children: 3
No_Bark 23 points 7 months ago

it supports push notifications so phone apps can immediately tell you about notifications

Nope, I'm out. Lemmys fine thanks.

path: 0 20831301 20831900 20832344 20832709, hotness: undefined, score: 23, children: 2
Skavau 12 points 7 months ago

Tbf I don't think you have to have it on.

path: 0 20831301 20831900 20832344 20832709 20833180, hotness: undefined, score: 12, children: 0
Tuuktuuk 4 points 7 months ago

No worries :)

path: 0 20831301 20831900 20832344 20832709 20832858, hotness: undefined, score: 4, children: 0
Tuuktuuk 6 points 7 months ago

In what way does it feel jank, in your opinion?

I've personally been happy with it, and I would guess the maintainers are used to the way it works and might be blind to things you notice! But, there's a real good chance that if you can point out specific details that could be improved, they indeed will be improved. At least they've done awesome job handling suggestions I've made!

path: 0 20831301 20832298, hotness: undefined, score: 6, children: 6
garretble 12 points 7 months ago

I think just general UI stuff across at least the homepage

  • Some buttons that wrap touch each other
  • There's a banner at the top (since I don't have an account) that has weird, off-center margins
  • When I first went to the site I guess the Explore dropdown didn't load so it was an empty dropdown (though it's now populated so that may have been a one off network request issue)
  • If I have scrolled down the page a bit, every time I click an item in the main nav (like Explore) the page scrolls up by about 15 pixels for some reason
  • The Piefed logo isn't horizontally centered with the actual nav items so the text doesn't line up correctly

This is obviously using Bootstrap to handle the UI, and that's fine. I'm not knocking that necessarily. But it's a little jank and rough around the edges. These are things I noticed in, like, 30 seconds.

And this isn't to say that Lemmy.world is perfect or anything. And I don't really use the desktop site for Lemmy. I just use Voyager on my pc. But even the Lemmy site feels a little more solid, if that makes sense (even if Lemmy.world is also using Bootstrap).

path: 0 20831301 20832298 20832847, hotness: undefined, score: 12, children: 5
wjs018 6 points 7 months ago

I was only able to reproduce one of these with some local testing (the not-logged-in banner). What browser are you using? As for the Explore dropdown (and most dropdowns in the web ui), they use htmx to populate, so if there is a network hiccup, then it will just show up empty. Lastly, I believe you on the buttons wrapping weird. I have caught and fixed a lot of those in my time contributing to piefed, so would always appreciate help identifying where it is happening.

A big priority for rimu when making piefed is to keep the request size small to accommodate very poor network connections. From talking with him, he has historically had to deal with extremely tenuous internet access in the past and wants to be able to still function in those environments (a user setting can also enable low bandwidth mode to disable things like images). That is just really hard to do using the javascript frameworks that a lot of modern web interfaces use these days. So, we have compromised and sprinkled in some interactivity where it makes the most sense using tools like htmx or vanilla javascript. However, it can make the site feel a bit like internet 1.0 at times.

With the piefed api maturing, there is now the option to simply use an alternative frontend (photon, blorp, etc.) or a mobile app (voyager, interstellar, etc.) instead. The main area of the site that we have not included in the api is the admin area, so managing things like defederations would still have to be done through the web UI.

Thanks for the feedback!

path: 0 20831301 20832298 20832847 20835818, hotness: undefined, score: 6, children: 1
moseschrute 3 points 7 months ago

Incredible optimization! I don’t think Blorp will ever be able to deliver a web experience as low data as the official UI. However, if you download Blorp (or any of the other apps)  then you no longer have to send frontend code over the network. The only data that needs to be downloaded at runtime is API requests. Suddenly the network usage looks a lot more similar to the official UI (though I should test to confirm).

path: 0 20831301 20832298 20832847 20835818 20841710, hotness: undefined, score: 3, children: 0
tamal3 3 points 7 months ago

Can I also say, as a somewhat normie human, that it's called PieFed? I might need a little background information on this one.

Though I do participate in a group named Lemmy.

path: 0 20831301 20832298 20832847 20833488, hotness: undefined, score: 3, children: 2
wjs018 8 points 7 months ago

I believe the origin is a portmanteau of python (the language piefed is written in) and fediverse. The pie imagery is more for fun.

Fun fact, the dev server that lives at the bleeding edge of the codebase is called crust.

path: 0 20831301 20832298 20832847 20833488 20835827, hotness: undefined, score: 8, children: 1
Lemminary 1 point 7 months ago

It has its rough edges, but I do like it overall.

path: 0 20831301 20833158, hotness: undefined, score: 1, children: 3
neon_nova 4 points 7 months ago

Does it federate with Lemmy?

path: 0 20831301 20833158 20834098, hotness: undefined, score: 4, children: 1
Skavau 8 points 7 months ago

Yes.

path: 0 20831301 20833158 20834098 20834180, hotness: undefined, score: 8, children: 0
Postimo 1 point 7 months ago
path: 0 20831301 20833158 20833626, hotness: undefined, score: 1, children: 0
KawaiiBitch 33 points 7 months ago

path: 0 20848621, hotness: undefined, score: 33, children: 0
rimu 26 points 7 months ago

Oof. Lemmy as a decrepit grandma is a bit unkind.

Without their pioneering work in the early quiet days and absorbing the first wave of reddit refugees, PieFed wouldn't have anything to glom onto and build from so there is a symbiosis going on.

path: 0 20829711, hotness: undefined, score: 26, children: 1
Tuuktuuk -4 points 7 months ago

The grandma was an exceptionally agile and good-looking woman in her youth, indeed! She was also pioneering a lot of things the following generations are now enjoying! But she's nevertheless of the previous generation now.

path: 0 20829711 20832372, hotness: undefined, score: -4, children: 0
Wren 22 points 7 months ago

I looked into making yet another account, this time on piefed, but didn't like the automatic blocking of a few communities. Yeah, I'm a massive hypocrite because I argued hard for the defederation of maga.place from sh.itjust.works, but since coming to lemmy.today I don't like the idea of automatic defederation where the users don't have input.

Are there any piefed instances that don't block anything? Or, is there a way for me to befriend everyone on my account?

path: 0 20826019, hotness: undefined, score: 22, children: 40
Skavau 13 points 7 months ago

piefed.zip is likely the one that doesn't block anything if it is modelled after lemmy.zip here.

path: 0 20826019 20826128, hotness: undefined, score: 13, children: 30
Wren 15 points 7 months ago

Disclaimer: I checked into piefed shit again and this unexpectedly turned into a whole thing.

I found this here https://join.piefed.social/features/ :

Default Blocks – Lemmygrad, Hexbear, and Nazi instances are blocked out of the box.

Does that mean they can't be unblocked? And now I'm seeing:

Authoritarian Inoculation – Feature to reduce the impact of authoritarian propaganda.

That gave me pause, not because I want to promote authoritarian propaganda, but I'm concerned about someone else deciding what's authoritarian.

And:

Low Reputation Indicator – Identifies consistently downvoted users.

This feels like karma. I'm alright with rule-breaking stuff getting deleted and people getting banned for bad behavior, but I don't think people should be flagged for consistently going against the popular narrative. If they're being assholes users can report them.

path: 0 20826019 20826128 20826621, hotness: undefined, score: 15, children: 29
Skavau 6 points 7 months ago

Does that mean they can’t be unblocked?

They can be unblocked. They're just blocked by default.

These are all tools that can be modified by server admins.

path: 0 20826019 20826128 20826621 20826652, hotness: undefined, score: 6, children: 1
Wren 2 points 7 months ago

Fair enough. Thanks for the info!

path: 0 20826019 20826128 20826621 20826652 20827235, hotness: undefined, score: 2, children: 0
OpenStars 3 points 7 months ago

I found this here https://join.piefed.social/features/ :

Note how that link points to PieFed.social. Yes, those are defederated at the instance level, so a user cannot work around that - Lemmy defederation works the same way. However, PieFed.zip is a separate instance from PieFed.socual, and does not defederate from much at all.

Low Reputation Indicator

I find that feature very helpful. It's merely a visual indicator placed next to the username, which is very different than the software making decisions for me on what content to show or not, and that indicator helps clue me in that responding to e.g. an argumentative person is unlikely to enhance my day. Also while I don't recall the details on how it is set, imagine if you will that someone receives 10x more downvotes total than upvotes. Such an account is usually a troll. Most people get downvotes occasionally, but that would not trigger the indicator to be shown (and again, even if it somehow did, it's just a visual icon, not a block or anything).

Lemmy is FAR more known for authoritative censorship than PieFed. Particularly those instances mentioned like hexbear and the infamous lemmy.ml where you cannot criticize Russia, China, or North Korea without being banned from every community on the entire instance including those you've never even heard of.

path: 0 20826019 20826128 20826621 20828729, hotness: undefined, score: 3, children: 24
Wren 5 points 7 months ago

The link doesn't point to the instance, that's the main blog/info site for piefed.

Either way my question about blocking was answered, now I know the block list isn't baked into piefed itself.

I don't agree with the low rep feature. There are rules, reporting and blocking available moderate communities. If one user doesn't want to interact with another for non-rulebreaking reasons, they can block them, tag them, or just not respond. This just opens up new reasons to manipulate votes and downvote unpopular opinions.

I'm on Lemmy.Today, so I disagree that it's authoritative. This instance doesn't block/isn't blocked by any instance, and allows all opinions that aren't bigoted or insulting. There's a whole spectrum of vibes across the instances but there's nothing authoritative about the Lemmy ground rules.

path: 0 20826019 20826128 20826621 20828729 20830117, hotness: undefined, score: 5, children: 23
Sunshine -1 points 7 months ago

Authoritarian Inoculation – Feature to reduce the impact of authoritarian propaganda.

That’s just the anti-propaganda links on the side.

path: 0 20826019 20826128 20826621 20827236, hotness: undefined, score: -1, children: 1
wjs018 3 points 7 months ago

Correct, and an admin can even disable those if they want to run a propaganda piefed instance for whatever reason.

path: 0 20826019 20826128 20826621 20827236 20835399, hotness: undefined, score: 3, children: 0
cloudless 11 points 7 months ago path: 0 20826019 20826435, hotness: undefined, score: 11, children: 7
Wren 19 points 7 months ago

What if I want to get to know the good people of cum.salon, or yggdrasil...

spoiler

No LGBTQ. Period. No homosexuality. No men who think they're women or women who think they're men. No made up genders. That goes for both users and posted content. For the record, traps are gay and will not be tolerated.

I stand 100% corrected.

Thank you.

path: 0 20826019 20826435 20827215, hotness: undefined, score: 19, children: 5
scintilla 14 points 7 months ago

There's something so funny to me about just super blatant bigotry. Because this sounds unhinged to anyone with even a shred of decency.

path: 0 20826019 20826435 20827215 20828179, hotness: undefined, score: 14, children: 0
flamingos 12 points 7 months ago

Immediately followed by a rule against 'miscegenation'. That's one to add to our list…

path: 0 20826019 20826435 20827215 20827331, hotness: undefined, score: 12, children: 2
davidagain 4 points 7 months ago

Whoa. I had to look it up. I'm guessing these dudes really strongly don't wanna see a black dude make love to a white woman or visa versa.

path: 0 20826019 20826435 20827215 20827331 20835411, hotness: undefined, score: 4, children: 1
Tuuktuuk 9 points 7 months ago

This is also impressive:

In general, if it's something that would have gotten you in trouble a hundred years ago, you shouldn't be posting it. If you have to ask, don't post it.

In year 1925 you could already get into big trouble in some western countries if you talked too positively about Jewish people. Should people not post anything positive about Jewish people on that instance? Or is it okay until year 2032? Also, I've understood that in year 1925 you could get into trouble if you talked strongly against vaccinations. Do they forbid anti-vaxxer posts on Yggdrasil?

path: 0 20826019 20826435 20827215 20832720, hotness: undefined, score: 9, children: 0
HeyThisIsntTheYMCA 2 points 7 months ago

Maybe I'm being picky but I see no reasons for defederation listed on that page. It'd be helpful information to have

path: 0 20826019 20826435 20829451, hotness: undefined, score: 2, children: 0
Blaze 5 points 7 months ago

Piefed.zip

path: 0 20826019 20826620, hotness: undefined, score: 5, children: 0
Adderbox76 19 points 7 months ago

giving a shit about "upvotes" seems like such a reddit thing to do.

I'm here for replies and conversation and yes...sometimes getting into arguments with dickheads (and...I'll be honest...sometimes being said dickhead when I'm having a bad day)

I don't actually care how many internet strangers are giving me made up internet points or not. It's always just seemed to me to be vacuous and silly as something to "chase"

path: 0 20847087, hotness: undefined, score: 19, children: 6
Skavau 6 points 7 months ago

Upvotes are a means to an end for site visibility though, which is required to attain conversation in most cases.

path: 0 20847087 20847115, hotness: undefined, score: 6, children: 1
Adderbox76 4 points 7 months ago

I get that. I just mean that I don't spend time trying to tailor an answer to try to get the most number of upvotes. I'll say what i want to say, and if people want to upvote me for it or downvote me for it makes no difference whatsoever.

path: 0 20847087 20847115 20847166, hotness: undefined, score: 4, children: 0
dil 3 points 7 months ago

its how you know if ppl understood your point

path: 0 20847087 20848454, hotness: undefined, score: 3, children: 1
cassandrafatigue 1 point 7 months ago

Not always!

path: 0 20847087 20848454 20855802, hotness: undefined, score: 1, children: 0
Tollana1234567 1 point 7 months ago

reddit now will monitor upvotes in thier filters, too much too fast would result in a probably shadowban/permaban, because it assumes you are botting.

path: 0 20847087 20856123, hotness: undefined, score: 1, children: 0
QuoVadisHomines 1 point 7 months ago

Best thing about this place is you can remove karma entirely from your user experience. I don't see any count at all

path: 0 20847087 20859153, hotness: undefined, score: 1, children: 0
HeyThisIsntTheYMCA 17 points 7 months ago

Two uppies are enough. I made one person smile/chuckle/think/poo in terror/hungry. In terms of bad fables "it made a difference to that one"

path: 0 20829329, hotness: undefined, score: 17, children: 1
SoleInvictus 15 points 7 months ago

If you got two up votes, I'd wager at least twenty people also viewed your content without down voting. That's a big win.

path: 0 20829329 20829404, hotness: undefined, score: 15, children: 0
Diva 15 points 7 months ago

never did care for piefed, none of the features it's added so far are particularly appealing to me

path: 0 20826831, hotness: undefined, score: 15, children: 19
Blaze 5 points 7 months ago

Keeping an eye on smaller communities thanks to personal feeds is nice.

path: 0 20826831 20829742, hotness: undefined, score: 5, children: 18
Diva 6 points 7 months ago

the latest feature I've found is that when an admin deletes your account on their end it produces a 'not found' page, overall the software seems much better at filtering out dissent- ironic considering a primary complaint they have is 'authoritarian developers' influencing the software in some nebulous way

path: 0 20826831 20829742 20831163, hotness: undefined, score: 6, children: 17
Blaze 3 points 7 months ago

I'm quite sure it's similar on Lemmy: if an admin purges a user, their profile won't be accessible anymore

path: 0 20826831 20829742 20831163 20831199, hotness: undefined, score: 3, children: 16
Diva 11 points 7 months ago path: 0 20826831 20829742 20831163 20831199 20831237, hotness: undefined, score: 11, children: 15
banshee 14 points 7 months ago

I much prefer the technical architecture of Lemmy over PieFed. I understand the qualms with the core developers, but it feels dirty to move from Rust to Python.

path: 0 20846836, hotness: undefined, score: 14, children: 1
finitebanjo 0 points 7 months ago

Thats fair, but I don't make exceptions for that alone. We're talking about advocates of widespread war and dictatorships.

path: 0 20846836 20850140, hotness: undefined, score: 0, children: 0
arsCynic 12 points 7 months ago

Thanks for this post. Found my way into a PieFed account because of it. I find the user experience to be much more pleasant indeed. Especially for finding communities across instances and searching for posts/comments in general.

path: 0 20841182, hotness: undefined, score: 12, children: 1
Blaze 4 points 7 months ago path: 0 20841182 20841236, hotness: undefined, score: 4, children: 0
Pistcow 12 points 7 months ago

The point with 6 up votes said...

path: 0 20823504, hotness: undefined, score: 12, children: 3
teft 19 points 7 months ago

An upvote a minute is pretty solid numbers for the beginning of a thread on the fediverse. As of my comment he's got 15 upvotes in 13 minutes.

path: 0 20823504 20823619, hotness: undefined, score: 19, children: 2
13igTyme 9 points 7 months ago

Currently 51 in 38 minutes.

path: 0 20823504 20823619 20824071, hotness: undefined, score: 9, children: 1
partial_accumen 4 points 7 months ago

At the 1 hour mark:

path: 0 20823504 20823619 20824071 20824716, hotness: undefined, score: 4, children: 0
b161 11 points 7 months ago

Wait we’re old now?

path: 0 20839119, hotness: undefined, score: 11, children: 1
aceshigh 3 points 7 months ago

Isn’t the average age here like 40?

path: 0 20839119 20849872, hotness: undefined, score: 3, children: 0
Semi_Hemi_Demigod 9 points 7 months ago

Lemmy votes are more valuable because there are fewer of them.

path: 0 20824189, hotness: undefined, score: 9, children: 2
SatyrSack 0 points 7 months ago

Fewer votes, or fewer accounts? I am not sure what you mean here.

path: 0 20824189 20824269, hotness: undefined, score: 0, children: 1
Semi_Hemi_Demigod 4 points 7 months ago

Fewer votes

path: 0 20824189 20824269 20825147, hotness: undefined, score: 4, children: 0
neuracnu 9 points 7 months ago

Lemmy's 'Create Post' page includes an automatic search within the specified communities for posts with similar titles and descriptions. This is extremely helpful in preventing similar items from being posted again and again, helping save valuable time for mods and admins.

Piefed doesn't have this.

That's basically the only feature keeping me on Lemmy at this point.

path: 0 20824498, hotness: undefined, score: 9, children: 5
Blaze 3 points 7 months ago

Piefed has had that feature for a while.
Which Piefed instance were you using?

Edit: you mean titles and descriptions, not URLs?

@rimu@piefed.social how difficult would that be to implement?

path: 0 20824498 20826529, hotness: undefined, score: 3, children: 4
Skavau 7 points 7 months ago

Yeah, I was about to reply like you - but realised they meant similar titles rather than URLs. I do think it should be time-limited though.

ie: If I make a thread "What's your favourite obscure series?" on TV, that someone posted it 2 years ago in some other community isn't very relevant lol

path: 0 20824498 20826529 20826723, hotness: undefined, score: 7, children: 0
rimu 3 points 7 months ago

Yeah PieFed searches for similar posts by url. Obvs that won't work for posts without a url... Falling back to title would be easy but probably lots of false positives.

path: 0 20824498 20826529 20828555, hotness: undefined, score: 3, children: 1
Blaze 1 point 7 months ago

That's my feeling as well

path: 0 20824498 20826529 20828555 20829563, hotness: undefined, score: 1, children: 0
0_o7 1 point 7 months ago

URL seems like be the logical thing to search for to prevent duplicates. It's strange consider title or description.

path: 0 20824498 20826529 20835862, hotness: undefined, score: 1, children: 0
daggermoon 8 points 7 months ago

I thought piefed was a lemmy instance

path: 0 20837728, hotness: undefined, score: 8, children: 4
Skavau 7 points 7 months ago

No, it's different software.

path: 0 20837728 20840337, hotness: undefined, score: 7, children: 0
PrettyFlyForAFatGuy 6 points 7 months ago

Different software on the same protocol

path: 0 20837728 20842265, hotness: undefined, score: 6, children: 2
pinball_wizard 1 point 7 months ago

That's so cool. This place is so freaking cool.

path: 0 20837728 20842265 20850438, hotness: undefined, score: 1, children: 1
PrettyFlyForAFatGuy 2 points 7 months ago

It certainly has a lot of potential

path: 0 20837728 20842265 20850438 20850663, hotness: undefined, score: 2, children: 0
lonefighter 6 points 7 months ago

I have a piefed account and maybe someone can tell me if I'm doing something wrong, , an instance thing, or if it's a piefed thing, or a weird glitch, but I stopped using it because it kept force-following hundreds of communities for me. When I unsubscribed it would instantly re-subscribe me to them and then add more random communities. I like to be able to scroll by both all to view new stuff but also subscribed and just see stuff I'm interested in, not have my subscribed communities be hundreds of communities with tons of topics I have absolutely no interest in. It was things like niche sports teams, communities for towns on the other side of the globe from me, or stuff like hobbies or TV shows I've no interest in. There was no way to filter it to show things I actually cared about. I haven't logged in in months because I got so frustrated. I feel like an old person who can't figure out this new fangled tech. I'm 99% sure I wasn't hacked either because I could hit unsubscribe, refresh, refresh again, and it would re-subscribe.

path: 0 20831899, hotness: undefined, score: 6, children: 3
Skavau 11 points 7 months ago

Okay, so you're the second user who has mentioned this today. You're right in my opinion.

I've specifically directly bought this up in conversations about this. Don't worry. I don't think the auto-subscribing to all the communities in a topic is a good idea.

A new piefed.social user is presented with topics that they select an interest in. Each topic is a feed made by site admins, with specific communities in them. Some feeds can be quite large. It currently auto-subscribes you to each community in a feed. So if you pick multiple interests, you can get a very large subscription list. I will forward this on to emphasise my point.

path: 0 20831899 20831993, hotness: undefined, score: 11, children: 0
Skavau 2 points 7 months ago path: 0 20831899 20832919, hotness: undefined, score: 2, children: 1
lonefighter 3 points 7 months ago

Ooh, thanks, I will have to look at that list when I get a minute. It's weird, because most of the stuff I'm subscribed to is stuff I have no interest in and never would have checked a topic saying I am, so I'm curious to see what topics those communities would be related to that I might have clicked interested in. For example, it kept subscribing me to so many sports communities like basketball and football and I have zero interest in anything to do with sports, but I might have clicked an interest in something like outdoors or hiking.

path: 0 20831899 20832919 20834310, hotness: undefined, score: 3, children: 0
mintiefresh 6 points 7 months ago

Piefed is awesome. Switched over and haven't looked back.

path: 0 20825012, hotness: undefined, score: 6, children: 5
LaLuzDelSol 6 points 7 months ago

As just someone who browses all on lemmy.world and comments occasionally is there anything better about doing the same on piefed? I don't feel like my experience is lacking, except that sometimes images load slowly depending on the instance. And I don't think there are native videos, or at least I see very few of them.

path: 0 20825012 20825862, hotness: undefined, score: 6, children: 4
nutomic 6 points 7 months ago

Afaik lemmy.world doesn't have image proxying enabled, so your browser/app has to connect to other servers to load images. If you use an instance which has this enabled it's probably faster.

path: 0 20825012 20825862 20829210, hotness: undefined, score: 6, children: 1
LaLuzDelSol 4 points 7 months ago

Oh, interesting! Thanks for the info.

path: 0 20825012 20825862 20829210 20829933, hotness: undefined, score: 4, children: 0
Skavau 6 points 7 months ago

Piefed has poll functions, post scheduling, events, custom feeds, filtering options, flairs, hashtags and many moderating QoL tools. It also groups crossposts into single threads.

A user might not notice most of this if none of it directly appeals to them, although mods absolutely would.

path: 0 20825012 20825862 20826215, hotness: undefined, score: 6, children: 0
Blaze 4 points 7 months ago path: 0 20825012 20825862 20826644, hotness: undefined, score: 4, children: 0
ThatGuy46475 5 points 7 months ago

Is there a piefed app

path: 0 20835119, hotness: undefined, score: 5, children: 7
SatyrSack 8 points 7 months ago path: 0 20835119 20836291, hotness: undefined, score: 8, children: 6
archchan 3 points 7 months ago

Lemmy has an "official" app. It's called Jeroba and it's made by the same devs.

path: 0 20835119 20836291 20836967, hotness: undefined, score: 3, children: 3
SatyrSack 5 points 7 months ago

It is "official" only in the sense that its main contributor is the main contributor to Lemmy. They are clear that Jerboa is not "the official Lemmy app".

path: 0 20835119 20836291 20836967 20837211, hotness: undefined, score: 5, children: 1
JackbyDev 6 points 7 months ago

It's the unofficial official app though.

path: 0 20835119 20836291 20836967 20837211 20837811, hotness: undefined, score: 6, children: 0
DragonTypeWyvern 3 points 7 months ago

Jerboa, like the rodent

path: 0 20835119 20836291 20836967 20838985, hotness: undefined, score: 3, children: 0
ohulancutash 1 point 7 months ago

Thunder’s been fucked a couple of weeks. Unless you like marking random comments as read in your inbox, and 5GB of App Data filling your storage for some reason.

path: 0 20835119 20836291 20839199, hotness: undefined, score: 1, children: 1
SatyrSack 2 points 7 months ago

A fix to that inbox issue was just merged, and should be implemented in the next release

https://github.com/thunder-app/thunder/pull/1981

And on Android, at least, you can clear the app's cache whenever you want when it fills up, from the system settings app.

path: 0 20835119 20836291 20839199 20839896, hotness: undefined, score: 2, children: 0
Little_Urban_Achiever 5 points 7 months ago

Is there no bewbs or NSFW instances on piefed though? Like not even available to view through Federation. Or am i missing something?

path: 0 20834262, hotness: undefined, score: 5, children: 5
Skavau 6 points 7 months ago

Piefed.social, no, but other piefed instances might.

path: 0 20834262 20834271, hotness: undefined, score: 6, children: 1
davidagain 1 point 7 months ago

I thought that instances run by the fedihosting folks (that are behind .world) don't have a no porn rule iirc. Don't know whether you can subscribe to the lemmy boobycomms via piefed.world though. I think in principle the protocol allows it if the piefed instance hasn't defederated from the lemmy boobyinstances. Ymmv.

path: 0 20834262 20834271 20835309, hotness: undefined, score: 1, children: 0
Blaze 3 points 7 months ago

Piefed.zip federates with NSFW instances

path: 0 20834262 20839258, hotness: undefined, score: 3, children: 2
0xDREADBEEF 1 point 7 months ago

which nsfw piefed instances?

path: 0 20834262 20839258 20842412, hotness: undefined, score: 1, children: 1
Blaze 2 points 7 months ago path: 0 20834262 20839258 20842412 20843068, hotness: undefined, score: 2, children: 0
Mangoholic 4 points 7 months ago

Piefed was super slow it should be an image of a senior outrunning the kid with asthma.

path: 0 20839704, hotness: undefined, score: 4, children: 3
Skavau 1 point 7 months ago

How so?

path: 0 20839704 20840334, hotness: undefined, score: 1, children: 2
Mangoholic 2 points 7 months ago

Took more than 60sec to load images or video. Maybe the instance was at fault but my experience wasn't great so far.

path: 0 20839704 20840334 20852063, hotness: undefined, score: 2, children: 1
rumba 3 points 7 months ago

Took more than 60sec to load images or video.

That's the instance one way or another. Media needs to be accelerated via content delivery network on all platforms or you get speeds of the web in the 90's. You can get by pretty easily with a handful of users, but most instances get hamstrung pretty quickly if they don't offload the media to a caching service.

The instance that runs the piefed acct I frequent has database problems, I've only put a few dozen comments in there, and loading my profile takes almost a minute. Loading actual media there is fine through.

It kills me because the one thing I do is go back to things I've posted and look for more conversation on posts that people make on my posts.

Early lemmy ran into a lot of scale issues too until everyone started running CDN and moving their job runners and database off the webserver and in some cases run multiple servers with a load balancer.

path: 0 20839704 20840334 20852063 20852813, hotness: undefined, score: 3, children: 0
tigeruppercut 3 points 7 months ago

Is there a way to get the piefed feed to not be giant expanded card view and instead more like a list view? It was bad enough for me when the functionality of old lemmy stopped working on my instance (I guess I could make a .world account as it still seems to mostly work over there), but the 1 post per screen style of piefed drives me crazy.

path: 0 20824834, hotness: undefined, score: 3, children: 3
SatyrSack 9 points 7 months ago

Settings > User interface > Compact UI > More compact

path: 0 20824834 20824888, hotness: undefined, score: 9, children: 1
tetris11 6 points 7 months ago

Compact UI > More compact

lmao

path: 0 20824834 20824888 20825513, hotness: undefined, score: 6, children: 0
Skavau 7 points 7 months ago

In settings you can convert it to compact view.

path: 0 20824834 20824889, hotness: undefined, score: 7, children: 0
captain_aggravated 3 points 7 months ago

Points? What is this, Reddit?

path: 0 20833810, hotness: undefined, score: 3, children: 4
DragonTypeWyvern 1 point 7 months ago

Tbh even on that level Lemmy was hitting those numbers before Piefed released, and it sure seems like a lot of the Piefed posters are just old Lemmy posters who prefer it.

path: 0 20833810 20839015, hotness: undefined, score: 1, children: 3
captain_aggravated 2 points 7 months ago

What I'm getting at is, we don't have a karma counter. Who gives a puke about "points" on this platform?

path: 0 20833810 20839015 20839135, hotness: undefined, score: 2, children: 2
DragonTypeWyvern 1 point 7 months ago

People chasing dopamine hits

path: 0 20833810 20839015 20839135 20839236, hotness: undefined, score: 1, children: 0
Muehe 1 point 7 months ago

Oh we have them, they just aren't shown in the default interface. But frontends like kbin/mbin show an upvote minus downvote number on your profile page for example.

path: 0 20833810 20839015 20839135 20841628, hotness: undefined, score: 1, children: 0
98vesselsreptile 3 points 7 months ago

Is there an iOS app for PieFed?

path: 0 20844913, hotness: undefined, score: 3, children: 2
SatyrSack 3 points 7 months ago

I suggest Thunder or Voyager on Android, and I know they both have an iOS version. Here is more info about PieFed apps: https://piefed.social/...

path: 0 20844913 20844994, hotness: undefined, score: 3, children: 1
98vesselsreptile 2 points 7 months ago

Awesome, thanks

path: 0 20844913 20844994 20845154, hotness: undefined, score: 2, children: 0
Lazylazycat 3 points 7 months ago

I like being on lemmy and I've managed to find piefed instances I have subscribed to so they're part of my feed, but can anyone tell me if it's possible to view piefed instances in my "all" view that I'm not subscribed to? I want to be seeing eveeeerything! Thank you!

path: 0 20846946, hotness: undefined, score: 3, children: 8
Skavau 4 points 7 months ago

It is possible. Piefed and Lemmy federate together.

path: 0 20846946 20846984, hotness: undefined, score: 4, children: 7
Lazylazycat 2 points 7 months ago

I feel like they should appear automatically in that case, but they're not.

path: 0 20846946 20846984 20847268, hotness: undefined, score: 2, children: 6
Skavau 4 points 7 months ago

Piefed communities are less active, and less likely to trend generally.

path: 0 20846946 20846984 20847268 20847318, hotness: undefined, score: 4, children: 5
Lazylazycat 4 points 7 months ago

Ah OK, maybe that's it - thank you!

path: 0 20846946 20846984 20847268 20847318 20847377, hotness: undefined, score: 4, children: 4
finitebanjo 2 points 7 months ago

I think from the start, the very beginning, Lemmy had bots doing 20 to 40 upvotes on brand new posts spouting Russian Propoganda.

Its really trivial to set up in decentralized networks like this.

path: 0 20850100, hotness: undefined, score: 2, children: 0
Varyk 1 point 7 months ago

What's the new new after piefed?

Piefed exists, so it's already middle-aged.

path: 0 20825028, hotness: undefined, score: 1, children: 1
SatyrSack 7 points 7 months ago

AI-Fed, which is vibe coded in PowerShell, and connects to your crypto accounts to earn Slopcoin

path: 0 20825028 20825196, hotness: undefined, score: 7, children: 0
fedimemes
fedimemes

@feddit.uk

login for more options
3259
616
1645

Memes about the Fediverse.

Rules

General
  1. Be respectful
  2. Post on topic
  3. No bigotry or hate speech
  4. Memes should not be personal attacks towards other users
  5. We are not YPTB. If you have a problem with the way an instance or community is run, then take it up over at !yepowertrippinbastards@lemmy.dbzer0.com.
    • Addendum: Yes we know that you think ml/hexbear/grad are tankies and or .world are a bunch of liberals but it gets old quickly. Try and come up with new material.
  6. This is not the place to start flamewars between Lemmy, Mbin and Piefed.

Elsewhere in the Fediverse

Other relevant communities:

go to feed...