Stefano Vozza
Stefano Vozza
This seems to me be be similar to https://github.com/aws-solutions/workload-discovery-on-aws/issues/127, where we would have views with different granularities. This is definitely something we are interested in pursuing but obviously it involves...
Unfortunately, we don't have a select button at the moment but it has come up before so we would like to add it in an upcoming release. Something to note...
For the try-catch problem - assuming we want to keep them - would using the trick in the Bluebird performance optimisations document help? https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#2-unsupported-syntax > Some constructs are flat out...
It's a shame this never got merged, I spent a couple of hours trying to figure out why `use` wouldn't work for me and it was because I was using...
So looking at this it seems like because of the way `cliparse` works there's no way to intercept the string before it's coerced to a number. There's two choices, I...
What is `async.series` doing? `Request` returns a node stream, could you not just wrap them with the Highland constructor and chain them using `flatMap`.
No probs. So from what I can gather, you want to make 2 http requests per chunk of data. The way I would do this is like so: ``` js...
Let us know how you get on. Any more questions don't hesitate to ask.
Haha. Been there! Takes a little while to click but becomes second nature after a while.
You don't want to do the (error, response, body) callback if you're using it as a stream. Anything you do in there won't get passed down. Presuming that your REST...