Posts from 2012/12

This seems to make Cappuccino faster...

December 19, 2012 00:00

My lack of knowledge about Cappuccino's implementation details may play a role, but

window.setTimeout = window.setNativeTimeout;

Seems to make my Cappuccino apps more responsive. ...

Read post

The Identity of an Array

December 12, 2012 00:00

Given two arrays of integers: a and b, what does (a == b) mean?

Most of us will say, it depends on the programming language you are using, and that is true. In the case of C, it means a and b are the pointers to the start of the same array. In Java and C# it means the arrays are Reference Equal, b...

Read post