Miguel de Benito Delgado
Miguel de Benito Delgado
## Changes This PR * Adds the [pairwise](https://rxjs.dev/api/index/function/pairwise) operator. It's equivalent to `(buffer 2 1)`, except for the type returned * Adds a couple of gitignored paths * Quickly mentions...
This PR adds support for [startWith](https://rxjs.dev/api/index/function/startWith) and [endWith](https://rxjs.dev/api/index/function/endWith). The implementation allows for an arbitrary number of values to be passed as args, as in ```cljs (->> (rx/from [3 4]) (rx/start-with...
This PR * Extends `from-event` to accept an optional third arg with options for `addEventListener`. This is useful e.g. to listen to [wheel events in a non-passive way](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#passive) so as...
### Kuzu version v0.11.2 ### What operating system are you using? Ubuntu 24.04 ### What happened? With the following data: ```cypher CREATE NODE TABLE Person(name STRING PRIMARY KEY, occupation STRING);...
**Kuzu v0.11.2, Ubuntu 24.04** With this data: ```cypher CREATE NODE TABLE People(name STRING PRIMARY KEY); CREATE REL TABLE LivesWith(FROM People TO People); CREATE (a:People {name: 'A'}); CREATE (b:People {name: 'B'});...
**Kuzu v0.11.2, Ubuntu 24.04** Create a db with a duplicate edge ```cypher CREATE NODE TABLE Person(name STRING PRIMARY KEY); CREATE REL TABLE LivesWith(FROM Person TO Person); CREATE (p:Person {name: 'Alice'});...
**Affected version** Kooha 2.3.0, ubuntu snap **Bug summary** Failed to start recording Caused by: 0: Failed to create session 1: Failed to call `CreateSession` with parameters: Variant { ptr: 0x654519a0f3a0,...
### Summary This PR fixes a couple of fields in two malli schemas, as I've found them to be in actual files. ### Checklist - [x] Choose the correct target...
As far as I can tell, currently the only branch in `udump()` that allows serialization of custom types goes through `TaggedElement`. One must subclass this and implement `__str__()`. IMO this...
This PR fixes the PLY regex for HEX_INTEGER to accept lower-case hexadecimal digits. Not doing so results in hex numbers being split as separate integers and symbols