Alexandre Chabot-Leclerc
Alexandre Chabot-Leclerc
[On the forums](https://forum.zettelkasten.de/discussion/comment/2981/#Comment_2981), Magnus asked for links of the form `§201906202320`. The pattern `PAT_LINK = re.compile(r'\§(\d+)') ` could work. Accepting wiki links would also be nice.
If the network if busy, it's really hard to do with NetworkX + Plotly. It's very easy to do with GraphViz though, at the cost of an extra installation step.
The 1.1.0 network visualization buildling uses a loop appending a tuple for each node coordinate. It's _terribly slow_. Plotly 3 lets the user pass NumPy arrays, or at least lists,...
As of 1.1.0, the Applescript in the Keyboard Maestro macro requires that both the sidebar and the notes be visible. This is a constraint of using the Accessibility API. I...
**Problem Description** #435 exposes all demo files, which is good, but we lost the readable titles that were previously defined in `examples/demo/demo.cfg`. Now, the file names are the demo titles,...
Given the following example, running `scatter.edit_traits()` crashes with `TypeError: object of type 'float' has no len()` (see full traceback below), whereas `line.edit_traits()` works. - traits: '4.6.0' - traitsui: '5.1.0' -...
In the sample below exceptions that are raised through `observe` cannot be caught in unit tests. It's expected behavior, but it may be surprising to some. ``` import unittest from...
Should be able to: - load from disk - Convert to SRT - Know its "groups" - Convert to intelligibility Look into subclassing DataFrame for experiment results: - https://github.com/achabotl/pambox/issues/33 -...
`namedtuple`s would make much more sense. See also #33, and #40
It's a bit of a mess right now to require an `Experiment` whenever one needs to transform results. The results should be independent of the experiment. We should consider creating...