little things

55 posts under this tag.

The First Rule of Mixing Music with the Predixis Mixer 2
0
0
6
Mar
18

  1. Given a sufficiently complete Beatles discography, every song will include at least one song from the Beatles among its best-acoustic-match recommendations.

(Read more on the wonderful Predixis Mixer.)

Language pondering 2
0
0
6
Mar
11

Extracted from a dialogue with Chepe.

How would you say “unos novios comiendose a besos” in English? What’s the English phrase for “comiendose a besos”? Do you realize there’s no ready equivalent of “novios” in English? There’s “boyfriend” and “girlfriend” but no “novios” (a word for a gf and her bf). Couple is probably the best ersatz but there are subtle differences. “Couple” hints of a more formal, older-people affair than “novios.” It’d feel strange to call two tweens in love a couple, but it’d be perfectly normal to call them “novios.” If I were to announce that “Bere y yo ya somos novios” I wouldn’t use the stiff and over-formal “Bere and me are now a couple”, I’d say “Bere and me are now officially a couple.” Now, in what dictionary do you find that officially is often used to de-emphasize formality?

Hoy tengo ganas de ti... 2
0
0
6
Feb
24

...es el titulo de una cancion de Miguel Gallardo. La cancion es buena pero a mi lo que me encanta es el titulo. Es mi eleccion para ristra de 5 palabras mas romantica (y cachonda) de la lengua Española. En Frances, mi delfin es aquel inovidable (y fatalmente ironico) Je veux baiser votre âne! de Vince Cassel a Monica Bellucci en Irréversible (al que ella responde, sonriendo y tambien con 5 palabras, Tu es un tel romantique!)

Aunque ahora que lo pienso, siendo el campo de juego ristras (y no solo frases), preferiria: lima, axila, cadera, media-mañana y pupila.

En que cosas divago… supongo que yo tambien ando en busca de una amitié amoureuse.

A new way to search images: by arrangement 2
0
0
6
Feb
18

This is fantastic: a cool website that specializes in selling royalty-free stock photos, iStockPhoto, has created a new way to search through their whole catalog: by arrangement. They call it ColorSpace, and is wonderfully simple, yet powerful. It consists of a 3×3 grid of squares. You change the color of each square to indicate what you want in that area: green, if you want it clear; red, if you want it occupied; grey, if it’s the same to you.

It works. If, for instance, you search for “flower” with this colorspace, , you get:

Or if you search for “sky” with this colorspace, , you get:

The star here is not only the algorithm but the clever, information-design interface.

Overall, it’s a very impressive site, its web developers really do care about it, and that’s always refreshing. The weirdest thing is that they’ve convinced me that selling royalty-free stock photos on the web makes perfect sense…

An each function for JS 2
0
0
6
Feb
18

Since Javascript 1.2 and later there has been a cool and very powerful literal syntax for functions:

var sum = function(x, y) {return x+y}

A couple of weeks ago I found an interesting use of this syntax. Missing Ruby’s wonderful each function, I decided to implement something similar in JS, and, after some experimentation, ended up with this:

function each(a, f) { for(var i=0, l=a.length; i<l; i++) f(a[i]) };

The function syntax comes in handy when you use this each:

each([1, 2, 3, 4, 5], function(e) { alert(e) });

It may not be as satisfying as Ruby’s each, but it’s quite useful.