Archive

Directorio de Organizaciones que tengan que ver con FOSS @ México

Pues me puse a hacer un directorio en github.

https://github.com/LinuxCabal/dir-foss

La idea es que colaboremos todos en registar los Grupos de Usuarios de Linux (GUL) o Grupos de Usuarios de Gnu & Linux (GUGL) en el directorio.

Pero, no se limita a estos. Si tienes cualquier tipo …


HowTo: Use a dual screen setup with two graphics cards on GNOME

Well, I've been having problems with radeon. My card (Firepro v4900) is overheating when a dual screen setup is in use. The reason seems to be pretty well outlined here: http://wiki.gentoo.org/wiki/Radeon#Power_consumption_when_using_multi-head_.2F_multi-monitor

And my old friend, dpm, is to blame... Luckily, I got another …


Funtoo

Ok, just to announce, in case anybody cares, that I am a dual resident now. I have Funtoo on my desktop (the PC I use most) and Fedora 21 in my laptop.

Usually, I write all my articles for Fedora but, for now, I will be writing them for both …


HowTo: How to use your jack audio card with pulseaudio in Fedora 20

I, honestly, don't know what's happening here. I dunno if you're delegating pulseaudio to jack or viseversa. Anyway, I use this method to enable my http://us.focusrite.com/usb-audio-interfaces/scarlett-18i20 in Fedora 20. I hope it helps out:

Procedure

#!/usr/bin/env bash
pulseaudio -k
pulseaudio -k
pulseaudio -k …

HowTo: Change your css according to client's time

I am no fan of javascript. In fact, I despise it. But, recently, it occured to me that it would be cool to change the CSS theme according to the client's time.

Here's how:

function change_css_according_to_time() {
    var d = new Date();
    var h = d.getHours();

    if ( h >= 7 && h <= 19 ) {
        console …