Anton Bachin

Results 136 issues of Anton Bachin

This may be a known issue, but I am unable to use `prof_spacetime` on macOS. ```sh touch foo.ml # empty file ocamlfind opt -linkpkg foo.ml OCAML_SPACETIME_INTERVAL=100 ./a.out prof_spacetime process -e...

This PR adds a configurable threshold, and does not show the combo counter until that threshold is reached. This hides the combo counter for small edits and stray keystrokes, but...

Are there any plans to do an opam release soon? Just asking — could still work around this downstream using my much-overused rename-and-vendor workflow.

In the OAuth2 example, it appears to be possible to trigger login without any user interaction by causing the user's browser to do a `GET /auth` on the app, since...

A `state` parameter that is somehow associated with the client's user agent (usually meaning, with a cookie) is necessary to protect the OAuth2 callback from CSRF-like attacks. The library code...

Looking through a [list of OAuth providers](https://en.wikipedia.org/wiki/List_of_OAuth_providers) on Wikipedia, I made a short list of "important" OAuth2 providers that it may be good to test this repo against/adapt it to....

- Adjusts `dispatch` and helpers so that they do not write to the request fd. Instead, they return lists of writing operations, to be performed by the same outer code...

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...

e.g.: https://github.com/tmattio/dream-encoding/blob/dde420426ba98da2bc7d26b0d67c3f0f2eb7b7ab/lib/dream_encoding.ml#L194-L195 This appears to read the entire body into memory, and then compress it. I assume (perhaps wrongly) that the underlying compression algorithms support streaming, and it seems like...

After setting up the template successfully, `make build`, `make watch`, etc., all fail with: ``` Error: Program ocamlc not found in the tree or in PATH (context: default) ``` ...and...