by ernesto-jimenez on 25/1/2013

Beautiful visual poem (via @blanca_tp)

by ernesto-jimenez on 11/4/2012

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.

Automatically reload Chrome when you change your rails app

by ernesto-jimenez on 02/4/2012

by ernesto-jimenez on 15/3/2012

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.

by ernesto-jimenez on 24/2/2012
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

by ernesto-jimenez on 28/11/2011

Beautiful compilation of 1 second long videos

by ernesto-jimenez on 03/3/2011

remote-js

debug mobile web pages easily with a simple JavaScript remote console.

by ernesto-jimenez on 16/2/2011

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

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/2011

I 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.

by ernesto-jimenez on 14/12/2010

Add latency to localhost »

aitorgarciarey:

To simulate a far away server, add RTT time to the localhost device.

(Source: aitorgarciarey)