-
Recent Posts
Github badge
StackOverflow badge
How to read this blog
This blog should be read like all other specifications. First, it should be read cover-to-cover, multiple times. Then, it should be read backwards at least once. Then it should be read by picking random sections from the contents list and following all the cross-references.Promote JS
Category Archives: geek
Squeeze more readable space out of Google Reader’s new layout
I am not happy with the removal of Google Reader social features. I really enjoyed discovering new feeds following people.
Anyway, I don’t mind the new look but it leaves too little readable space. A couple of years ago I blogged about how to use Firefox’s userContent.css to optimize the layout. Continue reading
Install PIL with Jpeg support on Ubuntu Oneiric 64bit
I am posting this because it took me ages to figure out how to solve this one.
I could not get PIL to compile with JPEG, Zlib or freetype support on my virtualenv. I am using Ubuntu Oneiric Beta1 on a Lenovo Thinkpad X220. That is a 64bits installation. Continue reading
Show http:// protocol in URL bar for Firefox 7+
Firefox 7 beta was just rolled out yesterday to users on the Beta channel (that would include me). One of the various improvements and changes is that now Firefox follows Opera and Chrome in hiding the http:// protocol prefix from … Continue reading
Toda regla tiene una excepción? – La paradoja de la excepción
La paradoja de la excepción: Si toda regla tiene una excepción, entonces, la excepción a la regla “toda regla tiene una excepción” sería una regla sin excepciones. Por lo tanto, no toda regla tiene una excepción.
Posted in es, funny, geek
Leave a comment
Disqus coments UI
I really like Disqus comments service. But I wish they had a simple UI alternative, as I don’t want to show that much text/options in my screen. This is what it looks like by default: I would hide the “suscribe”, … Continue reading
Mogrify using too much memory
I wanted to shrink pictures a folder with thousands of files. They were unnecessarily huge. So I made a script to resize them. Imagemagick’s mogrify takes all the RAM it can in the system to handle huge files, making the … Continue reading
Cosas nuevas en Firefox 4
Hoy salió a la luz Firefox 4 y trae muchas cosas nuevas, entre las más importantes: * Soporte HTML5 * Motor Javascript más rápido * Firefox Sync * Tab panorama * Nuevo look * Complementos y temas que no necesitan … Continue reading
Posted in es, firefox, geek
Leave a comment
Magenta CSS
When setting a background color always set a foreground color Continue reading
Happy PI day!
I’ve got to learn my decimals again, shame on me!
Posted in en, geek, math
Leave a comment
Compare files in two directories
This is how you do it: $ diff < (cd /path/one/ && find .)
