December 2009
11 posts
1 tag
1 tag
On commit messages →
A list of things you should do when committing, and why you should do it.
1 tag
1 tag
Having been struck by a 150-ton meteorite, Henry has to adapt to living precisely ninety-one centimeters from himself.
1 tag
π seconds is a nanocentury
– Tom Duff
2 tags
I am an Islamic scholar who studied in Mecca. I... →
1 tag
Like every English major, I once got all giddy over a musty aphorism from one of...
– Scott Raab in “Dear God, what have they done?” (Esquire, January 2010)
2 tags
Quis custodiet custodes ipsos? →
Bruce Schneier on the value of privacy.
1 tag
3 tags
On the modified prototypes in JavaScript
I wrote a small function that can be used to retrieve links to the unmodified built-in methods (useful when you are running code in the environment where built-in objects’ prototypes were modified).
var getbuiltin = function(obj, fn) {
var iframe, func;
iframe = document.createElement('iframe');
iframe.style.display = 'none';
document.body.appendChild(iframe);
func =...