Sam Van den Vonder
Sam Van den Vonder
I noticed that 3 math glyphs that I need were missing from Source Code Pro, namely ``` U+222A ∪ union U+2208 ∈ element U+220B ∋ suchthat ``` Interestingly these glyphs...
This issue was already discussed on Automerge's [Discord](https://discord.com/channels/1200006940210757672/1217053460164509737), but I'm adding it here just to keep track. It seems like documents don't sync properly in specific circumstances. Pardon the weird...
I'm doing property-based testing for a project of mine, which involves generating random objects that are turned into an Automerge document and checking whether some things (about my code) hold....
**Describe the bug** Deno's [std](https://deno.land/[email protected]?doc)/[http](https://deno.land/[email protected]/http)/[server.ts](https://deno.land/[email protected]/http/server.ts)>[serve](https://deno.land/[email protected]/http/server.ts?s=serve) is deprecated and will be removed in version 1.0.0. Instead they suggest to use [Deno.serve](https://deno.land/[email protected]?s=Deno.serve). This library currently does not seem to be compatible with...
It seems like automerge-repo currently cannot be used with Deno natively, nor via Deno's npm compatibility layer. When trying to run it natively, Deno complains about all of the imports...
### Description After merging 2 documents `Automerge.diff` can generate a `conflict: true` put patch, but when trying to find the conflicting values in the document via `Automerge.getConflicts`, it will return...
I was trying out the [next.changeAt](https://automerge.org/automerge/api-docs/js/functions/next.changeAt.html) function (mostly exploring how to use it), and the documentation suggested that I can use `changeAt` to create a fork of a document, which...
I ran into an issue where I mistakenly stored a document's heads obtained through Automerge Repo (via `docHandle.heads()`), which I later used as if the heads came from Automerge (e.g.,...
I am trying to apply changes in one document to a different document. I use `Automerge.diff` to obtain a list of patches, and `Automerge.applyPatches` to apply them to the other...