Y
Hacker News
new
|
ask
|
show
|
jobs
by
forrestthewoods
590 days ago
Many abstractions are very bad. Stacking bad abstractions on bad abstractions is why modern software is so slow, laggy, and bloated.
1 comments
theshrike79
590 days ago
What would be your solution to running, say, 15 different Python applications on the same machine, each requiring a unique set of library versions?
link
forrestthewoods
590 days ago
Create 15 pex files. Or possibly 15 PyInstaller executables. Then simply run them like normal programs.
link
Capricorn2481
579 days ago
Ah yes let's not use bad abstractions like docker, let's use pyinstaller...
link
dlainhart
578 days ago
Why would you load an entire userspace environment just to manage a Python package's Python dependencies? Seems a little heavy.
link
ajayvk
590 days ago
https://github.com/claceio/clace
is a project I am building for that use case. Run multiple apps on the same machine, Clace acts as an application server which manages containers
https://clace.io/blog/appserver/
link
aae42
588 days ago
nix
link