-
Include QBE backend instead of the current custom one. This will bring pros like targeting multiple architectures (amd64, aarch64, riscv64) and optimization. But it will require rewriting the entire p…
-
My header:
```c
#ifndef LIBSQL_H
#define LIBSQL_H
#include
#include
#include
typedef struct libsql_error_t libsql_error_t;
typedef enum {
LIBSQL_CYPHER_DEFAULT = 0,
LIBSQL…
-
I have a grammar that parses mathematical formulas. It uses semantic predicates to steer parsing based on a dynamic symbol table. (I.e. is this string a variable or a constant or a set symbol etc...) …
-
I think it would help readability and maintainability to split the DSL parser and the code generator into separate libraries. Currently, when you're browsing through the code, it's hard to keep track …
-
I was attempting to return nice error responses for certain errors. For example i'd like to return a 408 when a timeout occurs. However it seems to also close the socket.
While testing this out I ran…
-
-
Hi all,
trying to connect Aqara QBKG38LM switch but after joining zigbee network homebridge-zigbee-nt start to restarting homebridge continously. Here is log:
```
[17/10/2024, 01:11:10] [ZigBee…
-
Would it be a good idea if I include a simple ini parser/generator? I found a interesting one here https://github.com/mcmtroffaes/inipp/
For the purpose of writing/reading the key action maps and m…
-
Would it make sense to refactor the OSM API XML parsing & constructing code in the `osm/` dir into a separate library? It seems it would be highly useful to anyone who may want to implement a custom …
-
We're doing a lot of manual crufty stuff with substrings and parentheses matching to parse out the require format strings. We should probably switch to some formal grammar for the access log format st…