I may be skeptical about Twitter, but it does have a lot of buzz at the moment. So - I've created a small domain model that can create objects from the XML status file that Twitter generates. If you want to try it out, load Twitter from the Public Store, and then try this:
client := HttpClient new.
contents := (client get: 'http://twitter.com/statuses/public_timeline.xml') contents.
parser := XML.XMLParser new.
parser validate: false.
xml := parser parse: contents readStream
^Twitter.Constructor from: xml.
That's all it does right now - if you inspect the result, you'll get a collection of Status objects (each with a user). Michael and I intend to build a UI for it (the goal being a small notification application). If you're interested in helping out, go ahead and load that and have a look.
Technorati Tags:
smalltalk, Twitter