Nicolas Guiard
Nicolas Guiard
As soon as I add a scss link to my `index.html`, `trunk build` or `trunk serve` fails with : ``` error from HTML pipeline Caused by: 0: error from asset...
Trying to connect with a `scram-sha-256` password fails (`error: password authentication failed for user ""`), while `md5` works. Environmnent: - Debian 11 - Node 17 - pg 8.7.1 - PostgreSQL...
Hi! zstd-sys build is failing on a RPi3 with FreeBSD (aarch64, clang). On linux (same device, aarch64, gcc), the build works fine. Some relevant info: - On FreeBSD, building upstream...
Hi, As of version 3.37.0 (2021-11-27), SQLite supports [STRICT tables](https://www.sqlite.org/stricttables.html). However, the LiteCLI client seems to choke on tables defined this way. Steps to reproduce: - have sqlite3 version >=...
Hi, I'm trying to store a Vector{UInt8} in a bytea column but am getting unexpected results. Maybe you have an idea of what I'm doing wrong or if this is...
Hi, thanks for this library! Using `@suppress` in a `@safetestset` block triggers an "UndefVarError: `@suppress` not defined". Minimal example, a package with just Supppressor and SafeTestsets installed, `test/runtests.jl`: ```julia using...
Hi! Thanks a lot for this library! As HTTP.jl supports `queryparams` to decode parameters of a query string, I am surprised there's no facility to decode forms encoded in `application/x-www-form-urlencoded`....
Hi! In some languages like French, typographic rules state that a colon should be preceded by a non-breaking space. Could this be added in pandoc-fignos?
Hi! OpenComputers is working up to 1.12.2. Would it take a long of work to update OpenRadio to 1.12.2 as well? I'm considering doing it.
Hi, I was trying inference, following the example in the doc: ```julia bn = DiscreteBayesNet() push!(bn, DiscreteCPD(:a, [0.3,0.7])) push!(bn, DiscreteCPD(:b, [0.2,0.8])) push!(bn, DiscreteCPD(:c, [:a, :b], [2,2], [Categorical([0.1,0.9]), Categorical([0.2,0.8]), Categorical([1.0,0.0]), Categorical([0.4,0.6]),...