Skip to main content

ब्यां एक लाश का


*************************************************
यह न पूछो ,जिन्दगी को किस तरह से ,जीया था मैने ,
ज़माने की जुल्मों - सितम , खामोशी से , सहा था मैने .

हर ज़ख्म , हर दर्द दिये थे , ज़माने वालों ने मुझे ,
जिनके ज़ख्मों पर,प्यार से मरहम,लगाया था मैने .

कतई ईल्म न था , दुनिया वाले इतने , खुदगर्ज़ होंगे ,
जबकी उनके गमों को,अपना समझकर,उठाया था मैने .

जीते -जी हरवक्त ,खोदते ही रहें , वही कब्र मेरा ,
जिन्हे जीने का , सही अंदाज , सिखाया था मैने .

किसी बोझ की तरह ,उठाए जा रहें हैं ,ज़नाज़ा मेरा ,
जिनके दर्द से ,तड़पते काँधों को , सहलाया था मैने .

मालूम हैं , जल्द ही मिट्टी तले , दफ़ना जाएंगे मुझे ,
कुछ पल के लिये सही,लोगों को,अपना बनाया था मैने .

रूह तो फ़ना हो चुकी,अब जिस्म भी,अलविदा "आनंद",
फक्र हैं ,जिन्दगी को सच की राह में , बिताया था मैने .

Comments

Popular posts from this blog

In Ubuntu The disk drive for /tmp is not ready yet or not present

  If you get the error  "The disk drive for /tmp is not ready yet or not present"  during boot process then run the following command in ubuntu: sudo mv /tmp /tmp_old sudo mkdir /tmp sudo chmod -R 777 /tmp Reboot your system and if you want you can delete the /tmp_old folder.

Angular 2/4 Setup, install and Build Guide

This is a step-by-step setup guide to setup Angular Development Environment. 1. Install Node.js (Note:- Below Instruction for Debian and Ubuntu-based Linux distribution) NOTE: If you are using Ubuntu Precise or Debian Wheezy, you might want to read about running Node.js >= 6.x on older distros.       For Node.js 8.x LTS(Long Term Support) curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - sudo apt-get install -y nodejs For Node.js 9.x Current curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash - sudo apt-get install -y nodejs After Installing Node.js, the  NPM(Node package manager) should automatically be installed. Verify installation using commond   npm --version 2. Install Angular CLI via npm: npm install -g @angular/cli 3. To create a new project: ng new myapp  4. To run the Angular app: cd myapp ng serve Note: - This will start a server on localhost:4200 by defau...

How to import the existing project into Eclipse

Procedure     Start Eclipse. Create a new workspace for your handler project.          3 . Select  File  >  Import  from the main workbench menu.      4.  In the Import dialog box, select  Existing Projects Into Workspace  and then click  Next . 5.  Select the   Select archive file   radio button and then click   Browse . In the   Select archive containing the projects to import   dialog box, locate    (where   is the location of your  AppS Source  installation )   and then click   Open . Click  Finish  to import the archive.