Romain Beauxis

Results 100 issues of Romain Beauxis

Hi! I'm using the action (thanks for maintaining it!) to upload a lot of assets to a release and I keep seeing this error: Here's a build example: https://github.com/savonet/liquidsoap/runs/3778560139?check_suite_focus=true Any...

This PR adapts the code to build with a recent `dune` and OCaml compiler, including OCaml `5.0.0~alpha1`. It also adds github actions to compile and run tests. See here: https://github.com/savonet/Camomile/runs/7546896295...

Current `ncurses` version fails to build with recent compilers. This one works!

The following creates a process lock: ```ocaml let rex = Re.Pcre.regexp "^ *";; Re.Pcre.substitute ~rex ~subst:(fun _ -> "") "Condition which should be satisfied.";; ``` I understand that the `*`...

This pcre generates a parse error: ```ocaml Re.Pcre.regexp "#{([^}]*?)}" Exception raised: Re__Perl.Parse_error Raised at Re__Perl.parse.atom in file "lib/perl.ml", line 168, characters 40-57 Called from Re__Perl.parse.piece in file "lib/perl.ml", line 83,...

`conf-samplerate` and `conf-libsamplerate` serve the same purpose!

needs reporter action

This PR adds a configuration package to compile ocaml with `-fsanitize=address` (linux & macos) or `-fsanitize=leak` (linux). These options provide tools to inspect and detect issues related to memory allocation...

Finally came up with the proper fix for #45 ! This PR adds proper buffering on channel reads while also inserting a `None` entry at the end of each partial...

Hi, I'm running into an issue migrating an existing app using `ocamllex`/`ocamlyacc` to `sedled`/`menhir`. The problem at hand here does concern only `sedlex` as I've successfully tested it with `ocamllex`/`menhir`....

This PR improves the SRT operators: * Create ground set socket type * Add methods on sockets to: * Get some relevant options * Get stats * Close socket *...