• 0 Posts
  • 7 Comments
Joined 4 months ago
cake
Cake day: March 3rd, 2024

help-circle





  • LTS just means Long Term Support in case you weren’t aware. It means no new development is happening, but security exploits will be patched as soon as they arise.

    If you just want stability, LTS is the way to go. If you want all the cutting edge bells and whistles and are okay with potentially some instability (but probably not much) then use the latest version.

    If your device isn’t connected to the internet during general use then I wouldn’t worry too much about updating anything. Security fixes aren’t important if there’s no way to connect to your device.


  • I don’t really get the appeal of strongly typed languages. Can’t you just use try/catch blocks, and/or use functional programming and return early if the data structure of whatever you’re working with isn’t what you expected?

    I guess it can help older code easier to maintain because the expected data structure is right there, but you could also just include it in a comment above the function.

    I personally find TS slows down initial production of a project and raises so many unnecessary errors.

    Is there some huge benefit that I’m missing? Because I don’t really get the appeal. I mean, I do on some level, but I don’t really understand why so many people are absolutely obsessed with TS.