Piefed contributor and part of the piefed.social admin team.

  • 0 Posts
  • 22 Comments
Joined 1 year ago
cake
Cake day: November 20th, 2024

help-circle

  • Growing up in the US, other responders are correct that school systems vary a lot depending on what state/district you live in. Over the course of my K-12 education, I attended 10 different schools across three states because my family moved a lot. There were times where I would switch schools and suddenly be way ahead in some subject and have completely skipped over some other topics. As an example, I never took a course in world history, but ended up having three separate US history courses because the different districts taught those subjects in different grades.

    I do take issue with some of the commenters painting all US schools with a broad brush as terrible. There are excellent schools in the US and excellent school systems. As an example, I currently live in Massachusetts, and if you took it as its own country, it would be one of the best school systems in the world. In general, the states that prioritize education and pay teachers well end up with better educational outcomes. It’s not that surprising really, but a huge portion of the country seems to ignore that fact or spend money in less efficient ways.


  • discuss.online is doing it right. There is a significant overlap between discuss.online and lemmy.world’s admin teams, and I generally think they handle it about as well as could be expected of a general-purpose instance of their scale.

    As for piefed, I think the primary things that help users filter their experience are the additional blocks that are at their disposal; blocking communities with a word in their name, blocking posts that match keywords, blocking posts that point to certain domains, etc. However, it can only help if a user actually goes through the effort of setting them up.





  • The reputation score (sum of upvotes - downvotes) is something that only admins can see. I absolutely agree with a lot of the criticisms people have with reputations systems like this or reddit’s karma, but at the same time, it is one of the most reliable and highest signal to noise indicators of spam/scam/etc. accounts out there. If we were to remove it entirely, it would take away a powerful tool for flagging accounts like that to admins earlier rather than later. Oftentimes, we can spot accounts like that even before they get reported by other users because users are much more likely to downvote/block than go through the trouble of creating a report.

    To address your other reply in the same place, ngrok is not affiliated with X’s (twitter’s) Grok. ngrok is a service that provides https tunneling much easier than manually managing domains. Developers often use this for proof-of-concept stuff or testing features that need SSL because ngrok addresses can be created and destroyed easier and quicker than manually managing your own dns.

    In actuality, I didn’t even realize that ngrok was a sponsor. Or, was a sponsor at some point. Is this still accurate @rimu@piefed.social?




  • wjs018@piefed.socialtoVoyager@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    2 months ago

    You can’t register from within Voyager, but you can log in to an existing account (the button on the lower right of the adding an account screen). The reason you can’t register a new piefed account in Voyager is because that functionality doesn’t exist in the API yet.

    I was able to log in to feddit just fine using curl, so it seems to be voyager-specific. Not sure if there might be an errant cloudflare challenge or other kind of proxy-level filtering that it might be getting caught up in.

    Not sure if @aeharding@vger.social might have suggestions for how to help ID the issue or get a more descriptive error message.


  • wjs018@piefed.socialtoVoyager@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    2 months ago

    I can confirm that my feddit.online account isn’t working with Voyager for whatever reason. I was able to log in with a couple of other piefed instances without issue.

    Tagging @jerry@feddit.online for visibility.

    Edit: I just tried Boost and it worked with my feddit account. Could be something really weird going on.








  • The language really doesn’t have much to do with things like performance; at least not at the scale that most fedi instances operate at. For PieFed we are using the Flask framework and the overhead of an interpreted language and rendering jinja templates is absolutely negligible compared to the speed of the postgres database. Most of the performance optimizations we have had to make have been related to crafting better db queries or moving things like federation tasks to background workers.

    Might Flask have trouble scaling to the size of reddit? Sure, but I don’t think that we necessarily need to optimize for a use case that may never happen and can also be alleviated by scaling out (more instances) rather than up. I know that rimu is already feeling like piefed.social is too big compared to other PieFed instances and has thought about closing registrations because of it. It is one of the reasons he made the built-in instance chooser, to try to move new users to other instances.

    I wrote more about my thoughts on the pros/cons of python/flask in another comment.