ckemere

Results 21 comments of ckemere

I made a post here - https://softwarerecs.stackexchange.com/questions/62035/lightweight-command-line-gapless-audio-player . If you'd like to answer or comment, that would be great. Otherwise I will in a bit.

I think the idea is that a Trial would inherit from EpochArray but add some sort of metadata so that trials with different characteristics. How would having a Trial structure...

Yep. This makes sense. I guess the question is why we choose to use `logging` rather than `warning`, which can be filtered...

Do you want to fix the syntax? Should be, e.g., `return medians.item()`, not `return np.ndarray.item(medians)`.

I think the right syntax change for, e.g., `return np.asscalar(means)` would be `return means.item()`, right?

Thanks for commenting back so quickly! I agree that the memory allocation is probably not a huge drain on resource. I think I can also potentially trigger garbage collection on...

Ah, actually, reading more, it seems that `np.frombuffer` creates a view rather than a copy, so perhaps it's less of an issue.

`np.array()` will copy, though, right?

@deece - thanks so much for your hardwork on this. Question - when I send the version command with nmea.py, the verbose output looks like this: ``` Sent command: $PQTMVERNO*58...

I dug a little bit, and I realize that the `$PAIR012*39` response comes to every single command, but is usually followed by another message. Is it possible to suppress this,...