James Conkling

Results 16 issues of James Conkling

Trying to specify a query limit at runtime, but the returned result contains the limit hardcoded into the `sparql` file. ```sparql PREFIX rdfs: SELECT DISTINCT ?property ?propertyLabel WHERE { ?type...

Having trouble delegating events for elements that might not yet exist. E.g. the below code does not work, unless I bind the 'mouseenter' handler after the graph has already been...

It would be nice if functions like `execute` returned typed results. Some potential steps towards that could be: - make the `HTTP.Body` generic: ```ts type SuccessBody = { status: number;...

enhancement

Is there interest in supporting redux v4? I tried running alongside redux4, and got the following error when handling global actions in my local reducer: ``` Uncaught Error: You may...

It seems that in node v4.1.0, `unzip.Parse()` does not work according to the docs. This does not work: ``` javascript res .pipe(unzip.Parse()) .pipe(writeStream) .on('finish', () => { console.log('finish') }); ```...

As a result of React's deprecation of the `componentWillMount` and `componentWillReceiveProps` lifecycle hooks, recompose's `mapPropsStream` now warns > Warning: componentWillMount has been renamed, and is not recommended for use. See...

`console.error` output is printed mixed in w/ the `Tests` ouput. `console.log` output, as expected, is printed in the `Comments` output. ```js try { ... } catch { console.error('ERROR!!!'); } ```...

Is the `FalcorJSON.$__status` property supposed to reliably determine whether or not a model query is done emitting? I'm running into the following issue: 1. model cache is populated with some...

```javascript const model = new Model({ source: { get: () => Observable.timer(100) .concat(Observable.throw({ status: 500 })) }, recycleJSON }) model.get(['items', 0, 'title']) .subscribe({ error(err) { console.log('Error', err) } }); ```...

Collapse correctly collapses indices into a range when all indices are w/i that range. E.g. ```javascript collapse([ ['key1', [1,2,3,4,5], 'key2'] ]) // > [['key1', { from: 1, to: 5 },...