grub GUI: Grub Customizer
Install: $ sudo add-apt-repository ppa:danielrichter2007/grub-customizer $ sudo apt-get update $ sudo apt-get install grub-customizer Run: $ grub-customizer
Install: $ sudo add-apt-repository ppa:danielrichter2007/grub-customizer $ sudo apt-get update $ sudo apt-get install grub-customizer Run: $ grub-customizer
Press and hold [Shift] during computer boot untill grub menu shows up.
$ sudo chroot /path/to/chroot/dir Example: $ sudo chroot /home/user/vm
1. Enable root login in sshfs. 2. Mount: $ sudo sshfs -o allow_other,default_permissions root@remote_host:/ /mount/dir
By default, sshfs ignores mount as root user on remote machine (sshfs internally uses SFTP, which in turn uses ssh […]
1. Unlock root account: sudo passwd -u root 2. Set password for root account: sudo passwd root 3. Check that […]
1. Install vino: sudo apt-get install vino 2. Configure vino: vino-preferences 3. Add to start-up applications this command: /usr/lib/vino/vino-server
http://sahandsaba.com/nine-anti-patterns-every-programmer-should-be-aware-of-with-examples.html
How to name things: the hardest problem in programming from Peter Hilton
Suppose you have following XML file: <?xml version=”1.0″?> <configuration> <parameter> <name>param1</name> <value>value1</value> </parameter> <parameter> <name>param2</name> <value>value2</value> </parameter> <parameter> <name>param3</name> <value>value3</value> […]