Kyle Robinson Young

Results 300 comments of Kyle Robinson Young

Nice thanks for the issue ref. I think input security should be handled by a server side API. But I think any values going out to the DOM or CSS...

Still thinking this over but this part likely doesn't belong in this lib and will probably be removed next major.

Oh another note: it misses uses of `require('path').existsSync` too. :) Reference: gruntjs/grunt-contrib#73 (btw, has been fixed earlier in the 0.2.0-wip branch of that repo)

Yeah! A first person view or any view (follow cam, etc) is simple. Streaming png video has been difficult as it greatly slows down the simulation in the browser but...

`process.cwd() + '/**/*'` doesn't work very well as the patterns should have a base on which to operate from. A better strategy is this: ``` js gaze('**/*', { cwd: process.cwd()...

`/random/path$./my/program /path/to/some/files/**/*js` uses absolute paths. The patterns need a base to operate properly. `/path/to/some/files$/random/path/my/program **/*js` uses relative paths. The patterns are operating from the `cwd: '/path/to/some/files'`.

`cwd` is the only way. Your program can determine what the cwd is though. For the pattern `/path/to/some/files/**/*js`, the cwd could be `/path/to/some/` and pattern `files/**/*js`. Or it could be...

Both should fire `added` events. A test showing the unexpected behavior would be great.

The following libraries are required to build Node.js native addons: https://github.com/TooTallNate/node-gyp#installation I was hopeful the issues regarding compiling the native addons would been minimal but I'm getting a lot of...

This is a tricky one. Since the pattern `**/*.js` doesn't initially match `folder/subfolder`, the folder is not watched and therefore doesn't monitor valid `added` events from within that folder. Some...