Jan Gosmann
Jan Gosmann
With colima 0.2.2 or Docker Desktop the following works without issue: ```bash docker --debug run --rm -it percona:5.6.23 /bin/bash ``` Running the same command with colima 0.3.2 immediately exits with...
With markdown installed in version 3.4 or newer, `import mkautodoc` fails with ``` ImportError: cannot import name 'etree' from 'markdown.util' ``` The `markdown.util.etree` import has been deprecated since version 3.0...
A commit message ending in an abbreviation produces an error even if the trailing punctuation should be considered part of the abbreviation and not punctuation ending the title: ``` T3...
Great tool! Unfortunately, I was trying to absorb some changes today and got this error: ``` Nov 23 09:17:36.878 CRIT absorb failed, err: old path already occupied ``` It is...
I was trying nvim-gtk from the KDE application launcher, but no Neovim window would appear (starting from a terminal worked without problems). A nvim-gtk process was however started and after...
The `parametrize_function_name` [causes the Nengo SPA tests to fail](https://travis-ci.org/nengo/nengo-spa/jobs/466181344) because of a deprecation warning. Relevant part of the log: ``` ______ ERROR at setup of test_casting_vocabs[16-16-reinterpret(a, v2)-v1] ______ request =...
I repeatedly run into a situation where the Nengo simulation will fail in the last timestep caused by a node output function like this: ```python def output(t): idx = int(t...
Setting the learning rate of the `Oja` rule to `0.1` raises following exception during the simulation: ``` --------------------------------------------------------------------------- FloatingPointError Traceback (most recent call last) in () 1 with nengo.Simulator(model) as...
I often want to probe some data from a Nengo model and save it to a file, either by calling `np.savez` myself or by returning a `dict` that later will...
The builder allows to register new build functions for new neuron types (and other things). It would be nice to have a feature to register functions to be executed when...