November 2011
5 posts
4 tags
Exposé quick tip
Does Mac OS X Exposé ever just stop working on you for no apparent reason? It happens to me regularly. Haven’t been able to find out why this happens yet. BUT, here’s how you quick fix it:
Open a terminal and use:
killall Dock
Exposé should work again. If you keep a terminal open all day like me, you can reserve a tab just for repeating this command again and again. Sigh.
1 tag
1 tag
John Resig - Simple “Class” Instantiation →
Interesting post that has some counter-points to my previous link to Ben Cherry’s module pattern post. One of the gripes of the module pattern enthusiasts is the need to use the keyword “new” with class instantiation when using the more traditional prototype style for writing OO javascript; Resig’s post also addresses this.
1 tag
Adequately Good - JavaScript Module Pattern:... →
Interesting code style. I was particularly interested in the points about the ability to perform non-blocking parallel downloads of JS files.