this post was submitted on 04 Nov 2024
303 points (91.7% liked)
Ye Power Trippin' Bastards
706 readers
122 users here now
This is a community in the spirit of "Am I The Asshole" where people can post their own bans from lemmy or reddit or whatever and get some feedback from others whether the ban was justified or not.
Sometimes one just wants to be able to challenge the arguments some mod made and this could be the place for that.
Posting Guidelines
All posts should follow this basic structure:
- Which mods/admins were being Power Tripping Bastards?
- What sanction did they impose (e.g. community ban, instance ban, removed comment)?
- Provide a screenshot of the relevant modlog entry (don’t de-obfuscate mod names).
- Provide a screenshot and explanation of the cause of the sanction (e.g. the post/comment that was removed, or got you banned).
- Explain why you think its unfair and how you would like the situation to be remedied.
Rules
- Post only about bans or other sanctions that you have received from a mod or admin.
- Don’t use private communications to prove your point. We can’t verify them and they can be faked easily.
- Don’t deobfuscate mod names from the modlog with admin powers.
- Don’t harass mods or brigade comms. Don’t word your posts in a way that would trigger such harassment and brigades.
- Do not downvote posts if you think they deserved it. Use the comment votes (see below) for that.
- You can post about power trippin’ in any social media, not just lemmy. Feel free to post about reddit or a forum etc.
- If you are the accused PTB, while you are welcome to respond, please do so within the relevant post.
Expect to receive feedback about your posts, they might even be negative.
Make sure you follow this instance's code of conduct. In other words we won't allow bellyaching about being sanctioned for hate speech or bigotry.
YTPB matrix channel: For real-time discussions about bastards or to appeal mod actions in YPTB itself.
Some acronyms you might see.
- PTB - Power-Tripping Bastard: The commenter agrees with you this was a PTB mod.
- YDI - You Deserved It: The commenter thinks you deserved that mod action.
- BPR - Bait-Provoked Reaction: That mod probably overreacted in charged situation, or due to being baited.
- CLM - Clueless mod: The mod probably just doesn't understand how their software works.
Relevant comms
founded 5 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Piefed looks like an interesting project for sure. I don't know much about it though - are they getting close to feature parity with Lemmy?
In many ways they already are ahead. The front end is a bit wonky though, and some of the foundational features are still catching up (it's fully functioning though).
For one thing, they have "categories" of communities, and for another I can block all users from any instance I choose - though there is really no easy way to accomplish that while still on Lemmy proper.
But like when you upvote something, later it remembers that but won't show you the color. The interface is really pretty though, and solves several of the issues I had with Lemmy, like another one is that you can turn on viewing or both the upvote and separate downvote counts, which for Lemmy iirc you can only see that for comments, but for posts that only shows on the mobile site yet not on the desktop for some reason.
The PieFed devs are super responsive, quite extraordinary so imho. It's like they care or something (uh... cause they do, ofc!:-).
So especially since Lemmy is not perfect either, check out both Mbin and PieFed and just see them in action without an account, just for the fun of it.:-)
There's no way Python and Flask are going to scale as well as Rust. It's going to require more hardware to run and be able to handle fewer users.
The DB is all that matters. Python can scale very well through parallelization. So long as one doesn't restrict themselves to one process, there's really little chokepoint.
Nope... CPU and memory usage matter as well... if they get exhausted, you get throttling. This also has an impact on server-costs... Why run 2 instances of something that serves 4k requests/second over one instance that serves 9k/s (just an over-exaggerating example)
That's why I say if you don't restrict to single process. As to why something which might be slightly more inefficient (it's not going to be that much), it's because of ease of development and pool of potential developers to help you with it.