It's back up now; the ML TCP stack was running a pcap dumper for debugging, which didn't cope well with a hackernews link. Hacking is going pretty well on Mirage. The longer-term plan is to generalise the support…
Your request for a super-opinionated guide "get stuff done" guide will be available soon; http://realworldocaml.org
Note that OCaml is just fine for heavy math and data stuff: the garbage collector has a global lock, but threads work just fine for CPU intensive activities. Just don't generate much garbage (which is important for any…
The first three are indeed a big irritation, and a big motivation during writing this book. There is a lot of work going on to improve all of these at the moment, notably through Core from Jane Street providing a…
OCaml isn't actually a pure functional language: it has side-effects and mutation. In fact, you can code that looks an awful lot like C if you want, except with automatic type inference. But then you can also lift up…
It's back up now; the ML TCP stack was running a pcap dumper for debugging, which didn't cope well with a hackernews link. Hacking is going pretty well on Mirage. The longer-term plan is to generalise the support…
Your request for a super-opinionated guide "get stuff done" guide will be available soon; http://realworldocaml.org
Note that OCaml is just fine for heavy math and data stuff: the garbage collector has a global lock, but threads work just fine for CPU intensive activities. Just don't generate much garbage (which is important for any…
The first three are indeed a big irritation, and a big motivation during writing this book. There is a lot of work going on to improve all of these at the moment, notably through Core from Jane Street providing a…
OCaml isn't actually a pure functional language: it has side-effects and mutation. In fact, you can code that looks an awful lot like C if you want, except with automatic type inference. But then you can also lift up…