Neftaly Hernandez

Results 10 comments of Neftaly Hernandez

Hey! There's a changelog on [the 'releases' tab](https://github.com/redbadger/immutable-cursor/releases). Basically, 2.x.x was an update to make the API the same as the original FB immutable-cursor API.

Any chance you'd consider adding a "good enough" solution to [@automerge/automerge-repo](https://github.com/automerge/automerge-repo)?

Oh thats awesome, sorry I have only been following this issue and hadn't seen that!

Ok, from my understanding, to use Ephemeral Data: * Create a regular repo, with a channelname prefixed with "m/" [Repo L63](https://github.com/automerge/automerge-repo/blob/060031ad2a48dde645139c23fee51ec64e6a026c/packages/automerge-repo/src/Repo.ts#L63) * Broadcast data (object/primitives) using `repo.ephemeralData.broadcast(channelId, data)` * Subscribe...

I'd like to talk to workers without the structured clone overhead or sharedarraybuffer burden! I'd also like to do the CLJS interop things, in order to have access to clojure...

A third option might be to do data marshalling, ie embedding the type information in the immer data. For example DynamoDB has a special "DynamoDB JSON" which describes **M**aps, **L**ists,...

For the second option, would it be best to use a subset of JSON schema to describe the data shape? It would be great to be able to use existing...

I have done a bit of work on a marshalled data fork and now both reading and writing work properly, note yarray/ytext/yxml aren't implemented yet. https://codesandbox.io/s/immer-yjs-marshalled-2way-rxsh7r Since type information is...

Just an update, I am continuing development at https://github.com/probability-nz/y-immutable I've "crossed the fence" and am now working exclusively on getting [Automerge](https://github.com/automerge/automerge-repo) to feature parity with Yjs :)

[Flyweb](https://flyweb.github.io/posts/2016/11/01/introducing-flyweb.html) also uses mDNS: ```c++ #include #include #include ESP8266WebServer server(80); void handleRequest() { String html = "Hello FlyWeb from ESP8266!"; server.send(200, "text/html", html); } void setup() { String accessPointName =...