Sunday, 26 October 2014

A shot Summary of "Proof of Heaven"

I will summarize my learning from the book proof of heaven by Dr. Eben Alexander.

Let me first give you some background on how I ended up buying this book, It all started with an amazon diwali sale. I bought this book because of three reason 
  1. There was a 50% off on this tittle.
  2. It was categorized as the best seller.
  3. My intuition told me to buy it.
Now when I think back, there were many best selling book, but this book in particular help me to the road I was travelling before. It was just what I needed at this time.

The proof of heaven is a real life story of Dr. Eben Alexadar who had a Near Death Experience (NDE) when he is brain got infected with bacterial meningitis caused by a rare bacteria call E.coli.
The bacteria destroys almost all of his forebrain, leaving only his inner brain intact to sustain his body. Eben goes into a deep comma, which the entire medical world though that he would never recover from.

Surprisingly he recovers after 1-2 weeks and gets fully healed in 2 week back to his normal self. The medical world is astounded and labels it as a miracle, but the truth is much beyond that as Eben now understands.

Eben goes passes to the spiritual world and attains knowledge from the eternal being OM. He also meets his guardian angel who accompany him to the gateway and the orb.

Eben also talks about the knowledge he wants to share with the humanity, which was given to him in the spiritual world. 

He talks about the different levels of awareness that exists in this world and how the spiritual world, the angelic beings are connected to us though the common vibrations of the universe.

He urges us to learn about them and to put in the work to gain awareness of these higher level of consciousness that exists parallel.

The universe in held up by the force of love, Eben talks about the unconditional love that he had experienced from the brilliant orb of light which he calls OM. The interconnected nature of every thing is also focused and even related to the quantum mechanics of physics.

In the book Eben is trying the convey the message that their is many realm outside our earth and many things that we humans have shunt overself from. Eben has tried to explain his experience along with the scientific facts.

This is a really wonderful read for all, I strongly recommend to all those who are open to learn about the unknown.




Saturday, 25 October 2014

Proof of Heaven and me

I am reading the book Proof of Heaven by Dr. Eben Alexander and I couldn't help myself from sharing few things the book is teaching me in the chapters:

In the the chapter Six faces Eben's spirit is traveling from the spiritual world to the earthly world. He talks about the prayer's of all his loved ones that pulls him to the earth especially the prayer of his younger son.

Eben could hear undecipherable sounds from his loved ones, which became clearer as he continued his voyage though the spiritual world.

This means that our prayer can really reach our loved ones in the spiritual world. We should not stop praying for their well being and ask their blessing and protection. They are all very much alive but not in flesh but in ways that we can't comprehend.

Was Eben's spirit forced to come back because of the prayer's of his loved ones ?

or did the core / OM decide to let him go back earthly world as an answer to all the prayer ?

Sunday, 19 October 2014

Weekend learning

Few things I learned today:

1. Always plan your next day before you go to bed the previous day.

Everyone is lazy,  at least I am. You have to do the things you don't like more often and in small steps to overcome those.

2. The body - mind connection is important.

If you feel that your sharpen your mind, most of the time it's hard for us.  You can utilize the mind body connection,  if you do improve your physical health the mental health starts to improve.
I am going to jog again ;)

3. Be a finisher not a starter.

Some people like to start new habits or programs, but loose motivation half way through.
I want to be a finisher, who starts and  completes the programs he initiates. I start this new habit by reading and summarizing one book at a time.

Thursday, 16 October 2014

Wednesday, 15 October 2014

New way to increase my vocabulary

I thought about the different ways to improve my vocabulary and nothing seemed to work for me.

Now I m trying a new approach:

  • List down the words I learn in a blog post.
  • Research about them using vocabulary.com
  • Make at least 5 sentences about them.
  • Blog about the new grammar tips.
This is the new format for my experiment.

New words:

Discretionary

  Going for a jog every morning is a discretionary act and it depends on how health conscious you are at this point.


Sobering lessons
To be filled in the evening
Indecisive :
To be filled in the evening
Grammar tip:

There are no rules dictates that you should not begin a sentence with a conjunction like And or But.
But it has to used with caution as it might get us sloppy habit of using them too much.

Monday, 29 September 2014

Sunday, 27 April 2014

My First Hadoop Mapreduce job

I have been working with hadoop and mapreduce today. This is the command I used to run my first map reduce job.

hadoop jar /usr/lib/hadoop-0.20-mapreduce/contrib/streaming/hadoop-streaming-2.0.0-mr1-cdh4.1.1.jar -mapper mapper.py -reducer reducer.py -file mapper.py -file reducer.py -input myinput -output joboutput

My Map-Reduce was programmed in python, so i hadto use the Hadoop Streamer to translate the commands from Python. This is the first part of the command :
 jar /usr/lib/hadoop-0.20-mapreduce/contrib/streaming/hadoop-streaming-2.0.0-mr1-cdh4.1.1.jar 
The next part is to specify the mapper and reducer, we have to use the -mapper  <filename> -reducer <filename> format to specify the python code for the mapper and reducer followed by -file for both the mapper and reducer python files.
 -mapper mapper.py -reducer reducer.py -file mapper.py -file reducer.py
The last part of the code is to mention the input and output folders to the mapreduce jobs. We use the -input <folder> -output <folder> :
-file reducer.py -input myinput -output joboutput