My 22nd Birthday
I was born around this time around 22 years ago.
Thank you to everybody for your thoughtful birthday wishes via phone call, text message, email and facebook!
Success is not how far you get but…
"Success is not how far you get, but the distance you travel from where you started."
Today, I came across this well said proverb while watching one of my favorite TV shows, Numb3rs - the 6th season. I often come across such words of wisdom from many different places which I'll be posting it up on my blog. Stay tuned.
The Hierarchy of Digital Distractions
I stumbled across this infographic on Information in Beautiful. It illustrates the Hierarchy of Digital Distractions. I'm quite amazed with this infographic and find it very true. How true do you find this? Click on the image to see this infographic in its original size.
Tip: start from the bottom.
SSH Commands to find files on Linux Server
If you have a dedicated server or a VPS - or any Linux machine with SSH access, the following commands may be useful to you if you are looking to find some files quickly. PuTTY is a good telnet/SSH client if you don't already have one. Let's get started.
#1: If you are looking for a particular file in /home directory
find /home -name filename
#2: If you are looking for files whose name is starting with "filename" in public_html directories only, you can use the following command:-
find /home/*/public_html -name filename*
#3: Instead of viewing your search results in command line, you can write it to file by using this:
find /home/*/public_html -name filename* > /home/filename_search.txt
#4: Alternatively, you can send it via e-mail directly from server using the command below. Don't forget to replace "Subject Here" with your email subject, and "email.address@domain" with your email ID.
find /home/*/public_html -name filename* |mail -s "Subject Here" e-mail.address@domain
I hope this was useful.

