Eric Duminil

Results 31 comments of Eric Duminil

@m09 I can reproduce this bug, even with one single markdown file called `index.md`. Here's the longest markdown file which gets converted to a single page pdf on my computer:...

I don't know if this solution is acceptable from a security point of view, but it has worked well for my needs: * I define AP password, Wifi SSID and...

@prampec : Good to know, thanks. I'm not sure I understand the purpose of : ``` if (!validConfig) { // -- No config this->_apPassword[0] = '\0'; this->_wifiParameters._wifiSsid[0] = '\0'; this->_wifiParameters._wifiPassword[0]...

If anyone's interested in setting passwords and ssid via Serial, there's an example at https://github.com/EricDuminil/IotWebConf/blob/example/shell_commands/examples/IotWebConf18ShellCommands/IotWebConf18ShellCommands.ino The sketch is a bit long, but most of it could be moved to `shell.h`...

Isn't it possible to declare a global pointer to iotWebConf: `IotWebConf *iotWebConf;` and create the actual object later (see this [SO answer](https://stackoverflow.com/a/7557195/6419007)), when more logic can be used in order...

@prampec : It's true that "new" can be dangerous on a microcontroller. As far as I can tell, `new IotWebConf()` only takes 4 bytes, though, once all the parameters have...

@prampec No need to be too modest : you wrote a great library! C knowledge is exactly what you'd need if you ever want to replace Arduino Strings with char...

@meikinghan Hello. I just discovered this nice project today. As far as I can tell, the information you need is available in `draw_bounding_box_on_image` at https://github.com/tadejmagajna/HereIsWally/blob/master/object_detection/utils/visualization_utils.py#L122. For example, you could add...

It's the last important feature I miss in VSCode + VSCodeVim. Is there any way we could help? https://marketplace.visualstudio.com/items?itemName=Atishay-Jain.All-Autocomplete is a step in the right direction, but it mixes intellisense...

Sorry, I apparently misunderstood. Which completion are you talking about, then?