John Lenz

Results 16 comments of John Lenz

Another option is similar to what sapling does. Sapling has an [interactive smartlog](https://sapling-scm.com/docs/addons/isl) which when run from the command line starts a web-based graphical interface, which is designed for use...

Only workaround I have found is to convert to SortedDictionary. ShouldBeEquivalentTo uses the IEnumerable instance to compare but Dictionarys don't have a stable enumeration order. Using SortedDictionary ensures that the...

This doesn't work if the schemas are nested inside an object, since the intermediate object doesn't have the `in` and `out` properties. For example, say with codecs like ```typescript export...

I made a unit test. When single-stepping through the unit test in the debugger, I made a few more observations. * You can bypass the error by changing the maximum...

Actually, maybe it is the parameter passed to `getWrittenDocumentsFromBulkWriteResponse`, perhaps this line https://github.com/pubkey/rxdb/blob/3ab3124eed2cf952c58ebb0b26955a3d3879cff2/src/replication-protocol/checkpoint.ts#L120 should instead be `state.input.metaInstance.primaryPath` since we are trying to get whatever was written to the meta instance.

I also tried to work around the check of Sec-Fetch-Dest by adding ```typescript const newHeaders = new Headers(req.headers); newHeaders.set("Sec-Fetch-Dest", "document"); var req = new Request(req.url, { method: "GET", headers: newHeaders,...