Linux Shell Commands – quick how-tos

Following are linux commands, tricks for doing regular tasks. Rename files: replace space by _ in linux: for files in *; do mv “$files” `echo $files | tr ‘ ‘ ‘_’`; done Change case of multiple file names: for files in *; do mv $files `echo $files | tr ‘[:upper:]’ ‘[:lower:]’`; done Find files having […]

Selected Oscar Wilde Quotes

Oscar Fingal O’Flahertie Wills Wilde!! Oscar Wilde is well known for his biting wit. And he has an extraordinary way of representing the things. Here are some collection of famous quotes of Oscar Wilde: A cynic is a man who knows the price of everything but the value of nothing. A dreamer is one who […]

Life At Rest

life at rest – my first poem

You’d never forget the those beautiful moments when you feel loved and feel blessed with the presence of the one of your life. Looking at above capture of my dear ones, I jotted down a few lines and that’s my first attempt. I call it (my) Life At Rest. insomniac for your sleep, you’re awesome […]

Using MySQLTuner – MySQL Optimization Tool

MySQLTuner is a script written in Perl that will assist you with your MySQL configuration and make recommendations for increased performance and stability. Within seconds, it will display statistics about your MySQL installation and the areas where it can be improved. Downloading MySQLTuner: wget http://mysqltuner.com/mysqltuner.pl chmod +x mysqltuner.pl Using MySQLTuner Script for Lampp systems: Just […]