Ondřej Hruška
Ondřej Hruška
You often need to put a cite note into a blockquote. ``` > Something very smart here, > other line of the wisdom. > ― Some Wise Guy ``` Now...
I am using this regex to add support for YouTube videos: ``` "#@\[(.*?)\]\s*\(([a-z0-9.-]+)\)#i" => '$1', ``` It allows the syntax `@[Alt text] (YouTube-code)` to be turned into a YT embed...
It would be nice to have an option to get a more compact output (eg. with icon only for the current weather) This is what it looks like on a...
This is a work in progress, feel free to comment on it to guide the implementation. Currently it compiles, hasn't been tested yet. It also doesn't have unit tests for...
We're trying to interface a Siemens PLC and one of the things needed is reading and writing time programs using the Schedule object. This is not currently supported and results...
Large task for the future - Ensure all non-static functions are prefixed with bacnet (or bacapp? Not sure if there's a meaning to this or it's just a historical name)....
Many functions take pointers as arguments and then do not modify them. These should be marked as const. It will help compiler optimization and also prevents bugs with accidental mutation....
Related to #215 and #261 I build a testbench to evaluate spiffs and other flash filesystems for use with a large (64MB) NOR flash. After a promising start, I now...
I'm using `tokio::time::timeout` on the Futures returned by e.g. `client.read_holding_registers()`, as real-world devices are not reliable and a retry is sometimes needed, also I don't want to block forever and...
We have a modbus slave which implements modbus in the usual vendor way, i.e., wrong: It does not send CRC with error frames. ``` Req: 0A 01 04 A1 00...