this post was submitted on 04 Nov 2024
303 points (91.7% liked)

Ye Power Trippin' Bastards

706 readers
121 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:

  1. Which mods/admins were being Power Tripping Bastards?
  2. What sanction did they impose (e.g. community ban, instance ban, removed comment)?
  3. Provide a screenshot of the relevant modlog entry (don’t de-obfuscate mod names).
  4. Provide a screenshot and explanation of the cause of the sanction (e.g. the post/comment that was removed, or got you banned).
  5. Explain why you think its unfair and how you would like the situation to be remedied.

Rules


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.


Relevant comms

founded 5 months ago
MODERATORS
 

At some point I have to start wondering if Putin pays these sorts of people.

you are viewing a single comment's thread
view the rest of the comments
[–] OpenStars@piefed.social 15 points 2 months ago (1 children)

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.:-)

[–] Serinus@lemmy.world 15 points 2 months ago (1 children)

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.

[–] db0@lemmy.dbzer0.com 10 points 2 months ago (1 children)

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.

[–] ad_on_is@lemm.ee 0 points 2 months ago (1 children)

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)

[–] db0@lemmy.dbzer0.com 5 points 2 months ago* (last edited 2 months ago)

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.