Anton Bachin

Results 662 comments of Anton Bachin

(You can fully verify that it's due to https://github.com/ocaml/dune/issues/4121 by following the repro instructions in the issue; all the `opam` commands before `git clone` are about showing that the setup...

Great :) I'll leave it open as a reminder in this repo, that there is still an issue to address.

I just [merged in](https://github.com/aantron/luv/commit/decdaad7511855d012e31f22b35538ddd874c08d) a branch that restores the Luv/Unix fd conversions in a module [`Luv.Unix`](https://github.com/aantron/luv/blob/decdaad7511855d012e31f22b35538ddd874c08d/src/unix/luv_unix.mli). You should be able to add sockaddr conversions in that module as well, probably...

``Luv.DNS.getaddrinfo ~family:`INET ~node:"google.com" ()`` returns a function that's waiting for you to give it a callback. Only once it gets your callback, will it actually start working on the query....

Please add tags to the repo. Without tags, the GitHub commit and blame UI are significantly *less* useful. Normally, they display the tags that include a certain commit, which helps...

> Alcotest still has the major caveat for now that it can't run tests concurrently, which lengthens the run time of the test suite. This has been discussed before, and...

From https://github.com/ocsigen/lwt/pull/712 ("Run Lwt_unix tests concurrently"): > This decreases testing time for `Lwt_unix` from about 47 seconds to about 6 seconds, and the overall testing time is reduced from 53...

What's the motivation for using `(implicit_transitive_deps false)` in Mirage?

Thanks. Thinking about the various effects of this, it occurs to me that we might break some users who expect `Result` or `Seq` to be transitively pulled in, if they...

Ok, convinced :) I will merge a PR doing this.