I've been very busy these days with university homeworks (unfortunately written in
Jess and GPSS - expert systems etc) - will be back soon with interesting stuff.
Meanwhile - the last problem I had to solve was designing a synchronization system over a database table i.e. many clients editing it and synchronizing its data in real-time. Currently the best solution I've been thinking at is using a "last modification" timestamp for each record and polling a query from a timer. Now - this obviously doesn't catch the deletes so I must also prepare another table where a delete trigger writes the deletion timestamp.