Robert Nagy

Results 162 issues of Robert Nagy

Hot reloading doesn't seem to work. Any ideas on how to get it working? What's missing?

Given the following code in an intent: ``` javascript const assetUpdate$ = id$ .flatMapLatest(id => Observable .merge( DOM .select('.title') .events('input') .map((e) => ({ id, title: e.target.value, })) ) ) .do(()...

bug

Adds `buffer` operator and implements `parallel` in terms of `buffer` which gives a simpler and more powerful solution. Needs test and review.

I'm spawning processes and using SIGSTOP/SIGCONT to suspend/resume the processes. However, I've noticed that the processes will continue living even after `'close'` having been emitted: e.g. ``` # ps -ax...

child_process

Would be nice if a worked could peek a task before actually trying to process it. i.e. to check whether or not it can process it.

enhancement

Feature request. Task priorities or deadline based ordering.

enhancement

In http2 compat `_header` is just a boolean. Not quite what we expect?

Couldn't quite get thread-stream running well in our services so we re-implemented something similar. We used a simpler concurrent queue implementation that might be useful for thread-stream as well. Basically...

The semantics of flush is a little unclear to me, i.e. when I call `flush(cb)` I'd expect that all data that I have `write(chunk)` would be flushed when `cb` is...