Martin von Gagern

Results 77 issues of Martin von Gagern

It's kind of tedious if one has to explicitely name every changed file, particularly in case of package installs or uninstalls. And having uninstalled packages emit error messages for up...

If compiled with `make CPPFLAGS=-DUSE_INOTIFY`, then `crond` will now monitor both crontab directories, and will immediately synchronize any files right after they have been closed or deleted. So far this...

Important if files are edited directly, not via `crontab`.

In terms of features, the addition of `AfterFunc` is the main benefit here. Otherwise it addresses a number of bugs, mainly around out-of-order or duplicate delivery of events, as exposed...

Fixes https://github.com/jonboulle/clockwork/issues/42.

I noticed that there appears to be a race condition in the fake timer implementation. If `Reset` gets called multiple times then apparently it can schedule multiple channel events. I...

Allow calling `Timer.Reset` from within the `AfterFunc` callback. This is a more far-reaching request than https://github.com/benbjohnson/clock/pull/27 because it not only requires the mutex to be unlocked, but also the stop...

While [trying to get GWT-compiled code to execute in a domino environment](https://github.com/gagern/CindyJS/commit/d41baa2540790bcfff000d428f108bf62e950b72), I noticed that it attempts to perform an `open`/`write`/`close` cycle on a document, which isn't (properly) supported by...

I think it would be nice to clarify the interplay between [tabs](http://spec.commonmark.org/0.23/#tabs) and the indentation removal in [fenced code blocks](http://spec.commonmark.org/0.23/#fenced-code-blocks). What exactly gets removed? Example: `````` ⋅⋅``` →→foo ⋅→⋅bar ⋅⋅→baz...

MIDI.js does consider `webkitAudioContext` as an alternative to `AudioContext` in _some_ places, but not consistently so far. The commit at hand changes that. This is required to support WebAudio on...