Hacker News new | ask | show | jobs
by api 685 days ago
Ahh the lost art of writing installable deployable software.

Another thing I don’t like about SaaS is that most of it is a yarn ball held together by snot and twist ties that can run on only one cloud… or only one cloud account with hard coded details about that account. As such it’s encouraged a generation of developers to write this slop.

1 comments

> Ahh the lost art of writing installable deployable software.

Yeah, because it's so easy to create a deployable package for a variety of distros. Especially if you have any system-level dependencies. Even more so for shitty unreliable ecosystems such as Perl, Python and Node.js.

There is a reason why Docker and friends took over deployment artifacts. Having a single reproducible (if properly done) immutable all-dependencies included artifact that will run everywhere with a container runtime is just magic. Gone are the days of "You need libcgit v2 to use my package... oh Ubuntu calls this libcgit2, but wait, I'm on Ubuntu 16.04 which only has libcgit51".