gwbres

Results 135 comments of gwbres

@foresthan, once you call `upgrade()` upon clients request to open a websocket, you should spawn a thread where the special stream handler lives on. If this thread gets terminated, it...

@CamJN, after reading the current code, it seems like a `Ping` is automatically answered by a `Pong` with the payload maintained identical. To me this is what the RFC specifies

@jondoesntgit @spluque Hello, just for clarification Frequency data is actually a ratio delta f /f, I think instead of "frequency data" one should read "fractional frequency data". In a fractional...

hello @ktbarrett, Here are three short files that produce the error on my side `Makefile`: ```makefile TOPLEVEL_LANG = vhdl export COCOTB_REDUCED_LOG_FMT SIM = ghdl EXTRA_ARGS += --std=08 SIM_ARGS += -gG_DATA_IN_WIDTH=10...

@andyfaff , @rgommers for information, scipy is now supported by Buildroot. It's been in the pipeline for about 3 years, mostly slowed down due to issues related to pybind (which...

note that it is the first time i'm dealing with `meson`, yet it is quite straightforward and I can probably provide some input here > it seems that a cross...

@rgommers > Can you easily add a python entry under [binaries] yes we can do that easily. >The need to run the target Python interpreter should disappear once we resolve...

you got it right, host-python can be used on the build machine to generate code and locate things. ``` ./output/host/lib/python3.10/site-packages/numpy/core/lib/libnpymath.a # is the one to use on the build machine,...

@rgommers congratulations, it works. I manually modified the "libnpyrandom" and libnpymath" path, in scipy/meson.build, and it worked. >what is the best way to apply a patch If you have a...

Hello guys, @rgommers, as far as my personal case is concerned, we have the temporary solution to help locate the libs. It turned out pybind11 is also faulty in some...