Seph Gentle
Seph Gentle
Oh I like this! I hadn't thought of that, and I think its very clever. I wonder how this would interact with git style asychronous editing - like, if I...
I'm going to suggest automerge goes the other way. I think automerge should only ever support times at a second resolution. (Or maybe 10 second resolution). My reasons are: 1....
Example: ```javascript const msgpack = require("msgpack-lite") const net = require('net') net.createServer(socket => { const encodeStream = msgpack.createEncodeStream() encodeStream.pipe(socket) // Send 'hi' to the socket every second setInterval(() => encodeStream.write('hi'), 1000)...
Yeah that'd do the trick!
Jumprope / diamond types (CRDT) author here. We ended up having a discussion about this in a [recent reddit thread](https://www.reddit.com/r/rust/comments/11cdi6b/comment/ja4l8i0/?utm_source=reddit&utm_medium=web2x&context=3). A few comments: > Given all that, I think sticking...
> There is an https://github.com/rust-lang/regex/issues/425 on the regex crate to allow regex on streams, but the maintainer has said that even if that is implemented it will not be able...
... I'm currently working through a couple of changes in the 2.0 branch to make browserchannel use node streams & closer fit the websocket API. Hold off on porting it...
I ported the client to [closurey javascript](https://github.com/josephg/node-browserchannel/blob/javascript-bcsocket/lib/bcsocket.js) in a branch. It has a couple of bugs - and generally I'm not super happy with the result. It looks a lot...
Should do.
Yep looks good now. No idea what the problem was, but it looks like its been fixed! (And congratulations on the release! 🎉) ``` automerge-paper: Processed 259778 edits in 211.377667ms...