One liners about India
One liners about India that are completely true : 1. If you want to know how divided we are, just look at matrimonial page of our newspaper 2. India is running the software of...
One liners about India that are completely true : 1. If you want to know how divided we are, just look at matrimonial page of our newspaper 2. India is running the software of...
Emma has a new bicycle. It is bright pink and shiny. it was a gift from her uncle. He hid it behind a bush to surprise her. When Emma looked behind the bush and...
The quick brown fox jumps over the lazy dog A penny saved is a penny earned It’s fun to do other impossible The truth is the strongest argument Make each day your masterpiece Learning...
FreeType library is typically required along with GD library in PHP. This will enable usage of imagettftext() and other functions. Install FreeType Install FreeType library first at OS level. # yum install freetype-devel You have...
After enabling XDebug extension, give this code in php.ini to attach Netbeans to Xdebug. xdebug.remote_enable=on xdebug.remote_log=”/var/log/xdebug.log” xdebug.remote_host=localhost xdebug.remote_handler=dbgp xdebug.remote_port=9000
svn propset svn:ignore “*” /path/to/dir This command will ignore specific paths from committing into svn.
This solution is from stackexchange.com- http://dba.stackexchange.com/questions/9306/how-do-you-mysqldump-specific-tables DBTODUMP=mydb SQL=”SET group_concat_max_len = 10240;” SQL=”${SQL} SELECT GROUP_CONCAT(table_name separator ‘ ‘)” SQL=”${SQL} FROM information_schema.tables WHERE table_schema=’${DBTODUMP}’” SQL=”${SQL} AND table_name NOT IN (‘t1′,’t2′,’t3’)” TBLIST=`mysql -u… -p… -AN -e”${SQL}”` mysqldump -u…...