Skip to main content

Who really cares for you...

I know that it is one of the most crappy topic but I have secleted it for the reason that I faced some problems in my life... they were not exactly problems but the way the people react and the way I react on their reaction. About the ego of a person or the ability to let go and dont feel anything. I am writing all this because I feel that I am a guy who need to learn so much in life and I have so many questions. I would really like if someone can help me. But I know that helping is not a solution I really need to lean things on my own.
Get out of the circle of comfort and feel the world as it is and how it may come to me. I as a whole am learning so many things and still feel that I know nothing about the ways of the world.
It all started with the feeling misconception that you know someone and he changes in ways you can not imagine. But also on the same side you are a changed person yourself but even you did not expect that from yourself. Giving some theory/concept is way more easier than implementing it on own. (I am thinking on Gandhiji).
"I really dont know" this is the sentance that I dont want to use but on the contraty I use it often. I really pains me that I can be that ignorant and close eyes upon the knowledge that is useful, beautiful and makes me a far more great and better person than I am now. I really think that I need some thing ... but I am not able to figure out what? I will keep searching for it until I find it out.
Since I am being so string forward and I want to write more and more so I will remove my name...
until next time!!!

Love

Comments

Popular posts from this blog

XAMPP: Couldn't start MySQL!

XAMPP: Couldn't start MySQL! Trying to run mysql on ubuntu 10.10 and give this vauge error "XAMPP: Couldn't start MySQL!" Try this 1. Open a terminal. 2. run this command sudo chown -hR root /opt/lampp 3. then run this sudo chmod -R 777 /opt/lampp 4. Now Restart XAMPP sudo /opt/lampp/lampp restart U are all set. And if u r getting the follwing warning after restarting "Warning: World-writable config file ‘/opt/lampp/etc/my.cnf’ is ignored" 1.Open terminal 2.Migrate to /opt/lampp/etc 3.run the command sudo chmod 755 my.cnf

Difference between is_file and file_exists

If you want to know that the argument supplied is a file or not use is_file() file_exists() will take both file and directory as input and return true if they exists. So, unless you specifically want to check if the argument passed is a file use is_file otherwise use file_exists()