Stuart Knightley

Results 13 issues of Stuart Knightley

If this is "literally copied from the React 0.14 codebase" then it's also subject to the patent grant included with that release of React. It would be good to clarify...

help wanted

When I try and add this feed https://forums.adobe.com/community/feeds/allcontent?community=5062 it says that no feed can be found :(

I didn't enter a password and pressed "Unlock" and everything seems to have worked ok, just wanted to let you know!

The return type for some functions does not include `null`: https://github.com/toji/gl-matrix/blob/4480752e5dc58a56aa9e14e3040b64bd46726aec/src/mat4.js#L286-L293 when in actuality they can return `null`: https://github.com/toji/gl-matrix/blob/4480752e5dc58a56aa9e14e3040b64bd46726aec/src/mat4.js#L328-L330 This can lead to unexpected runtime errors.

Is there a way to archive all tasks with a DONE status? Either built in or a way to code this up myself. Thanks!

I have installed meld 3.19.2-r6,osx-15 from Homebrew, and get the following error when launching from the command line: > py2app stub executable has encountered a fatal error, and will now...

I have an app where an action causes the result of multiple getters to update. From this one action `nuclearMixin` calls `setState` once for each getter, which causes React to...

``` js something(function (err, result) { if (err) { console.log(err); } else { console.log(result); } }); ```

Input ``` javascript getDetails('Bob', function (err, details) { if (err) { details = {}; } console.log(details) }); ``` Output ``` javascript getDetails('Bob').then(function (details) { console.log(details); }, function (err) { details...