Konstantin A. Olkhovskiy
Konstantin A. Olkhovskiy
I've faced issues with standard linux `unzip` being unable to unzip the file that I create programmatically with xflate compression. I decided to repro on a smaller case and got...
It seems that GPR library implements the core primitive used in Bayesian optimization, does it make sense to provide a high-level module for Bayesian optimization itself? With user-friendly interface like...
Currently there is fbr_buffer, which is a heavy-weight byte oriented virtual ring buffer with fiber synchronization. Since fibers are very similar to goroutines, it makes sense to leverage an existing...
I've stumbled across Lwt documentation which states the following: >With OCaml 4.04.0 and on a convenient syntax is available for sequencing Lwt operations using ;%lwt. This allows free mixing of...
This [try reason link](https://reasonml.github.io/try?rrjsx=true&reason=PQKhAIBcAsEsGdwPAWwPYBMCuAbApuAMZoop4B2k4IwAULaBDMssaRZADTgCG88aQrB6Q8GcAHdYMKAE8ADgSo1akBUoDcQA) illustrates the issue. I tried to document my module in .rei file and was unable to make odoc generate html which included module level documentation. I've...
I've distilled my file down to the following snippet: ```reason module M1 = { include X({ let r = x => {z: s => s}; }); let f = (m,...
We're trying to build a single page app with gopherjs and ran into an issue with slow template rendering, which is freezing up a browser on large data set. We've...
OCaml 5 is just around the corner. Are there any plans/vision for Lwt in OCaml 5 world, featuring multicore and effect handlers? Will Lwt be evolved further, or it will...
It seems that in case of `getaddrinfo` failure, the error is... lost? https://github.com/ocsigen/lwt/blob/1157930612348286fcb5b675b3309f04e0e5a2b8/src/unix/unix_c/unix_getaddrinfo_job.c#L74 There is no "else" branch here. I get empty list from `Lwt_unix.getaddrinfo` and I'm trying to figure...
Enabling `with-js-error` attaches fresh `Error` to all exceptions, and gives one ability to extract backtrace from JS error object via `caml_js_error_of_exception`. It's not exported from the jsoo API currently, and...