Joseph Price
Joseph Price
In order to repro an issue I was having trouble debugging using a rust wrapper to this library (https://github.com/RamiHg/soundio-rs), I tried out a similar example `sio_record.c`, and it worked. I...
Is there a recommended dev workflow? Some pattern with ibazel to reload on update would be very useful. I'm new to using bazel for web dev, so not sure if...
I'm using reason-react to compile code to js, so my input does have contain raw jsx but pre-compiled calls to the react apis. I found that my files were being...
I'm sometimes getting the exception `Eio_ssl.Exn.Too_many_polls` when posting an image to s3: ``` server_dev.exe: [INFO] ALPN: offering h2 server_dev.exe: [INFO] ALPN: offering http/1.1 server_dev.exe: [INFO] ALPN: offering http/1.0 server_dev.exe: [INFO]...
I found that I couldn't use omigrate with cockroachdb, as it enforces ssl connections. It looks like pgx added ssl support, but only for the async driver. Since I was...
I get an NPE with the following stacktrace when trying this: ``` [info] Detected unnecessary RecomputeFieldValue.ArrayBaseOffset com.oracle.svm.core.jdk.Target_java_nio_DirectByteBuffer.arrayBaseOffset substitution field for java.nio.DirectByteBuffer.arrayBaseOffset. The annotated field can be removed. This ArrayBaseOffset computation...
The ansi colors of dune don't show up when run from npm, since it considers itself to be running in a non interactive mode. The env var `CLICOLOR_FORCE` can be...
I was getting the same error as seen here https://github.com/hammerlab/ketrew/issues/420 before adding a dependency on lwt_ssl. Does this project assume that a pre-existing ssl implementation is installed by opam?
After making use of unused_indexes, I started wondering about which indexes **were** being used, and to what extent. There are some other queries for index usage relative to a table,...
When writing to stdout using for instance `System.out.println`, the line is printed as appended to the end of the line, instead of on a new line of its own: ```java...