Carl Bourne

Results 47 comments of Carl Bourne

👍 - Yes I spent hours on what looks to be very useful. I can't work out how to use it.

OK - thanks for the clarification. Any idea on timescales for 0.4 ?

Interesting - regarding item 3 would ZeroMQ be a better choice here? There are language bindings for almost every language out there. Carl Sent from my iPhone > On 26...

Thanks - that did the trick.

Thanks very much. So my code now looks like this: ``` javascript const asyncSeriesStream = _.wrapCallback(async.series); _(fs.createReadStream("small.txt", { encoding: 'utf8' })) .splitBy('-----BEGIN-----\n') .splitBy('\n-----END-----\n') .filter(chunk => chunk !== '') .flatMap(chunk =>...

Hmm - I'm not sure. I'm starting to get a little out of my depth now. Any guidance would be much appreciated. Essentially, I'm just trying to process a large...

Thank you very much. I'll give this a try in a bit. Your help is much appreciated. Sent from my iPhone > On 24 Sep 2016, at 12:06, Stefano Vozza...

@svozza - This is great. Again thanks for the guidance. I'm a python guy trying to get my head around the asynchronous world. :)

So this seems to work perfectly. This is my code now: ``` javascript _(fs.createReadStream("small.txt", { encoding: 'utf8' })) .splitBy('-----BEGIN-----\n') .splitBy('\n-----END-----\n') .filter(chunk => chunk !== '') .flatMap(chunk => { // I...

I'm almost there. I just need to figure out how to do two more things. 1. Add more `requests` to the chain of HTTP calls and pass the data from...