Brenton Simpson

Results 132 issues of Brenton Simpson

Lens Blur photos are created by the G+ Camera, but if you upload a photo from the G+ Photos app, you'll get a "no XMP metadata found" error. The correct...

enhancement

Probably need to add `"process": {"env": {"NODE_ENV": NODE_ENV}}`[here](https://github.com/appsforartists/ambidex/blob/48f7cbd106392f63d51ee3de052dc1828455a294/src/Ambidex.server.js#L246) to optimize production builds.

enhancement

If someone [waits on a store that never triggers](https://github.com/captainill/palette-ambidex/pull/1), their app will hang on those requests. Give them some feedback, so they know how to fix the problem.

enhancement

Some data sources are specific to a route (but not to a particular parameter). Filter on those, so you don't end up waiting for requests on pages that don't need...

enhancement

Libraries like `prfun` (incidentally recommended in the [`es6-shim` README](https://github.com/paulmillr/es6-shim)) augment the Promise prototype with additional methods. `Promise.promisify` is particularly nice. I just tried incorporating the `es6-shim` into my Node 0.11.13...

repo management

Reqwest's `then` implementation is faulty. It should be wrapped in a `try/catch` and pass the error onto the promise's `catch` method, [per the spec](https://promisesaplus.com/#point-40). For comparison, here's the correct behavior...

I replaced your hardcoded references to `window` so Reqwest can use XHR polyfills when being run on the server. This is the work I referenced in #153.

I'm calling an API recursively to build a tree. Sometimes, I get throttled and need to exponentially back-off. I can't do this with Reqwest natively, because anything I return from...