jonathanjfshaw
jonathanjfshaw
Python's stack trace tells us which class threw an error, but sometimes there are multiple instances of a class in a graph and it's very helpful to know which graph...
In https://github.com/timeflux/timeflux_ui/issues/9 @mesca thought that a node for dropping NaNs could have a place in core. I've also found circumstances where I've wanted to provide an empty dataframe (instead of...
In https://github.com/timeflux/timeflux_dsp/pull/9 @bertrandlalo asked me to create a branch combining window, fft, expression and bands to get the power of a spectrum in bands. This might serve as an example...
AFAICS from the docs this should work: ``` - id: my_apply module: timeflux.nodes.apply class: ApplyMethod params: func: abs ``` but it fails with `Node 'my_apply': __init__() missing 1 required positional...
In io.py we have: ``` class Port: ... def set(self, rows, timestamps=None, names=None, meta={}): if timestamps is None: rate = 1 if Registry.rate == 0 else Registry.rate stop = int(Registry.cycle_start...
I'm sure it's been thought about, but there wasn't an issue yet. Integration with Drupal Commerce when it matures for D8 would seem vital.
The porting of CRM Core to D8 is being pushed forward again in the last week by MD Systems. As this will likely be the first CRM to mature in...
Currently in BehatContainerTrait we setup a container ourselves. I suspect that the best way to intitalise Behat inside phpunitbehat might be to create our own factory class extending \\Behat\\Behat\\ApplicationFactory and...