Darren Prentice
Darren Prentice
I'm finding my code is doing a lot of this: ```haskell o1 handle err (ExitSuccess, stdout) -> do o2 handle err (ExitSuccess, stdout) -> do ... ``` I'd like to...
This relates to discussion from https://github.com/avh4/elm-format/issues/194 about providing an AST for other tools to consume. But a step further. Elm-format today is essentially a language server that just does formatting....
The current game clock speed is recklessly based on `requestAnimationFrame` alone. Results in the game speed going ludicrously fast on modern hardware. Fixing it to an absolute rate will solve...
[`freeman-lab/pixel-grid`](https://github.com/freeman-lab/pixel-grid) uses [`regl`](https://github.com/regl-project/regl) version [`^0.11.0`](https://github.com/freeman-lab/pixel-grid/blob/master/package.json#L38) It works fine. It would be nice to hardcode the barebones of `freeman-lab/pixel-grid` into this package, and try upgrading to regl 2.0 if there's any...
Most piano rolls use color to indicate velocity, not pitch class. It would be nice to add an optional `velocity` or `noteColor` type to the end of [noteData](https://github.com/mjhasbach/pixi-piano-roll#noteData).