Download DB2 Upgrade DB2

Everything that is, and ever will be, to be improved by Google Wave

May 30th, 2009 by Leons Petrazickis

Find the hour to watch this video. They get everything really, really right. Plus, it looks to integrate well with everything. I look forward to using Google Wave for all my personal communication, as well as using a private install of Google Wave at IBM for all my business communication.

Posted in ajax, video, google, web 2.0 | No Comments »

setTimeout() and setInterval() not working

May 26th, 2009 by Leons Petrazickis

The two javascript functions above are very useful. The first one executes something after a set delay, and the second executes something at regular intervals. The syntax is very similar.

var time = 2000; // 2 seconds
window.setTimeout(function() { alert(‘Yay!’); }, time);
window.setInterval(function() { alert(‘Woo!’); }, time);
 

Unfortunately, they weren’t working for me earlier. It turns out I wasn’t fully-qualifying them. Specifically, I was calling setTimeout() rather than window.setTimeout(). The latter works.

Most examples use the abbreviated form, which consistently doesn’t work for me.

Posted in javascript | No Comments »

Monty Widenius forks MySQL

May 14th, 2009 by Leons Petrazickis

Looks like the original cofounder of MySQL Inc, Monty Widenius, is forking MySQL. He’s going to try to merge with all the other forks, but I suspect that Oracle will not be interested in merging something they just bought with this particular fork. Especially since it will not support InnoDB, an alternate MySQL engine bought by Oracle some time before they bought regular MySQL.

Posted in links, mysql | No Comments »