I joined Lemmy back in 2020 and have been using it as qaz@lemmy.ml until somewhere in 2023 when I switched to lemmy.world. I’m interested in systemd/Linux, FOSS, and Selfhosting.

  • 51 Posts
  • 317 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle




  • At some point they l announce that paying for a Reddit premium account allows you to be unbanned and free to do whatever you want.

    What other reasons or ideas can you think of, that mass banning users, (some with years of age and contributions, some of them mods.) could be the first step in a plan to capitalize.

    To me it seems like it’s a consequence of both cost cutting moderators and lowering the threshold for bans to make the plaform more appealing to large companies advertising.


  • …definitely takes some getting used to when you come from a non-memory safe language…

    I actually think it’s more like the opposite. The compiler takes the normal rules you apply to avoid issues with a non-memory safe language like C/C++ and enforces them explicitly where memory safe languages don’t have those rules at all. I think lifetimes are much more confusing if you’ve never dealt with a user after free and usually let GC deal with it.

    Also yes the compiler warnings and errors are amazing, the difference between rustc and gcc is night and day.

















  • Yes, and the worst part is that XCode is only available on OSX.

    I once had to make an iOS app once and didn’t have a Mac so I developed the entire thing in a VM. There was no video encoding, the FPS was in the low single digits, which made it very difficult to even type. So I ended up writing the code using VSCode through SSH through Wireguard connected to the VM on the host machine, which actually worked surprisingly well. But hey, the app did work in the end.


  • …developing for a platform that doesn’t allow LGPL3 libraries to be used because users can’t replace the LGPL3-licensed binary (ios, android, game consoles, proprietary hardware)…

    TIL. I didn’t know that LGPL would add any additional restrictions except for inside the library

    Explanation from HN in case anyone else is wondering:

    In the case of the App Store, Apple is the one doing distribution, so Apple must also comply with the terms of the license (in addition to the app developer). Apple has decided they will not do that (that is, people they distribute to will not have the ability to modify the LGPL code, relink the final executable, and run it on their devices), so Apple cannot legally distribute binaries that contain LGPL code.

    It only makes sense, then, that Apple should preemptively reject apps that link in LGPL code, as they know that they will not abide by the licensing terms.