Momtchil Momtchev
Momtchil Momtchev
Here is my raw libuv repro: ```c int timer_check_double_call_called = 0; static void timer_check_double_call(uv_timer_t* handle) { ASSERT(1 != timer_check_double_call_called); timer_check_double_call_called = 1; } TEST_IMPL(timer_no_double_call) { uv_timer_t timer_handle; const uint64_t timeout_ms...
#3791 is the alternative solution - it appears very invasive but in fact it has less consequences - instead of modifying the order of the event loop, it tracks if...
I am proposing #3791 as a less intrusive change - but should you decide otherwise - I can proceed with exchanging the event loop order - which is a two-line...
This old stackoverflow by @warmerdam contains the right command: https://gis.stackexchange.com/questions/37790/reprojecting-raster-from-0-360-to-180-180-with-cutting-180-meridian-using-gdalw ``` gdalwarp -s_srs "+proj=longlat +ellps=WGS84" -t_srs WGS84 ~/0_360.tif 180.tif -wo SOURCE_EXTRA=1000 \ --config CENTER_LONG 0 ``` GRIBv2 was a very...
@h4tr3d what is the situation with the filtering code? I have the feeling that it is in a *roofing more or less finished, some minor construction remains* state?
Alas, lately, the main theme of all my social media accounts is the fact that I barely have enough money to eat and I have been served an eviction notice...
@vmoroz You are welcome to push any modifications I catched up with `main` and removed the `deps/uv` patch now that libuv has been updated. There are a couple of issues...
@mhdawson I have removed the custom `path` argument to the bootstrapper script that was causing a symbol collision. Normally, the embedded environment uses as much as possible from the normal...
@joyeecheung I can add another `exec_path` to `Environment` - lets call it `modules_root` that will implement configuring the root from NAPI and carry it in the `process` object. I can...
@vmoroz @gabrielschulhof @addaleax I see that now there is a `node::InitializeOncePerProcess` that does not return an array of errors - something that didn't really work before anyways - and takes...