The easiest way to example SyncPad is "Facetime for drawings". It's basically a whiteboard/sketchpad app but for the first time is tied to a remote central server that let people share live whatever they are drawing on the app (you can also import pictures and other stuff like that). Because we know that not all the people you'd like to share your sketches with may not have an iPad (or maybe they don't want to spend $10), we also made a read-only version for iPad and a browser version (accessible visiting http://mysyncpad.com/roomname). The back-end runs on Erlang + Redis on EC2.
Very cool! Great presentation, I really like the design on the web (haven't had a chance to test it out on the ipad yet).
I've been working on the exact same idea as a minor feature for a larger webapp, although with node.js and redis.
Out of curiousity, how much are you using redis for working with images? I've found it to be great for quickly dumping objects in (hashes, strings and lists mostly), but I'm curious how much you would actually use redis in an app like this. Surely you aren't dumping entire base64 encoded string representations of a room's current image in redis, right?
We actually started with Node + redis, but when we were running load tests, we were having issues with memory consumption. I think, but I am not certain it was due to garbage collection around JSON.parse[1].
We ended up re-writing it all in erlang and it solved our problem much better. Erlang is much better suited for multicore, binary, and seemingly memory handling. Frankly, I really enjoyed writing it in erlang as well, but prototyping in Node.js worked out really well.
Regarding redis, we're actually storing the base64 string (list in erlang) as binary. This sounds crazy since we could just store the binary file, but since we'd have to encode it as base64 for all the connected clients receiving the data. This actually lowers CPU usage in the long-run. The image is only cached in redis for a period of time then flushed (or in the future persisted elsewhere) anyhow.
If you're interested in using our server for your feature, just let me know @roder and I'll contact you. Maybe we can work something out.
Actually I do remember it (and thanks for making feel old now...) and I still use Coda sharing features that is build on them... but they weren't heavily advertised on TV as Apple's Facetime.
Good to know, we are definitely capable of going that direction. This really release is good for gauging interest and getting feedback. MVP. Thanks for your feedback
Looked into a ios app, but users didnt seem to like it after the first few trys do to the inability to do complex drawings. (Drawing with your fingers isnt easy)
Not sure why you're being downvoted, (aside from the fact that this doesn't look very similar at all), but this looks suspiciously like some of mrdoob's javascript canvas examples.