4 semanas de música en el ipod

Cuando nos preguntan cuánta música tenemos, solemos contestar con el número de canciones que tenemos. Si queremos que parezca más, podemos decir el tiempo que tardaríamos escuchándolas una detrás de otra sin descanso, ya que lo suele calcular el reproductor.

Pero… ¿Cuánto tiempo tardas de verdad en escuchar todas tus canciones?

Yo he tardado 4 semanas y 4 días en escuchar mis 1853 canciones al ritmo al que escucho música normalmente. ¿Y tú?

PD: Le paso el meme a eckelon, jis jis.

gems – Terminal Broadcasting

We had a issue for the next Warp Talk. All the talk will be done with a shell as presentation tool. But people won’t see the text on the shell trough the cam, as it resolution is limited.

Isaac have found vía Debian package of the day Gems.

Gems allows exactly what we need, broadcast a terminal by tcp/ip. Screen would be the first thought, but a ssh connection from unknown people was needed :S.

To use gems, install it:

$ sudo aptitude install gems

If you want to broadcast a terminal, you type on that terminal:

golo@Macluzo:~$ gems-server -port 9999
gems-server initialized.

And now, you are broadcasting.

If you want to observe a terminal, type:

golo@Macluzo:~$ gems-client localhost 9999
gems-client: Connection established -- Press 'q' to exit.

Notice that localhost should be changed to the server’s host :D.

If you plain to attend this talk, follow our Twitter. We’ll publish server’s public address and port there.

WarpTalks Febrero 2009

Warp Talks

Desde Warp Networks estamos promocionando un ciclo de charlas con nombre clave «warptalks».

Principalmente serán charlas técnicas relacionadas con el software libre impartidas por los trabajadores de Warp.

Aunque es una iniciativa interna y todavía estamos probando, queremos compartir la experiencia con el resto del mundo a través de internet.

Este viernes, día 20 de febrero 2009, tendremos el honor de contar con Adeodato Simó, que impartirá la charla «Perder el miedo a Git en 90 minutos» a las 18:00 (hora Europe/Madrid).

Adeodato Simó es parte del Release Team de Debian, ha realizado prácticas en Google y desarrolla el proyecto Minirok:

Podrás seguir la charla en vivo en justin.tv.

Si el horario te viene mal, o te interesan las charlas anteriores, tanto vídeos como presentaciones estarán disponibles en slidehsare y vimeo:

Nuestro objetivo es realizar un día de charlas el último lunes de cada mes (aproximadamente), quizá te interese obtener noticias de última hora en twitter.

o en nuestro blog corporativo:

Apache Authentication with eBox openLDAP

I’m using eBox to manage my server. eBox was mind for enterprise networks, but dns and email modules are very useful for a internet server.

eBox manages email users with openLDAP (slapd), so I wanted all the services in my server to use the same authentication.

This is the general configuration for apache authenticating with eBox, wich I use for my SVN repositories:

# LDAP Authentication & Authorization is final; do not check other databases
AuthzLDAPAuthoritative on

# Do basic password authentication in the clear
AuthType basic
AuthBasicProvider ldap

# The name of the protected area or "realm"
AuthName "Triangulo de las merluzas Subversion Repositories"

# Active Directory requires an authenticating DN to access records
# This is the DN used to bind to the directory service
# This is an Active Directory user account
AuthLDAPBindDN "cn=admin,dc=ebox"

# This is the password for the AuthLDAPBindDN user in Active Directory
AuthLDAPBindPassword "secret"

# Group Configuration
AuthLDAPGroupAttributeIsDN off
AuthLDAPGroupAttribute memberUid

# The LDAP query URL
AuthLDAPURL  "ldap://localhost:389/ou=Users,dc=ebox?uid"

# Require authentication for this Location.
# In this case, only developers can use the repository.
Require ldap-group cn=developers,ou=Groups,dc=ebox