2010 03 02 ie cursed recursion
window.recurse = function(times) {
if (times !== 0)
recurse(times - 1);
};
recurse(13); // stack overflow at: 0
@tlrobinson of 280 North, Cappuccino, Narwhal and CommonJS points out some lovely IE behavior in this great blog post.
WTFIE should really be a blog of its own.