Christian d'Heureuse

Results 9 issues of Christian d'Heureuse

This app has disappeared from the Google Play Store and it has even been automatically deleted from my phone. How can I get it back?

Please add the current time to the JSON response structure of the stationboard request. That way we would have a more reliable time base than using the local client time...

enhancement

I suggest to implement an `AsyncIterator` for the `Request` class. This would allow promise-based streaming of query results. Example of how to use it: ``` const request = new Request(sql);...

feature-request

When the video is loaded without an explicit poster image and with autoplay = false, the first image of the entire video is displayed and not the first image of...

The F0 flutter value, calculated with the 3 sine waves of 12.7, 7.1 and 4.7 Hz, is applied incrementally: ` frame->F0hz10 = frame->F0hz10 + (long) delta_f0;` But according to the...

According to the [Klatt 1990 paper](http://www.fon.hum.uva.nl/david/ma_ssp/doc/Klatt-1990-JAS000820.pdf), the F0 flutter delta should be calculated using modulation frequencies of 12.7 Hz, 7.1 Hz and 4.7 Hz The current implementation uses the `time_count`...

The constant `MAX_SAM` (Maximum sample rate = 20000) is used to allocate the `iwave` buffer: `iwave = (int*) malloc(sizeof(int)*MAX_SAM);` But the `iwave` buffer is used for nspfr entries: `globals->nspfr =...

The documentation states: `1 = impulse train. 2 = natural simulation. 3 = natural samples` The old source code was: ``` #define IMPULSIVE 1 #define NATURAL 2 #define SAMPLED 3...