Tuesday 21 January 2014

Paste In Putty For New Users


Sometimes its a gotcha, a new user is not able to paste a password in Putty when trying to login. Don't worry here is the simple solution. Copy your password and on putty press Right Click Of Your Mouse where its mention to give password .

Hope its helpful.

Thanks 

Friday 17 January 2014

Linux Feel On Windows


Scared when saw that I have to work on Windows for my new work. As get habitual to work on Linux platform, so fall in love with this OS. But anyhow found a solution to work on terminal and its command on windows.

If anyone facing the same issue, presenting the solution. Great to install cygwin  from this link http://www.cygwin.com/ . After installing a user can feel the same experience on windows like Linux.

Thursday 16 January 2014

Dedicated To My Father

पुरानी पेंट रफू करा कर पहनते जाते है,
Branded नई shirt
देने पे आँखे दिखाते है
टूटे चश्मे से ही अख़बार पढने का लुत्फ़ उठाते
है, Topaz के
ब्लेड से दाढ़ी बनाते है
पिताजी आज भी पैसे बचाते है ….
कपड़े का पुराना थैला लिये दूर
की मंडी तक जाते है,
बहुत मोल-भाव करके फल-सब्जी लाते है
आटा नही खरीदते, गेहूँ पिसवाते है..
पिताजी आज भी पैसे बचाते है…
स्टेशन से घर पैदल ही आते है रिक्सा लेने से
कतराते है
सेहत का हवाला देते जाते है बढती महंगाई
पे
चिंता जताते है
पिताजी आज भी पैसे बचाते है ....
पूरी गर्मी पंखे में बिताते है, सर्दियां आने
पर रजाई में
दुबक जाते है
AC/Heater को सेहत का दुश्मन बताते है,
लाइट
खुली छूटने पे नाराज हो जाते है
पिताजी आज भी पैसे बचाते है
माँ के हाथ के खाने में रमते जाते है, बाहर
खाने में
आनाकानी मचाते है
साफ़-सफाई का हवाला देते जाते
है,मिर्च, मसाले और
तेल से घबराते है
पिताजी आज भी पैसे बचाते है…
गुजरे कल के किस्से सुनाते है, कैसे ये सब
जोड़ा गर्व से
बताते है पुराने दिनों की याद दिलाते
है,बचत की अहमियत
समझाते है
हमारी हर मांग आज भी,फ़ौरन पूरी करते
जाते है
पिताजी हमारे लिए ही पैसे बचाते है ...


Note: This poem is not written by me, but I love this poem alot.

Wednesday 15 January 2014

Absolute Path Vs Relative Path

Hey,

So my friends whats happening? From  last few days was facing an issue to understand the concept of Absolute Path and Relative Path.

So as per the R&D provinding a simple solution for the same.

Absolute Path, basically the location/address of file from root(/) to the specified location. Or in other words, full path of a file/directory from the root(/).
For an example,
/var/www/operx
/home/user/anupam/Books/PythonBooks/

Relative Path, is the location of file related to the present working directory(pwd). Suppose I am inside /home/user/anupam/Books and want to change directory to /home/user/anupam/Books/PythonBooks.
I can use relative path concept to change directory to PythonBooks by,
/home/user/anupam/Books
cd PythonBooks

Note: If you observe there is no / before PythonBooks which indicates it's a relative directory to present working directory.

Is it possible to change /home/user/anupam/Books/PythonBooks/ using absolute path concept via
/home/user/anupam/Books/PythonBooks/

Hope this is useful.

Thanks.