Momtchil Momtchev

Results 372 comments of Momtchil Momtchev

I was also thinking about adding support for `Box` points - so that it can show you a score-maximizing point in a, let's say 3km or 5km radius - by...

@KevinEady 1. I agree that this API would not cover all use cases - in particular Electron has very specific requirements - but if you look at these exchanges, you...

> > Should we support mixed use with conversions between v8::Local and napi > > Can you clarify this a bit? Public API for retrieving the V8 reference from a...

@KevinEady @addaleax @rvagg My goal is to be able to support installation of this (`libnode` + this API) along a NodeSource Node.js package Basically, I have two choices: * Either...

Ok, this is what I currently have - `libnode93` and `libnode108` which can be installed independently of `nodejs` - all three can be installed at the same time - and...

@addaleax And do you have an idea for an elegant solution for having top-level functions appear in the global object the way they do in the REPL, besides `vm.runInThisContext()`? Ideally...

@addaleax I have a problem with restarting the event loop since `NodePlatform::DrainTasks` : https://github.com/nodejs/node/blob/3738b57102b5fad003e9e3ec7c936136980556bc/src/node_platform.cc#L440 can be run only once per isolate. If I don't drain the tasks, some pending Promises...

@vtjnash @bnoordhuis I just ran all of Node.js' unit tests after moving `uv__run_timers` after `uv__io_poll` both through the normal event loop and through my modified `UV_RUN_ONCE` event loop and they...

Most of the code is always protected by mutexes. I think that the real reason that this was not done before is that it might have appeared to be an...

@bnoordhuis If the number of requests in the loop reaches zero while a worker task is still running (which might add a new one on completion) - this means that...