Just a quick note:
O'Reilly Media just published a sample of their book about Open Goverment: 140 pages!
If you're interested in Digital Democracy and citizen participation, it's a must read!
Open Goverment Sampler
lunes, 20 de diciembre de 2010
miércoles, 24 de noviembre de 2010
Neutralidad de la red ¿Perderemos otra revolución industrial?
Todos recordaréis el festival del humor protagonizado por César Alierta, así como su amplísimo conocimiento del medio.
En este blog analizan el impacto real que podría llegar a tener una decisión de este tipo en manos de un tipo como este.
En este blog analizan el impacto real que podría llegar a tener una decisión de este tipo en manos de un tipo como este.
martes, 23 de noviembre de 2010
Shell tips: ssh+screen
Our ISP connections usually suffer cuts randomly, leaving ssh sessions open until timeout happens. I used to launch screen at first command, but sometimes I forget them, and ended with multiple ssh or screen sessions over the same boxes.
Put it on ~/.bashrc and source it.
ssh ()
{
if [[ "$2" == "" ]]; then
command ssh "$1" -X screen -aAdr -RR "SSH+SCREEN" /bin/bash;
else
command ssh $@;
fi
}
When you fire an ssh connection without arguments, it try to reattach a session named "SSH+SCREEN". If the session exist, simply resume it. If the session doesn't exist, it launchs /bin/bash.
Simply, but elegant trick.
But.. What happens ssh has an argument?
Simply skips session reattachment and launch command on remote host.
Suscribirse a:
Entradas (Atom)