Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

You might be over-rating the usefulness of code hot-swaps in production with Erlang. Erlang devs I've talked to have looked a little green in the gills when I asked about it.

Coming from Python and Ruby, being able to just deploy a jar is a dream.



Python has packages ("eggs", although the term has multiple meanings, I'm unaware of good unambiguous name to things you host on PyPI or alikes). You put your code under a certain conventional directory structure, write simple setup.py file and, well, that's about it.

(Although, as I happen to use mostly Debian-based systems, I prefer not using Python packages directly but build .deb out of them with stdeb and use system package manager to deploy. Just dput the built package to company's private apt repo, and Puppets pull the update.)


Eggs are incomplete, broken, don't really solve the entire problem, and don't even solve the problem they were designed to solve.

It's a mess, there are multiple factions and implementations, and until people started consolidating there were 4-5 concurrent popular approaches to packaging Python libraries.

I've lost tangible shards of my sanity to Python packaging and some of my poor coworkers are fighting the terribly useless fight regularly still to this day.

Worse, most Python projects that have any non-trivial dependencies usually entail NumPy, SciPy, or Cython.

Have you ever packaged something that's using multiple C and Fortran dependencies for automated deployment? It's horrific.

Meanwhile, back when I'm at home and I use jBlas or any other Clojure, Java, or Scala library here's what I have to do:

Add dependency to project.clj:

    [bulwark "0.0.3"]
Ship the jar.

    lein deploy $maven_repo
Writing Clojure code at home is incomparably more pleasant not just in pure code, but in all the accouterments and tooling as well.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: