Anton Bachin
Anton Bachin
SSL errors are very cryptic, causing confusion in general experience and in #246 in particular. #259 and https://github.com/savonet/ocaml-ssl/issues/108 should make this better by rearranging the SSL error output in Dream's...
At the moment, SSL errors and warnings server-side look like this in the log: ``` 20.04.23 13:03:35.555 dream.http WARN TLS (127.0.0.1:41428): SSL accept() error: error:0A000416:SSL routines::sslv3 alert certificate unknown 20.04.23...
It is better for the test suite to create one process per test case, as the tests can be fairly invasive, can trash libuv state, trash the process file descriptor...
The following code is a minimized version of https://github.com/aantron/dream/issues/297 that no longer calls into Dream at all: ```ocaml type _ Effect.t += E : unit Effect.t let () = Effect.Deep.try_with...
Upon trying to upgrade OCaml in the [`esy.json`s](https://github.com/aantron/dream/blob/fcc618d2006ceb06e8640e96fa9ac71ee71a6d3a/example/1-hello/esy.json) in Dream's examples, I get: ``` $ npm install esy $ npx esy info esy 0.6.12-dev (using esy.json) warn no version found...
From https://github.com/ocsigen/tyxml/issues/322: > There is a popular way to style checkbox based on this HTML code: > > ``` > > > > > ``` > > What I did...
With Travis, Luv previously had a FreeBSD build. GitHub Actions does not offer FreeBSD runners. However, there is [vmactions/freebsd-vm](https://github.com/vmactions/freebsd-vm) which makes this possible. Given that opam offers binary releases for...
**EDIT**: Namespaces currently works around the issue by allowing the user to delete all `.mllib` files in the source tree during build, but this is by no means a "nice"...
While using the server extensively for writing Dream's docs, I noticed that in some cases, a rewrite of the docs output can interfere with the reading of that output for...
Repromise became [**reason-promise**](https://github.com/aantron/promise) in 1.0.0. The API was renamed (e.g., `Repromise.wait` is now `Promise.get`), rearranged to prefer `->` instead of `|>`, and helpers were added for `Result` and `Option`, as...