Prolink Pixelview MPEG 8000GT en Archlinux

Esta tarjeta tiene un chip Conexant CX23880. La salida de lspci -nn debe contener los siguientes

04:01.0 Multimedia video controller [0400]: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [14f1:8800] (rev 05)
04:01.1 Multimedia controller [0480]: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port] [14f1:8801] (rev 05)

Primero que todo debemos conseguir el firmware xc3028-v27.fw y copiarlo a /lib/firmware/. Para los que quieran obtener el firmware, en mi sitio lo he subido, aclaro que no se si tengo derecho para distribuirlo,  si alguien se queja lo quitaré. Tambien hay una guia sobre como extraerlo directamente desde los controladores para Windows http://www.linuxtv.org/wiki/index.php/Xceive_XC3028/XC2028#How_to_Obtain_the_Firmware.

cd /lib/firmware/
wget http://beford.org/linux/xc3028-v27.fw

En mi caso el id de la card es 66, y de la sintonizadora 71, agregamos las siguientes lineas al /etc/modprobe.d/modprobe.conf :

options cx88xx card=66 tuner=71
options snd-hda-intel index=0
options cx88_alsa index=1

Para evitar que el audio de la sintonizadora de TV conflicto con la integrada del sistema, es necesario cambiar el indice, por eso agregamos el parametro index al modulo de sonido. Reiniciamos el sistema y debe quedar funcionando, pueden probar con xawtv o tvtime.

XChat 2.8 on MeeGo

This is a short post to show how I got XChat 2.8.8 on MeeGo.

You will need to download the SRC.RPM file from http://xchat.org/files/binary/rpm/

wget http://xchat.org/files/binary/rpm/xchat-2.8.8-0.fc13.src.rpm
sudo zypper in rpm-build perl-ExtUtils-Embed tcl-devel openssl-devel libtool libsexy-devel gettext bison gtk2-devel glib2-devel GConf2-devel
rpmbuild –rebuild xchat-2.8.8-0.fc13.src.rpm
cd ~/rpmbuild/RPMS/i386/
sudo rpm –install xchat-2.8.8-0.i386.rpm

Now a new entry should appear on the Internet category for XChat.

Obtener lista de karma en teams Launchpad.net

Update: I’ve just updated the bookmarklet, I added the option to tell it the team size, it was hardcoded at 200, now you can put the value, also it doesn’t show members with 0 karma. I’ll probably get off my laziness and code it in perl/python :)

Este es un pequeño javascript para obtener una lista de los miembros de un equipo de launchpad, organizada por el karma, utilizando el API de launchpad.net y Mochikit.

Arrastren el enlace a su barra de favoritos, y luego dentro de www.launchpad.net hagan clic en el:  Karma table

Este es el codigo mejor organizado, para el que lo quiera ver:

javascript:(
 function(){
 var d = loadJSONDoc('/api/devel/~'+prompt('Team name:', 'ubuntu-co')+'/members?ws.size=200');
 d.addBoth(function (res) {
 res.entries.sort(function(a,b) { return parseFloat(b.karma) - parseFloat(a.karma) } );
 msg = "";
 for (i=0;i<res.total_size;i++) {
 msg =  msg + "\r\n" + '<tr><td>'+(i+1)+'</td>
<td><a href="/~'+res.entries[i].name+'">'+res.entries[i].display_name+'</a></td>
<td>'+res.entries[i].karma+'</td></tr>';
 };
 document.body.innerHTML="<table class=\"listing\" id=\"activemembers\">
<thead><tr><th>&nbsp;</th><th>Name</th><th>Karma</th></tr></thead>
<tbody>"+msg+"</tbody>
</table>";
 });
 }
)();