Jarek Zgoda

Results 56 comments of Jarek Zgoda

Many Arduino/ESP8266 libraries work oob, eg. [this one](https://github.com/FastLED/FastLED) looks promising. Can you try and report back if it works?

Don't waste your time, this one does not work.

I'm not a member of Sming project so the repository at Bintray will be unofficial for this moment. I will switch ownership to Sming once ready.

How are these binaries built? My 2.0.0 SDK is ~40MB compressed vs ~160MB for 1.5.4 on Dropbox, archive content seems to be the same: ``` $ tar tfz esp-open-sdk-2.0.0-linux-x86_64.tar.gz --exclude...

https://github.com/SmingHub/Sming/wiki/Linux-Quickstart has links.

gunicorn 20.0.4 + aiohttp 3.6.2 Gunicorn is running as dev server: ``` gunicorn --reload app:make_app --bind localhost:5000 --worker-class aiohttp.GunicornWebWorker --workers 2 --access-logfile - ``` Almost every Ctrl+C ends with ```...

With Sanic 20.3.0: ``` ^C[2020-05-26 13:24:55 +0200] [27706] [INFO] Handling signal: int [2020-05-26 13:24:55 +0200] [27769] [INFO] Stopping server: 27769, connections: 0 [2020-05-26 13:24:55 +0200] [27769] [INFO] Error while closing...

Ubuntu 20.04, system provided Python 3.8.2 in virtualenv Example application: https://github.com/zgoda/newsloop-server/tree/d603a1c10c9e8be3d998f62ccc55dd73f4677115 (with aiohttp) or https://github.com/zgoda/newsloop-server/tree/b2a8a7f09fa9848d0384b51a3f6c0bb037fb459e (with Sanic). Exact gunicorn invocation in my earlier comment. Differences in output between aiohttp and...

I wrote my own management script, see the test command -> https://github.com/zgoda/zakwasy/blob/master/manage.py#L37 This is adapted to Click from old code that used Flask-Script before.

Fixture indeed is supported, see https://github.com/zgoda/zakwasy/blob/master/tests/__init__.py#L18 and test data in https://github.com/zgoda/zakwasy/blob/master/tests/data.py.