Martin von Gagern

Results 97 comments of Martin von Gagern

https://github.com/jonboulle/clockwork/pull/44 with its lock-holding approach might be better than the atomics here, because it gives stronger ordering guarantees and simplifies a number of other things, too.

The same holds when a spec file exists but has broken syntax. ``` sh $ echo '"' > test-spec.js && jasmine-node test-spec.js; echo $? Exception loading: /Users/gagern/src/up/jasmine-node/test-spec.js [SyntaxError: Unexpected token...

@Krijger In https://github.com/Khan/KaTeX/pull/387 I found out that [jasmine itself](http://jasmine.github.io/) [supports node](http://jasmine.github.io/2.3/node.html). So to me the jasmine-node package appears deprecated. If that is the case, a statement to that effect in...

To quote [my answer from Stack Overflow](http://stackoverflow.com/a/12635802/1468366), you probably should adjust `php-embed.m4` like this: LIBS="-lphp5 -L${PHP_INSTALL_PATH}/lib ${wl}-R${PHP_INSTALL_PATH}/lib $LIBS" ^^^^^ For gcc this should translate to `-Wl,-R…`, thus passing the flag...

I would say this could start as a piece of contributed code, similar to the auto renderer, and might get moved into the core if we see a strong reason...

Reading the above, I managed to simplify my code to `the().apply { … }`. It is nice to see `this as WebPackExtension` confirmed as a pattern. I agree that a...

@yilei you wrote that > `__class_getitem__` should not be set in locals because `typing.Tuple[int]` itself is not subscriptable. I disagree. Most importantly, an already subscripted generic type needs to be...

Seems I missed this issue when I filed #188. As I wrote there, it seems as if timing in WebAudio is sometimes absolute sometimes relative, as you pointed out here....

@hmoffatt I realized that there could be multiple drumkits when I looked at https://github.com/musescore/MIDI.js/commit/4c1e69260c4a27bfc7cf7935396ccaabf2cbb688. And I had the same thought as you: we really should be generating exactly those keys...

@hmoffatt: I have a version which does extract all the samples, but the metadata still needs some reformatting. Yes, WebAudio does support looping. It currently does not support exiting the...