Computer guy, occasional gamer, shitty music producer. Denver, CO

https://corytheboyd.com

  • 1 Post
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle



  • corytheboyd@kbin.socialtolinuxmemes@lemmy.worldditch discord!
    link
    fedilink
    arrow-up
    3
    arrow-down
    12
    ·
    5 months ago

    I mean, I get it, but when the wrong tool is used so ubiquitously, you have to start asking questions about why people aren’t using the “right” tool. Forums seem to end up being hostile to newcomers, with all this “did you search the forum first you fucking noob?” mentality. Having a living place for real-time questions and discussion just feels better, same way email exchanges feel terrible after using Slack for so long. You can still have incredibly toxic people in real-time chat servers, obviously, but there just seems to be less overall stress to keep the posts in the forum “pristine” or… whatever that was.

    Not being able to search for old content is a huge con to real-time chat. Even if the history is retained forever (in self-hosted instances), real-time messages just aren’t the best bits of data to recall later like forum posts. Clear drawback.

    Still, people are using discord, not to spite forums, but because it works, is free, and is easy.









  • I feel like this is just a new cash grab technique, and it’s actually pretty smart. The audience of people who will buy immediately despite DRM will do their thing, first wave of money complete. Over the next few years, trickle in more cash through steam sales. Once that well dries, get one more wave of cash by removing DRM, which appeases the audience that abstained the whole time, collecting their cash.

    Edit: my half baked conspiracy theory got some attention. the argument that companies remove DRM like Denuvo because of cost makes way more sense, Occam’s razor holds true. Both can be true, they save money by removing the DRM, which has the nice side-effect of creating a small new wave of sales. Win/win. I’m sure Denuvo hates this and will one day make it more difficult for studios to just remove their software, because money.









  • It’s here, it’s there, it’s everywhere. The problem with replacing things that work with something “better” is that “better” is subjective, so you end up with a new “better” way every few years, and maintaining existing systems becomes a god awful slog. See the JavaScript ecosystem.

    The bash I wrote 10 years ago still works today, and it will still work in 10 more years. The same bash will very likely work on your computer, on a remote server, etc. This is the power of not chasing “better” all the time.

    Try running a Ruby or Node program from 10 years ago today on your computer. Now, try running it on a random Linux server.

    Please do not take this as a slight against Ruby or Node, or any other high level programming language. Bash compared to those is simply apples and oranges, they are not the same thing.

    By all means, if you have a project that requires a Ruby runtime anyway, write operational scripts with Ruby, run them with Rake, etc.

    Want a portable script that doesn’t depend on a complex runtime? Use bash.

    If bash is too limiting, use Perl. No, seriously. Perl is fine. It is about as ubiquitously available as bash, and the standard library likely has what you need to get the job done. People blindly dismiss Perl because some blog post told them to, usually in the context of writing application code. You’re not writing application code, you’re writing scripts. Would you write an application with bash? No.