Steffen Dienst
Steffen Dienst
Actually, I had some success using the [Readbean](https://redbean.dev/) webserver: a standalone binary that runs on Linux, Windows, Mac and BSD. I took the main ideas from the python webserver and...
I didn't test with 2000 nodes, but I experienced the same slowdown in my usecase. A workaround might be not to use deep watching for the whole tree data (which...
Sure, thanks.
If the element you want to set as the tooltip content is not a string, then ```innerText``` will convert it to a string leading to the representation you see. You...
For question 2: This sounds like a job for `compile-codec`. You could use a `:ubyte` codec which reads/writes 8bit values, and then define two functions that convert a byte to...
For question 1: Yes, something employing the `header` codec is what I would use. The main idea is capturing the pattern: Use something in the stream to determine how the...
Also, maybe something like the ID3v2 parser for mp3 tags might be useful as a reference. There is a rather large, hetereogeneous and growing number of ID3 tags, so maybe...
Forgot the link: https://github.com/zsau/id3
That is great to hear! Will you publish the BACnet parser in the future? I would love to link to it as a more complex example. Regarding your questions: I'm...
A pure data representation of codecs might be useful. I didn't have the need yet. Some codecs like `header` which use custom functions might be hard to represent. It would...