People keep asking me, and I haven’t really had an answer, but now yeah, I’m thinking I’m back.

  • 0 Posts
  • 27 Comments
Joined 4 days ago
cake
Cake day: March 18th, 2025

help-circle

  • I’m with you. I used to build maps, models, and textures for Battlefront 2 and share the files for free on Filefront. I got into programming for the joy of creating things that make people happy, or solve some little problems they have. I still make mods, the communities are out there and I’m glad I found them.

    But tech evangelists and bro culture ruined the idea of programming as a career for me. The greed of late stage capitalism infected our industry the moment Facebook hit the scene, crypto accelerated it, and AI may as well be the final nail in the coffin. It’s no longer a worthy or noble profession.











  • Small world, I’m also on the balatro/other games modding discord boat, and it is a rough ocean out here. The perennial argument is that users don’t know how to use an old school forum, nobody wants to moderate it, nobody wants to pay for the infrastructure.

    All those fall flat to me. Nobody even bothers to use discord’s “forums” or pinned messages for their bug reports/troubleshooting, no they just post straight to general, “this doesnt work can someone help” with no details whatsoever. Not like it would be any better or worse on a forum. It’s also not like BBS forums don’t have moderation tools, it’s not some lost art from an ancient civilization. As for paying for it… the whole discord server is propped up by nitro users. Like come on. Money can be exchanged for goods and services.



  • I could go all day with my grievances… For some fucking reason, Team Foundation Server thought it would be a good idea to model their source control on folders and files rather than atomic nodes of changes like git.

    I’m sure someone thought this was intuitive, but it falls apart once you realize you can check in cross-branch or even cross-project files into a single changeset. This allows you to easily pollute projects you’re working on but didn’t intend to modify yet, if you forgot to exclude their files. And then, when your code reviewer checks the history of the project folder you modified, they don’t even notice all the files you changed that WEREN’T in that folder but were part of the same changeset. So you pass your review, and all the sudden there’s unwanted, unnoticed, and untested changes in some other project, with a nice code review stamp on them!

    And the entire checkout/checkin system is just flipping the read-only flag on the files in file explorer. It’s the most amateurish shit. If you edit a file in an open, active project, the file gets checked out automatically. But if you’re editing loose scripts that aren’t part of a bespoke SLN or CSPROJ, you have to check those out manually… which it will only tell you to do once you try to save the file.

    And then Visual Studio cannot understand that I might need to switch regularly between 2 types of version control systems. If you’re not on the same VCS plugin when you want to open a recent project on it, it doesn’t automatically switch it for you, it just refuses to load the project. The only way to reliably to switch is by going into the options menu, changing it there, THEN loading the project.

    git is practically made of grease compared to how stuttery and clunky TFS is. I’ll shed no tears for the fossils who are having a hard time learning git, they will be better off whether they realize it or not.