Sunday, June 6, 2010

मर जाता हूँ

इतनी प्यास क्यूँ मेरे मन में
बादल का एक टुकड़ा ना मेरे आँगन में
मेरा जहाँ भी अब तो आबाद करो
पूरा शहर भीगा मेरे घर में भी बरसात करो

दो वापस मुझे मेरा जहाँ
मेरी भी तो सुनो तुम हो कहाँ
मेरे दर्द का इन्साफ कर दो
और मेरे गुनाहों को माफ़ कर दो

मेरी मंजील का ये सुना डगर
और मैं भटका हुआ इसपर
मेरी दुनिया का सूरज है खो गया
ना मंजिल का है ठीकाना, न राह आये नज़र

बेमतलब सा लगता है ऐसे जीने में
जाने कौन सा डर है अबतक सीने में
अब और क्या है जो जायेगा
जो यूँ चला गया वो वापस ना आएगा

किसी की आहात होती है जब
तुम ना हो ये सोचने से मुकर जाता हूँ
इसीलिए इस पल जिंदा होता हूँ
तुम्हे ना पाकर अगले ही पल मर जाता हूँ

Friday, June 4, 2010

my collection of saddest songs of bollywood


guyz, i enjoy my pain and then love to listen a situational song. i find my pain described in words by these songs.. so here i go with few selections which enhance my pain and turn me into tears...

1. Lambi judai (movie-hero(jackie shroff))
2. Aankh hai bhari bhari (Tumse Acha Kaun Hai)

3. Tujhe yadd na meri aai(Kuch Kuch Hota Hai)

4. Lahoo ban ke aansoo barasne lage hai (Mujhse Shadi Karogi)

5. Aaya tere dar pe deewana (Veer Zara)

6. Ye un dino ki baat hai (Tumse Acha Kaun Hai)
7. Do naina aur ek kahani (Masoom(Shabana Aazmi, Nassarudin Shah))
8.Rone na dijiyega (Jaan Tere Naam)
9.Tu pyar hai kisi aur ka (Dil hai ki maanta nahi)

10. Main rok lu tere badhte kadam (Tujhe meri kasam)



will be adding more...please add from your's side as well to make this list grown sufficiently...

Friday, May 21, 2010

kisi aur ka ghar

tha garv mujhe is shehar mein rehne ka
baatein iski apno mein kehne ka
na jaane vo jamana kab picche chhoot gaya
mere yaadon ke khajane ko koi loot gaya

jis chowk ke chakachoundh ko tarasti thi aankhein
usse hoke guzarne mein ab dar lagta hai
vo bhi is kadar lagta hai
ki ab wahan na jana hi behtar lagta hai

baarish ke baad mitti ka mehakna
subah ki kirno mein chidiyon ka chehkana

hawa ke jhonko se abtak wahi khusbu aati hai
par fir bhi lagta hai koi rishta na baaki hai

sochta hu kya koi apna tha mera
is shehar mein, is watawaran mein
yahan ke logo mein, is paryawaran mein
kuch dur ho jaye,kuch chhoot jaye,aisa kuch kahan tha mera

jane ye kiska dosh hai
kyun hota na mujhe afsos hai
har kona dekha maine, har gali se guzra hu
fir kyun lagta hai, aaj hi aaya hu aur aaj hi ja raha hu

khayal aata hai, dur milon apna ek shehar hai
jahan pe main pala, badha, chalna sikha

pyar ka matlab samjha, pyar karna sikha
apna to bas wahi hai,ye to kisi aur ka ghar hai







abhishek kunal

Wednesday, April 14, 2010

oracle slowing startup process,solved

if you have installed oracle 10g(in windows xp) , then you must be facing the horrible slow startup problem of windows.the problem is by default there are n no of services which are started automatically at the time of system startup. so an obvious solution is to make oracle services manual, means whenever we need we can start the services manually. in this short tutorial i will guide through few easy steps to take you out of this mess.

step 1: we have to set oracle services as manual startup type. to do that , open control panel->administrative tools->Services
in the list of services , look up for these oracle services OracleServiceORCL,OracleOraDb10g_home1TNSListener,OracleOraDb10g_home1iSQL*Plus,OracleDBConsoleorcl

now change their startup type to manual, to do that just double click and then select manual from the dropdown box.and don't forget to click apply.

now whenever you need to start using oracle, you need to start relevant oracle services.
the very first oracle service that is required is TNSListener, to start that u dnt nedd to come here in services list.

start command prompt and type lsnrctl start

then you can start other oracle components,

to start a database of sid orcl

type
oradim -startup -sid orcl


to start enterprise manager service,the command is

emctl start dbconsole
(
this will start enterprise manager for defualt sid, you may have multiple database and hence multiple sid's , so to start enterprise manager for a database of sid orcl2,you need to first set sid environment variable at command prompt the command is set ORACLE_SID=otherdatabasesid)

ask further ....

Saturday, January 23, 2010

link list reversal

here i am providing a very simple algorithm (a program indeed) for reversing a given linked list....

Assumption:- head pointer is provided, the structure of node is as follows

typedef struct node
{
int val;
node *next;
}item;

item* revlist(item *head)
{

/*for reversing , we have to just reverse the next pointer in each node..means if the node A was
pointing to node B and node B was pointing to node C then for reversing we have to,first make A pointed by B's next and B pointed by C's next..means..a parent will become child now and grandchild will become child for the next operation*/


item *parent;
item *child;
item *grandchild;
parent = head;
child = parent->next;
grandchild = child->next;
parent->next = NULL;

while(child!=NULL)
{
child->next = parent;
parent = child;
child = grandchild;
if(child!=NULL)
grandchild = child->next;
}
head = parent;
return head;
}