Tag: Tech

  • Exposé trick: The tab key

    Note: if you’re running Mac OS X, read on. If not, you can skip this entry. So I just discovered a neat trick in Exposé I hadn’t read about before, so I thought I’d post about it. It’s actually really simple. So, you know how Command-tab brings brings up a centered list of icons representing…

  • Web 2.0 Bullsh*t Generator

    Need to bamboozle a client into feeling left behind? Look no further than the Web 2.0 Bullsh*t Generator. (via daringfireball)

  • Woes implementing org.xml.sax.ContentHandler

    A word to those doing SAX-based XML parsing and implementing the org.xml.sax.ContentHandler interface: Don’t assume all the characters between a “begin” and “end” tag, e.g. given the following XML snippet: <mycoolelement>My precious data</mycoolelement> …I’m talking about the “My precious data” part — are returned in a single call to characters(). Yes, most of the time,…