Archive.

The key reason is that we just don’t have enough people on the admin team to keep the place running. Most of the admin team has stepped down, mostly due to burnout, and finding replacements hasn’t worked out.

  • r.EndTimes@lemm.ee
    link
    fedilink
    English
    arrow-up
    6
    ·
    2 days ago

    What are the issues with python if anyone knows? Is it a bigger issue with scaling up or will it get significantly slower as they add more features? People mention how its bad but they just assume people know why.

    • phutatorius@lemmy.zip
      link
      fedilink
      English
      arrow-up
      9
      ·
      2 days ago

      We use Python on the back end of a public-facing website with massive levels of traffic. There are some maintainability issues due to the dynamic nature of the language, duck typing can be tricky for similar reasons, but as long as devs are sensible and test things rigorously, performance is fine, and I’m reasonably sure we’re operating at a scale at least a couple orders of magnitude larger than all Lemmy instances combined. Also, it’s a mature, concise language with excellent libraries, so most non-exotic requirements can be met without too much difficulty.

      People mention how its bad but they just assume people know why.

      They don’t know why. I supect it’s because nothing works right if you do it wrong.

    • DSTGU@sopuli.xyz
      link
      fedilink
      English
      arrow-up
      8
      arrow-down
      1
      ·
      2 days ago

      You can assume a roughly 10-100x slowdown on pretty much everything. It also does not feature type safety, so while it is easier to code in it it is also easier to make mistakes. Other than that… Just a simple scripting language