• 0 Posts
  • 16 Comments
Joined 1 year ago
cake
Cake day: June 27th, 2023

help-circle
  • It is my understanding that the only difference applies to hosted software. For example, Lemmy is AGPL. If it were GPL, then a company could take the source code, modify it and host their own version without open sourcing their modifications. AGPL extends to freedoms of GPL to users of hosted software as well.

    A real example of this would be truth social which is modified Mastodon and as AGPL those modifications are required to be open source as well.




  • Been there many times. Had one case where support had to through the reseller who sold licenses in our country. Actual people who knew what they were talking about was tier 3.

    We had a bug and were trying to report it and get a fix or workaround. Just told no, we’re doing it wrong. After a lot of back and forth we had to pay for an “expert” to fly over and show us what we were doing wrong. Turns out he wasn’t an expert, he was a salesmen. Made a demo for us on the flight and the first time he ran it was in our meeting room on projector.

    Failed in exactly the way we had been saying. It was very satisfying.

    Finally he phoned the dev team who confirmed the docs were wrong and we couldn’t do what we were trying.












  • I’m working on migrating a lot of old .Net Framework code right now, we’re generally going with a complete rewrite but that’s more to do with poor architectural decisions and the fact a lot of it is VB rather than C#.

    It’s pretty impressive that code largely written up to 20 years ago is now running on a modern OS, and it’s using the latest Framework 4.8 with all the latest security updates and I can open VS2022 and hit run and it builds and runs fine. Our issues are the maintainability of the code and how it was written rather than the framework itself.

    Meanwhile, a few years ago now, I had a web project written in typescript, it was only about a year out of date and npm install failed. Turns out one of dependencies needed to build something with python2, updating that needed a new version of webpack and that broke something else that never got an update to the newer webpack. Installing python2 didn’t work either I think but I can’t remember why.

    There’s systems I wrote for .Net over a decade ago that I can guarantee are still running in production and haven’t been touched in all that time.

    In short, I think I’m agreeing with you. It’s painful but it’s possible.