Florian Kromer
Florian Kromer
**Describe the feature** Higher end devices like the Portenta H7 do not provide `pgmspace.h`. This leads to a compilation error when trying to build code which uses mWebSockets on such...
## Review the Contributing Guidelines Before submitting a pull request, verify it meets all requirements in the [Contributing Guidelines](https://github.com/donnemartin/awesome-aws/blob/master/CONTRIBUTING.md). ## Describe Why This Is Awesome Why is this awesome? --...
Would be great to have support for the [MQTT URI Scheme](https://github.com/mqtt/mqtt.github.io/wiki/URI-Scheme).
Would be great to have support for [channel layer configuration](https://channels.readthedocs.io/en/latest/topics/channel_layers.html?highlight=configuration#configuration) in `django-environ` :smirk: The in-memory channel layer config is pretty simple. The [channel_redis config](https://github.com/django/channels_redis/#usage) one is more interesting.
## Name of the extension you are adding vscode-js-profile-flame ## Why do you think this extension is awesome? Cause it eases debugging on local machines via [real-time resource usage monitoring](https://www.youtube.com/watch?v=9UI0JT8y2c4)....
* Python State Machine version: 0.7.1 ### Description Is it possible to implement hierarchical/nested state machines like [this explicit implementation](https://github.com/faif/python-patterns/blob/master/patterns/other/hsm/hsm.py)? ### What I Did Nothing tried yet.
I've created the following example. ```c++ #include "Fsm.h" #define STATE_1_TO_2_EVENT 1 #define STATE_2_TO_1_EVENT 2 void on_state_1_on_enter() { Serial.println("Entering State 1"); } void on_state_1_in_state() { Serial.println("State 1"); } void on_state_1_on_exit() {...
Is there a way to prevent string values from beeing converted to floats? E.g. if I define `string_parameter=['a', 'b', 'c']` ``` from doepy import build build.full_fact({ 'int_param':[1, 2, 3], 'float_param':...