reset mysql root password reference You may forget root password of your mysql database, follow instruction below to reset it. Add a entry in my.cnf: 12[mysqld]skip-grant-tables then restart mysql server, now you can log 2013-08-05 operation #mysql
KTV songs list hostage realization give me your love in the spring pity fly me to the moon say u love me you are the girl I love 2013-08-03 myself
number calculation in bash computation efficiency rank:(()) == let > expr > bc 1.(()) and let is bash buildin command, which can execute efficiently2.expr and bc is system command, drain memory and low efficiency.3.(()) 2013-08-03 operation #bash
encrypy and hide windows folder foldername is the name before encrypted.targetname name theone after that.password variable is the key to unlock the folder. 123456789101112131415161718192021222324252627282930313233343536373839404142 2013-08-01 operation #batch
disable mysql automatic startup on Ubuntu 13.04 Ubuntu has abandoned SysV init script approach to booting the server since 10.04.This link explainsSo to prevent mysql from starting on boot, you have to switch to a new way as belew: go to the /etc/ 2013-07-29 operation #mysql #linux
I love you It it a really funny and cosy storyOn that day, 1st JuneI met youacquainted youLove you!Thanks for coming long way to see me.I know it it not easy for a little girl like you to travel this long way to 2013-07-29 myself
Linux shell redirect In some situation, that we need to hide the output information of aapplication, such goagent or some useful manual scripts.Thus redirect into ablackhole is the best choice you can make.Here I will int 2013-07-29 operation #bash
loop syntax in Bash if you wanna loop through from number to another number, bash loop may not be the best choice for you, cause it has lot of differences from the original for loop as you might think of. 1234for i in 2013-07-03 operation #bash