Archive | April, 2007

Fotoproyecto: Beyond

26 Apr

Pues nuevo proyecto en el portfolio, que ya tocaba actualizar!

De título Beyond es un nuevo acercamiento a los desenfoques y geometrías. Son once fotos (poquitas, para que no os aburráis mucho viéndolas :P), en la mayoría de las cuales no hay un sujeto claro e identificable, sino una conjunción de pequeños detalles enfocados junto a formas desenfocadas, que buscan una inspiración “no convencional” en el espectador (vosotros ;))

Espero que os guste y como siempre, cualquier opinión o crítica acérrima será bienvenida!

Album cover

Photography: Beyond

Interstella 5555

16 Apr

Interstella 5555: The 5tory of the 5ecret 5tar 5ystem es la realización visual del album Discovery, de Daft Punk. Básicamente es una película de animación que narra la historia del secuestro de una banda de pop interstelar, con un trasfondo a modo de analogía con la industria de la música. Cada canción del disco de Daft Punk es un capítulo, no hay diálogos y muy poquitos efectos de sonido.

La compañía de animación japonesa Toei es la encargada del asunto, y en concreto el supervisor gráfico es Leiji Matsumoto, que os sonará más si os digo que fue el creador de la serie Capitán Harlock. De hecho, ya os daréis cuenta cuando veáis un poco la estética que sigue el film.La banda de pop interstelar: The Crescendolls

Sin duda, merece la pena muy y mucho su visionado, y aprovechando que está enterita en Video Google…

Interstella 5555: The 5tory of the 5ecret 5tar 5ystem.

Reticulator

12 Apr

Rescued from the total darkness of my hard disk, a little experiment in Python I made a couple of years ago…

The Reticulator!

Basically is a web tool to make modular grids in CSS. It has some minor bugs but as said, it was a little experiment, so we’ll have to live with them. The CSS generated is mostly cross-browsing (at least, it was :D) and the grid positions are based on position:relative not position:absolute.

Source code is availablehere (it works as a command line tool also).

WordPress and HTTP Basic-Auth

9 Apr

This post is for those of you with the same problem, say thanks to Google!

Problem: With WordPress and permalinks enabled, if you protect a folder or a file with .htpasswd, you’re going to get a nasty 404 Not Found.

Solution: Just add to your .htaccess file the following lines:

ErrorDocument 401 /[path_to_the_file]/myerror.html
ErrorDocument 403 /[path_to_the_file]/myerror.html

When /[path_to_the_file]/myerror.html is an existant static file in the server.

Explanation: Seems like the HTTP Basic-Auth returns a 401 Unauthorized to ask for the password. This got translated into a ErrorDocument directive, and if you haven’t properly set it up in your .htaccess (for example, pointing to some non-existant file), then it will be finally got by WordPress, which will return a 404 error.

Conclusion: Madness is here! I don’t understand how this isn’t better documented. Hope this helps!