A lire

TwitterFacebook
Get flash to fully experience Pearltrees

Bush.doc

Vannevar Bush http://sloan.stanford.edu/mousesite/Secondary/Bush.html
Daniel, What’s Your Deal? For about four years I’ve been using Textmate almost every day. I’m very fast with it. I’ve always thought about switching over to VIM or Emacs but I have been scared of losing my speed.

Daniel Fischer's Blog - A Starting Guide to VIM from Textmate

http://blog.danielfischer.com/2010/11/19/a-starting-guide-to-vim-from-textmate/

Writing efficient CSS selectors

http://csswizardry.com/2011/09/writing-efficient-css-selectors/ Efficient CSS is not a new topic, nor one that I really need to cover, but it’s something I’m really interested in and have been keeping an eye on more and more since working at Sky.
Whilst not new by any means, memoization is a useful optimization technique for caching the results of function calls such that lengthy lookups or expensive recursive computations can be minimized where possible. The basic idea is that if you can detect an operation has already been previously completed for a specific set of input values, the stored result can instead be returned instead of repeating the operation again. Some of the problems memoization can help optimize include: recursive mathematics, algorithmic caching of canvas animation and more generally, any problems which can be expressed as a set of calls to the same function with a combination of argument values that repeat. http://addyosmani.com/blog/faster-javascript-memoization/

Faster JavaScript Memoization For Improved Application Performance