Nicolau Leal Werneck
Nicolau Leal Werneck
I'm getting the `Endpoint exhausted, sleeping for $sleeptime seconds..` error message, although I don't believe I'm anywhere the API rate limits... How can I debug this? And could this be...
It would be great to add JuliaSnail.jl to a sysimage created with PackageCompiler. I'm not sure how to do it, though, as the module is just `include`d, as far as...
Couple of typos. Not sure about the second one, the previous sentence was "from of Julia Code", and it was changed to "form of Julia Code", but I have a...
I'm trying to build this project and apparently my toolchain is not adequate. I'm just using the ESP-IDF as the README says. What's missing? ``` Toolchain path: /home/user/.espressif/tools/xtensa-esp32-elf/esp-2020r1-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc WARNING: Toolchain...
"The documentation page has links to pre-formatted versions of the _manaul_."
I'm not too familiar with how Interpolations deal with types, but this behavior seems quite strange. If you use types from Colors.jl, the values inside the domain get computed as...
The patch merely modifies the algorithm to initialize the index list with `1` instead of `-1`. New tests are added that reproduce issues #78 and #125. It's a bit of...
I was able to reproduce the issue with the following snippet: ``` tree = KDTree(randn(35,408)) nn(tree, rand(35)) nn(tree, repeat([NaN], 35)) ``` In some situations the function returns (1, Inf), which...
I am making a bot that posts news articles links. This error message appears when a repeated url is posted, and Slack answers with a warning that the url was...
I am working on a software for logic inference, where I am processing lists of non-zero values. My test looks like: ``` val big_literal = Gen.oneOf(Gen.choose(-50, -1), Gen.choose(1, 50)) val...