gerdstolpmann
gerdstolpmann
When you use websocat in programmatic context, it would be useful to be able to be notified when the listening socket is actually ready and accepting connections, so that the...
We are seeing this: ``` WARNING: DATA RACE Write at 0x00c0008ca0b0 by goroutine 271: github.com/fhmq/hmq/broker.(*client).Close() /home/circleci/project/pkg/mod/github.com/fhmq/[email protected]/broker/client.go:611 +0xb2 github.com/fhmq/hmq/broker.ProcessMessage() /home/circleci/project/pkg/mod/github.com/fhmq/[email protected]/broker/client.go:194 +0x411 github.com/fhmq/hmq/broker.(*Broker).SubmitWork.func1() /home/circleci/project/pkg/mod/github.com/fhmq/[email protected]/broker/broker.go:110 +0x44 github.com/fhmq/hmq/pool.startWorker.func1() /home/circleci/project/pkg/mod/github.com/fhmq/[email protected]/pool/fixpool.go:55 +0x31 Previous read at 0x00c0008ca0b0...
Hello, I just switched from wasmer to `wasi-js` in the WasiCaml project (https://github.com/remixlabs/wasicaml). There are a lot of scripts running WASI-fied wasm code, and some of them also write to...
three problems: 1. wasicaml has a bug and cannot run executables by non-absolute path (-> solve there, https://github.com/remixlabs/wasicaml/pull/58) 2. ``` /Users/gerd/biz/figly/protoquery/wasicaml/bin/ocamlfind ocamlmklib ocamlfind: Package `threads' not found ``` This is...
For discussion, see https://github.com/ocaml/opam-repository/issues/10925
e.g. ``` # module M = struct type t = int end;; module M : sig type t = int end # type t = [%import: M.t] [@@deriving show];; Error:...