Arcterus | 4 months ago | on: Microsoft is plugging more holes that let you use Windows 11 without MS account
Arcterus's comments
Arcterus | 5 months ago | on: Microsoft is plugging more holes that let you use Windows 11 without MS account
Also, Rosetta is more like a transpiler, since it basically recompiles the binary, whereas the others are literally layers that basically take calls in one API and translate them to another. They're pretty much the same thing as ANGLE.
Arcterus | 5 months ago | on: Microsoft is plugging more holes that let you use Windows 11 without MS account
As someone who has used both Windows and Linux to game on the same x86_64 device, the performance hit with Proton is pretty much negligible (and sometimes games actually run faster on Linux).
Arcterus | 5 months ago | on: Shai-Hulud malware attack: Tinycolor and over 40 NPM packages compromised
This is great when the stdlib is well-designed and kept current when new standards and so on become available, but often "batteries included" approaches fail to cover all needs adequately, are slow to adopt new standards or introduce poorly designed modules that then cannot be easily changed, and/or fail to keep up-to-date with the evolution of the language.
I think the best approach is to have a stdlib of a size that can be adequately maintained/improved, then bless a number of externally developed libraries (maybe even making them available in some official "community" module or something with weaker stability guarantees than the stdlib).
I find it a bit funny that you specifically say HTTP handling and JSON are the elements required when that's only a small subset of things needed for modern systems. For instance, cryptography is something that's frequently required, and built-in modules for it often suck and are just ignored in favor of external libraries.
EDIT: actually, I think my biggest issue with what you've said is that you're comparing Python, Go, and Rust. These languages all have vastly different design considerations. In a language like Python, you basically want to be able to just bash together some code quickly that can get things working. While I might dislike it, a "batteries included" approach makes sense here. Go is somewhat similar since it's designed to take someone from no knowledge of the language to productive quickly. Including a lot in the stdlib makes sense here since it's easier to find stuff that way. While Rust can be used like Python and Go, that's not really its main purpose. It's really meant as an alternative to C++ and the various niches C/C++ have dominated for years. In a language like that, where performance is often key, I'd rather have a higher quality external library than just something shoved into the stdlib.
Arcterus | 1 year ago | on: Musk-led group makes $97B bid for control of OpenAI
To put this in perspective, the net assets of Google are around $300 billion, and their total assets are around $450 billion. Musk's net worth is roughly $400 billion.
Arcterus | 4 years ago | on: An update on rust/coreutils