Follow me
Tweets
- Subscribed for @lumosity . Pretty fun 21 hours ago
- WTF Restaurant, Bangsar doing really well, standing room only 1 day ago
- Star Trek Into Darkness - cough up for IMAX 3D, warp drive is spectacular 1 day ago
- @khailee Congrats on the merger mate 6 days ago
- Working with angular has been an absolute joy. Sencha should ditch ExtJS as the base nd port over to use angular :-) 1 week ago
-
Recent Posts
Archives
Monthly Archives: February 2010
On the ephemeral nature of delete
Delete in JavaScript is a peculiar beast. Witness: typeof x; // outputs undefined delete x; // outputs true even though x is not defined typeof x; // outputs undefined So, it is possible to delete an undefined variable in the … Continue reading
Posted in Technology
Leave a comment
Null is not undefined
A common mistake amongst new (and even experienced) JavaScript developers is confusing the null object in JavaScript with undefined. In fact, I’m willing to bet that most are not aware that the undefined keyword exists, much less that it is … Continue reading
Posted in Technology
Leave a comment
Hard Drive Space
My first computer did not have a hard drive. We used 5ΒΌ-inch inch floppy disks, swapping them in and out, to get a program running. Occasionally, a floppy disk would bork and we’d have to restart the entire process. Floppy … Continue reading
Posted in Technology
1 Comment