Beautiful visual poem (via @blanca_tp)
9 year old Caine Monroy, who built an elaborate cardboard arcade inside his dad’s used auto parts store, is about to have the best day of his life.Beautiful film. Amazing kid.
Información y consejos prácticos para venir a vivir a Londres »
Últimamente damos tantos consejos para venir a vivir a Londres que Blanca ha decidido hacer su primera página web recogiendo esos consejos.
Si estás pensando en venir a Londres, visita memudoalondres.com.
Si tenéis algún consejo podéis encontrar con Blanca en twitter como @blanca_tp.
At times of change, the learners are the ones who will inherit the world, while the knowers will be beautifully prepared for a world which no longer exists.
Alistair Smith
Beautiful compilation of 1 second long videos
debug mobile web pages easily with a simple JavaScript remote console.

If you code in JavaScript with TextMate make sure to install JavaScript Tools TextMate Bundle.
This bundle will, among other things, run JSLint each time you save a file and show you the amount of errors and warnings in that file.
Install it with just two lines and enjoy it :)
git clone git://github.com/johnmuhl/javascript-tools-tmbundle.git javascript-tools.tmbundle
open javascript-tools.tmbundle
Twitter Stream Echo
by ernesto-jimenez on 05/2/2011I wanted to code several scripts that would consume the Twitter Streaming API to get different stats with live data.
The Rate Limiting for the streaming API only allows one connection per IP address and blacklists IPs doing excessive connections:
Each account may create only one standing connection to the Streaming API. Subsequent connections from the same account may cause previously established connections to be disconnected. Excessive connection attempts, regardless of success, will result in an automatic ban of the client’s IP address. Continually failing connections will result in your IP address being blacklisted from all Twitter access.
I coded a small TCP service establishes one single connection to the Twitter Streaming API and echoes all the tweets to any client connected to the socket at /tmp/tweets.sock.
It allows you to consume the streaming API from several scripts in your computer with one single connection to Twitter and being able to restart the scripts without reconnecting to Twitter.
You can find the Twitter Stream Echo service in github.
To simulate a far away server, add RTT time to the localhost device.
(Source: aitorgarciarey)