Programming Jabber. Just finished reading DJ Adam's
Programming Jabber. Jabber is an interesting but not revolutionary (IMO) technology. It's an Instant Messaging protocol like AIM, ICQ or Microsoft Messenger. What makes it different is that unlike those proprietary protocols you can run your own Jabber server (there's both open-source server and commercial ones). Jabber also puts emphasis on being a p2p platform instead of just limited IM service. The book is a good introduction to Jabber, its protocol and kinds of applications that can be built on top of it. Good if only to stimulate your thinking.
Stuid coding mistake of the day. Spent a day figuring out why debug build worked differently than release build. What's wrong with this code:
bool FMyFunc(void) {...}
...
assert( FMyyFunc() );
In non-debug build FMyFunc() will never be called. Aaargh...