I have been very impressed by the blog posts, and I saw 0install in beta many years ago. It is interesting to me because it sounds like (from my novice view) that it was doing what Nix wanted to do, which is install software and its dependencies independently siloed and allow everything run AND to do it cross platform. You can tell by this guy's switch OCaml, getting hired for Ocaml work, and the scale of what he has done he is crazy and talented, but it seems 0install is still kind of obscure.<p>Beyond gourneau, is nayone using it and can say it is worth it? I am looking at available packages to see it is worth giving a go.
A bit of a tangent, but I actually shipped 0install on a system I built a few years back. It was intended to be a way to help users manage plugins. 0install is a really fantastic idea. However, the lack of packages and community eventually made me regret that decision. If I had to do it over again today I would have used docker.
One thing struck me as odd reading this: he skips over the implementation of the Make functor, which is the interesting bit. But looking at [1], I realized it was a bit hairy. For a maybe more approachable example of a Make functor, you can have a look at [2] around line 1181: given a module with a type t and a comparator function, it creates a module for a set of elements of type t.<p>That said, it's a really nice set of posts, and they're the initial reason I started to get interested in the language.<p>1: <a href="https://github.com/0install/0install/blob/master/ocaml/zeroinstall/solver_core.ml" rel="nofollow">https://github.com/0install/0install/blob/master/ocaml/zeroi...</a><p>2: <a href="https://github.com/janestreet/core_kernel/blob/master/lib/core_set.ml" rel="nofollow">https://github.com/janestreet/core_kernel/blob/master/lib/co...</a>