Archive > Tag: GNU & Linux

Fedora 9: Firefox 3.0b5 & flash fix

Well, my flash plugin in Fedora 9 wasn't working. Besides that, I was getting a strange "s" website being looked up for when I started Firefox.

After days of debugging, I just went to: System > Preferences > Personal > Preferred Applications and selected "Firefox" instead of "Custom", which I didn't set in …


Cómo instalar detox en Fedora 8

detox es una gran utilería que sirve para quitarle toda la porquerí;a a los nombres de tus archivos.

O sea, como tu sabes, en GNU & Linux, los espacios son un poco difíciles de manejar, además, como los nombres son "Case Sensitive", probablemente te gustaría, como a mí, tener todo …


GNU & Linux unity

I have been wondering...

What would happen if all of us, GNU & Linux users would unite as a Community? I mean, I understand that we, the FLOSS Community, are one already... but a real one?

I know this might sound a bit harsh but, I don't see much of a …


Bash: Como encodear tus archivos .wav a .mp3 con lame y el CLI

He aquí un bash script que ayuda a convertir tus archivos .wav a .mp3.

Dependencias

  • lame
cd /path/a/tus/archivos/wav
for file in *.wav; do
    lame -h -b 192 --cbr "$file" "${file%.wav}.mp3";
done

Gedit y su Modelines plugin

Estoy muy contento ya que hice un gran descubrimiento en gedit!

Si conoces a algún old-school coder linuxero, habrás observado que muchos de ellos prefieren no usar tab para indentar. O acaso será me ha tocado escucharlos quejarse mucho de ellos? Sepa la goma!

La cosa es que siempre se …