YUI Theater

Posted by mde [ Thu, 07 Dec 2006 06:02:00 GMT ]

I've just upgraded to Ubuntu Edgy, and it's kind of eerie now having Web video that works in most places.

Some very nice video tutuorials over at the YUI Theater . I'm particularly enjoying Professor Crockford's talk on Advanced JavaScript . Always nice to see yet another way to create a singleton for namespacing in JS:

   var foo = function () {
    return {
        bar: 'bar',
        baz: function () {
            this.bar = 'foo';
        }
    };
}();
  
 

My favorite quote so far: "... and pseudoclassical inheritance is for elderly programmers."