Autoclick Opera Userscript
Autoclick code:
if (typeof e == 'object') {
if (typeof e.click != 'undefined') {
e.click();
return false;
} else if (document.createEvent) {
var evObj = document.createEvent('MouseEvents');
evObj.initEvent('click',true,true);
e.dispatchEvent(evObj);
return false;
}
else if (document.createEventObject) {
e.fireEvent('onclick');
return false;
}
else {
e.click();
return false;
}
}
Wake Up Script With Problems

Remember : I’m not sleeping, I’m hibernating
Debian squeeze/sid
I installed Debian Lenny on my notebook, but i want to test squeeze so I do this:
# as root
sed -i 's/lenny/squeeze/g' /etc/apt/sources.list
aptitude update
aptitude install apt dpkg aptitude
aptitude full-upgrade
# after reboot
upgrade-from-grub-legacy # to use grub2

I experimented some issues with dependencies but everything now is ok.
FreeNAS
FreeNAS is a free NAS (Network-Attached Storage) Server.
www.freenas.org

There are many services some are: FTP, TFTP, SSH, HTTP, SAMBA, RSYNC and more.
Easy to install only need one floppy disk or cardflash memory (to save config) or small hard disk to install the system of the CD.
Some services needs you have static IP (not DHCP like FTP Service)
FreeNAS it’s a great option if you want to storage a lot of information and share that information using service (http/ftp/samba/etc.)
Very small and very powerfull.
Ubuntu 9.10 Beta
Today, I upgrade my Ubuntu 9.04 to 9.10 beta.
Only I run “update-manager -d” and wait some time …

Upgrade is so easy.