Is that hard to install linux? I don’t wanna loose my windows, can I try linux in save way? I wanna learn linux, have idea where I must start? Well, I’ll start with this option : 1. Live CD, using live CD what you need just make sure you choose to boot from CD-ROM or […]

Linux dns 2.6.15-26-server #1 SMP Thu Aug 3 04:09:15 UTC 2006 i686 GNU/Linux dnspct@dns:~$ # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth1 iface eth0 inet static address 172.88.1.6 netmask 255.255.yyy.0 network 172.88.1.0 broadcast 172.88.17.yyy iface eth1 inet static address 222.124.4.xxx netmask 255.255.255.xxx network 222.124.4.xxx broadcast […]

Shame on me, not visiting VirtualBox for long time make my mind make tiny error in making conclusion. This project is dead. I’m totally wrong of course 🙂 VirtualBox 1.6 already released. Click here to download Some interesting feature in VirtualBox after acquisition by Sun : Solaris and Mac OS X host support Seamless windowing […]

Reset wordpress password using provided link not work, sadly no phpmyadmin available 🙂 Fortunately I have shell access which is enough, using built in md5 function to generate and update the password, here’s the steps: 1. Creating md5 – Using shell Just type : md5 -s your chosen password – Make php script with this […]

Little mistake on naming variable make me confuse for almost an hour. $this yes, $this is built-in variable that often use in OOP. By using $this, we refer to self referencing variable. More in php.net manual <?php class A { function foo() { if (isset($this)) { echo ‘$this is defined (‘; echo get_class($this); echo “)\n”; } else { echo “\$this is not defined.\n”; } } […]