• 6 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle
  • I’m with you. It’s amazing how fast ChatGPT has replaced SO for me.

    I’m not sure how this will work long term. How will the model get new training data?

    But honestly? SO can eat a bag of dicks. It doesn’t matter if you’re asking a question that’s nowhere on the site (or the first 3 pages of Google results). It’s going to get closed and ignored.

    I think most people moved to Reddit and Discord a while ago, which is also problematic. We need to get these conversations happening on the open Fediverse.























  • Since you asked, I’ll give you a nuanced answer.

    PHP is not, in itself, inherently bad. The newer versions are performant and if you are a good programmer, you can produce completely fine stuff with it.

    The problem is that it’s flexibility leads to sloppy programming, which leads to projects that turn into a cluster. A good example is WordPress. I’d argue WordPress itself is well written. Once you add a dozen or so badly written plugins though it becomes a mess.

    A lot of the criticism is the same that JavaScript gets. It’s a loosely typed language. So “1” is different than 1. The first is a string and the second is an integer. So if you add 1+1 you could end up with 11 instead of 2.

    Again, this isn’t a problem if you’re a disciplined dev, but we’re not a breed known for our discipline ;)

    When I tried Kbin it was slow, which I attributed to badly written PHP code. However, I didn’t do the research to confirm this was the case.