Autoclick Opera Userscript

jueves, 15 de octubre de 2009 Albertux Sin comentarios

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;
	}
}
Categories: security, web Tags: ,

Wake Up Script With Problems

lunes, 12 de octubre de 2009 Albertux 1 comentario

Wake Up Script With Problems

Remember : I’m not sleeping, I’m hibernating

Categories: personal Tags:

Debian squeeze/sid

jueves, 8 de octubre de 2009 Albertux 3 comentarios

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.

Categories: unix/linux Tags:

FreeNAS

domingo, 4 de octubre de 2009 Albertux 3 comentarios

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.

Categories: network, unix/linux, web Tags: ,

Ubuntu 9.10 Beta

sábado, 3 de octubre de 2009 Albertux Sin comentarios

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.

Categories: unix/linux Tags: ,