Dev Aggarwal
Dev Aggarwal
Agreed. It's absurd that the official example app doesn't work out of the box!
Is this supposed to work? It leaves the file unchanged, but I would expect something like this `in.py` ```python # fmt: off def x(): return pow( 2,3) # fmt: on...
Please follow [this](https://stackoverflow.com/questions/52299246/cant-find-serviceworker-in-navigator-anymore/54934302#54934302) guide to whitelist your IP address so chrome allows service workers.
It's a good replacement until everything is figured out. I can't emphasise on how much headache stuff like this causes. A simple "NOTE" goes a long way...
@koehlma, might I suggest you bring some of the features from your project over to Batavia ? https://pybee.org/batavia/
I also had to set LIBRARY_PATH while running `make` ``` LIBRARY_PATH=/usr/local/opt/llvm/Toolchains/LLVM10.0.1.xctoolchain/usr/lib/ make ``` Otherwise, I got the following error - ``` $ make [ 7%] Linking CXX executable bin/c2ffi ld:...
@euri10 Thanks for the example. Small issue: There's a solid 50-second delay between the actual (physical) disconnect and `on_disconnect()` being called. Any way to make sure `on_disconnect()` is called instantly?...
Here's an MWE - Grab 2 computers, run the server on one and client on the other. Then just disconnect the wifi on the client. --- ```python # testserver.py from...
Sorry, here's the library - [websocket_client](https://pypi.org/project/websocket_client/) ``` $ pip install websocket_client ``` ctrl+c is not really representative of a real-world client IMO, because mobile clients may have bad internet connection,...