this post was submitted on 26 Dec 2024
47 points (86.2% liked)

Linux

48721 readers
1694 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] mactan@lemmy.ml 7 points 1 day ago (2 children)

my first impression of dependency management was the abomination that is nuget. I'll never forget how bad it can be. every language that has a first class dependency manager like cargo is a win.

[–] F04118F@feddit.nl 10 points 1 day ago (1 children)

After years of fighting pip and conda, I got a job where "we work with Python but also still have some .NET Framework apps".

NuGet seemed just as bad.

People shit on JavaScript (for very good reasons) but npm is amazing compared to all these. You can have one dependency needing PackageX v1 and another dependency needing PackageX v3 and your project will just work!

A modern statically-linked language with a first-class package manager, like Rust or Go is ideal. No fighting the dependency manager, no issue with deploying on different systems, just "run this binary".

[–] custard_swollower@lemmy.world 2 points 17 hours ago

…and then you learn that packageX v1 is not maintained anymore and relies through a deep set of dependencies on a seriously vulnerable package (in a version which is also not maintained anymore).

Sorry, I had a pretty eventful December :)

[–] qaz@lemmy.world 7 points 1 day ago* (last edited 1 day ago)

I personally didn't dislike NuGet that much, but that's coming from someone who has been working with CMake for the last couple of months 😄