Lambda the Ultimate

inactiveTopic Spike in erlang
started 5/3/2004; 1:02:25 PM - last post 5/4/2004; 1:00:45 AM
Ehud Lamm - Spike in erlang  blueArrow
5/3/2004; 1:02:25 PM (reads: 172, responses: 1)
Spike provides a distributed clipboard application. Seems like a great idea for a cool erlang-based application.

Luke Gorrie - Re: Spike in erlang  blueArrow
5/4/2004; 1:00:45 AM (reads: 132, responses: 0)
I've written a little server for sharing text in Erlang. One person is allowed to modify at a time and there is an explicit "I'm taking over modification" message.

It comes with an Emacs client that uses it to share an Emacs buffer between many people on the network. It works okay over high latency because all updates are asynchronous (with undo if somebody else "takes over" write access before your updates arrive).

Code is here if anyone is interested. I've been meaning to make a peer-to-peer Emacs version now that GNU Emacs has been extended to accept incoming TCP connections. But, so many hacks, so little time.