Results 124 comments of Sebastien Piquemal
trafficstars

This other implementation seems to work on node 0.10.15, and last update is more recent. https://github.com/audreyt/node-webworker-threads

nope ... I gave up multi-threading on node.

I think it would be fine to arbitrarily change the types, since you are mapping a JS type to an OSC one. I don't see a problem in conditionally choosing...

Yeah, I know it's confusing :) The thing is that by default `Buffer.toString` uses utf8. I am using osc-min on the frontend, sending an OSC `Buffer` through WebSocket. The other...

Hi Russell, sorry for the slow answer ... Basically I don't understand very well either, ... this has to do with the way node `Buffer` works. When you call `Buffer.toString([encoding])`...

I think it makes sense to have classes + instances, cause we do have states. For example in the case of an oscillator we have the phase. We could also...

Probably what would be needed is to test the modulo of the diff, and not the diff itself. e.g. : ``` val[i] ~ val[j] if (val[i] - val[j]) % 32765...

Yeah ... I think chai-stats doesn't fit the bill. it's too simplistic. Relative error sounds good. Pd both starts from 0 and hits 1 (see here : https://raw.github.com/sebpiq/dsp-test-files/master/test-files/waveforms/phasor-440-hz.json). But it's...

yes! Great :) I'll implement it along with better approximation functions for tests and pull request.

Hmmm actually this doesn't work either. 1- you need to handle case where frequency is a number, 2- this doesn't start from 0. This phasor starts to annoy me.