Vincent Rischmann
Vincent Rischmann
Here's the error: ``` Install the project... -- Install configuration: "Release" -- Installing: /home/vincent/dev/devtools/zig-bootstrap/out/host/bin/zig -- Set runtime path of "/home/vincent/dev/devtools/zig-bootstrap/out/host/bin/zig" to "" -- Installing: /home/vincent/dev/devtools/zig-bootstrap/out/host/lib -- The C compiler identification...
Hello, I made an RPM spec file to build the latest fzy commit for Fedora (since it's not packaged in fedora), you can find it [here](https://github.com/vrischmann/rpm-fzy). There are build instructions...
**Describe the bug** When setting a read deadline on a connection [batch.ReadMessage](https://godoc.org/github.com/segmentio/kafka-go#Batch.ReadMessage) sometime fails with a ErrUnexpectedEOF. I based my code on [reader.read](https://sourcegraph.com/github.com/segmentio/kafka-go@master/-/blob/reader.go#L1914-1975), my goal is to make the equivalent...
Initial work on virtual tables. The goal is to be able to easily create virtual tables using Zig and expose as little as possible of the C-ism of the raw...
We can now build loadable extension but there's no documentation, we should write some.
We can now implement virtual tables but there's no documentation and it's not self-explanatory so we should write some.
### Zig Version 0.11.0-dev.3312+ab37ab33c ### Steps to Reproduce and Observed Behavior sqlite has the following in its header: ``` typedef void (*sqlite3_destructor_type)(void*); #define SQLITE_STATIC ((sqlite3_destructor_type)0) #define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) ``` I'm...
Modify the grammar so that `style_element` is composed of a `style_tag_start` and `style_tag_end` just like a regular `element` is. So for example instead of having this: ``` (style_element (attribute name:...
Investigating #22 and implementing #23 made me realize we have some inconsistencies between `$.element`, `$.style_element` and `$.script_element`. An standard element creates these nodes: ``` (element (tag_start name: (element_identifier)) (tag_end name:...
### What is the issue? Hi, I'm writing an application that uses the `io_uring` Linux feature. It looks like `io_uring` is not supported by default because I'm running into permission...