David Konsumer

Results 457 comments of David Konsumer

In the interest of minimal impact to the library and simple elegance, one could also do this: ``` javascript var getField = function() { return navigator.webkitGamepads || navigator.mozGamepads || navigator.gamepads...

It looks like it's available in `CanvasKit.Path.MakeFromSVGString`, at least in new builds of canvaskit. I will work on a PR.

Hmm, nevermind, seems like that just creates image-path. I tried this: ```ts console.log(canvas.Path.MakeFromSVGString(s)) ``` where `s` is a SVG string, and got `null`. This seems doable, but I don't think...

The first error tells me that I need a comma in my import statement, the second tells me that reading some buffer failed.

I use it with react & [this](https://gist.github.com/konsumer/4aa4f65304cd5fb4e20c1c4b7a556da9). Very useful in a non-angular context.

Yeh, it's in the `TODO` at the end of description.

@joelvh I got busy with other work. Feel free to use any ideas you find here. I ended up having issues with the demo not building, I think I probably...

> @konsumer P.S. I would start with making this an NPM module with a build process first This does have build process. (see `npm run build`.) for npm, I would...

Same problem with brunch, using bootstrap-less.

I am also very new to imba, but I have been doing it in my router tag's `render`: ``` if !user else ``` I have the router output & menu...