Roman Pearah
Roman Pearah
I'm thinking about venturing down the path of implementing some persistent data structures in Rust, namely RRB-vectors and, subsequently, hitchhiker trees, so this has been a great example to study....
``` js var replay = require('replay'); var request = require('request'); request.get({ uri: 'http://www.google.com/', proxy: 'http://proxy.somedomain.com:25800' }, function (err, res, body) { // do stuff }); ``` As expected, this gives:...
I am curious about the motivation for [this step](https://github.com/atulkum/pointer_summarizer/blob/5eb298a66b4d3b53adb854ba9b5c82580cf2fa1e/training_ptr_gen/model.py#L151), as I couldn't anything about it in See et al., though I might have just missed it.
redux-orm appears to require a mutable store, so doesn't work with total store immutability that comes from `redux-immutable` or `redux-seamless-immutable`. Would it be possible to allow for a configuration that...
When using a watermark trigger, emitted segments don't flow downstream (as they do with a segment-based trigger, for instance). Perhaps it's unsupported for that trigger type, though I cannot imagine...
``` javascript var range1 = moment.range("2014-03-31", "2014-04-30"); var range2 = moment.range("2013-12-31", "2014-04-30"); range2.subtract(range1); // 2013-12-31 to 2014-03-31 ``` Wouldn't you expect the resulting range to end with 2013-03-30, since subtract...
Please add node module support.
As mentioned in #9, the events example panics (on OS X with an Intel Iris Pro GPU, in this case). Here's the output: ``` Enqueuing kernel [itr:0]... Enqueuing read buffer...
I was thinking it would be useful to be able to specify variables in the data that are neither the target variable nor variables used to perform the resampling, and...
I appears that buddy only works with PEM-format keypairs at the moment. It would be very useful to have the ability to also work with DER-format keypairs.