I'm using Twitter now. So far it's pretty fun. I like being notified when interesting things happen (IM, twitter, new email). It's made me wonder whether it's feasible to create one event log to rule them all.
This event log would live in the cloud. Anything could notify the cloud that something "interesting" happened. It records that event in the log. For example, my tweets would automatically notify the cloud. When I leave my desk, it'd notify the cloud. As my phone detected a new geolocation, it'd notify the cloud. I'd soup up my toaster to notify the cloud when the toast popped up, etc.
Now what if it were programmable? I'd notify the cloud with a special event containing a small program and some conditions to trigger that program. For example, to automatically send me an instant message on Google Talk when the toast is ready:
"event" : "mndrix's toaster popped up",
"action" : "xmpp_send('mndrix@gmail.com', 'Your toast is done')",
(The way of specifying event patterns needs some thought). This is kind of like JoCaml's concurrency model: events matching certains patterns trigger code. In the example above, events come into the cloud and that action just sits there doing nothing. As soon as the "mndrix's toaster popped up" event arrives, the cloud notices that it matched the precondition I specified, and it triggers my code.
If the service had a way to run a webhook, you could run arbitrary code when interesting events (or sequences of events) occurred. The event log in the cloud basically becomes a switch board where events come in, they're matched against patterns and new events are generated (infinite event loops, anyone?)
I think there's potential for interesting applications once you have access to tons of events outside your own personal sphere. For instance, to create an impromptu IM meeting once everyone is available: "if my wife and brothers are available on IM and I'm not on the phone, create a chat room and invite us all". The condition is composed of the state of several people (inferred from previous events in the log). The action could be implemented with some XMPP scripting.