Török Edwin
Török Edwin
Currently `Funix` uses Unix.select: https://github.com/dbuenzli/affect/blob/5ccf1e2fea197f6257ccebffaff8ca0970a0d86c/src/funix.ml#L172 This will limit the application to using at most 1024 file descriptors (limitation in underlying `select`), which can be quite problematic in practice (aside from...
The documentation says > Atomic writes.} Files are written atomically by the functions. They create a temporary file [t] in the directory of the file [f] to write, write the...
The docker-podman wrapper created volume mounts are owned by the root user inside the container, and the doom user wouldn't have write access. Need to specify --user-ns=keep-id flag to map...
On Fedora 35 with python 3.10: ``` pip3 install --user blist Collecting blist Using cached blist-1.3.6.tar.gz (122 kB) Using legacy 'setup.py install' for blist, since package 'wheel' is not installed....
Using rr 5.5.0 from Fedora 35. Some of these failures seem to be related to the testsuite itself (e.g. it tries to break on a symbol that doesn't exist): https://gist.github.com/edwintorok/452bf733ee9f03a87cb2649813cc5188...
You mention in your README that you want to know about faster algorithms. The fastest I heard of for OpenStreetmap data is http://project-osrm.org/ Paper describing the concept: http://algo2.iti.kit.edu/documents/chbasedtnr_TR.pdf
The input channel is always buffered and the `Lwt_stream` (or underlying `Lwt_io` from Conduit) doesn't have a way to "give me whatever is available now" without blocking/waiting for a fixed...
Perhaps we should have (see discussion on https://github.com/mirage/ocaml-cohttp/issues/371#issuecomment-109483693) ``` ocaml type role = `Origin | `Proxy | `Gateway Response.validate : Request.t -> ?role:role -> Response.t -> ?body:'body -> unit ->...
I haven't figured out how to get dune+odoc to render the [main module comment on ocaml.org](https://ocaml.org/p/re/1.10.3/doc/Re_posix/index.html) correctly though. However compile and compile_pat's documentation were swapped, and it is best to...
Like Str itself, Re.Str is not thread safe as it relies on global internal state. Initially I thought that Re.Str might be thread safe (e.g. if you only use functions...