Skip to main content

God has something great for each of us...............



Once there was a small kid on earth. One fine day she came to know that God is distributing apples to humans in his place heaven. The girl was so happy to receive that news and she went with lot of enjoyment to heaven to get apple from God. There was a big queue to receive apple from God, and she joined the queue. While standing in the queue, she was fully excited and thrilled for the fact that she is going to receive person from God's hands.


Her turn too came and she showed both the hands to receive the apple. God gave the apple but unfortunately the tiny hands couldn't hold that big apple. Apple fell down and wasted in mud. The girl got disappointed. Theministers near the God informed that if the girl likes to have an apple from God again then she has to follow the queue. Having waited for so long
the girl didn't want to return to earth with empty hands, so she decided to wait again in the queue. This time the queue has become even longer than
previous one. While waiting in queue, the girl could see lot of people who
returns back with apple in hands and utmost satisfaction on their faces.
The girl was so much disappointed and thought why me alone did't get the
apple in hand when all others were easily able to get it. What is the sin I
did that I alone should suffer like this. Now the girl was so scared that
she should not miss the apple again. Again her turn came and God gave the
apple to the girl's hands and after giving the apple God spoke to the girl.


"My dear child, last time after giving you the apple only I noticed the
apple I gave to you was a rotten apple and that's why I made that to fell
down from your hands. Having given you a rotten apple, I felt bad for you
and I wanted to give you the best apple in the farm and that time the best
apple in the farm was growing and that's why I made you to wait such a long
time in the queue. Here it is. Now the apple you have in habd is 'The Best'
apple in the farm till to date. Enjoy."


Sometimes it happens as even after we put our 100% dedication and commitment things may get delayed or things may go wrong.


Believe that God has something great for us and that's why this has happened.

Comments

Popular posts from this blog

FOR MY BLOG READER'S

It is not for me but for my readers. 'One' resolution fROM taday: I want to look like Aamir khan (without 8 packs) Bike or Car (and why): Car, I’ve three reasons for it 1. It’s safer than bike 2. I’ve always dreamt of going on a long drive with my soul-mate in a car. 3. While driving a car you can look into the eyes of.......... obviously you can guess?? J A chance to fly or a chance to be invisible (and why): Invisible, I suffer from Acrophobia (an extreme or irrational fear of heights). I would love to love: My parents, they deserve my love more than anyone in this world. Most recent Dream I had: I’m a kid again. Teacher in the school asks to describe a word and I was struggling L If I were to marry today, I would: If the girl is pretty, I would be delighted. If the girl is not so ..., I wouldn’t marry and convince everybody that I’m underage (I’m actually 20 years old). My Dream Girl is/would be: SHEEEE Best F...

27 Simple mehndi designs for hands for Karwa Chauth

The most  simple mehndi designs for hands  for Karwa Chauth 2014 Karwa Chauth  is around the corner and I am so excited about getting mehndi done! This time I plan to go with a simple yet quirky design. Don’t want my hands full, however it needs to be a style statement for this year’s most awaited festival for us ladies! There are some basic categories of mehndi designs, such as Gujrati, Rajasthani, Marwari,  Arabic  and African  patterns to choose from. They have certain prominent motifs or symbols that distinguishes one from the other. I just can’t seem to stop experimenting with these styles. From  circles to squares , peacocks and paisleys , checks and dots and what not. But my all-time favorite is a simple, curling vine, of course finger tips covered with thick coating of aromatic mehndi (which is so traditional). Quirky patterns include  traditional  as well as non-traditional patterns tweaked to one’s own liking. This includ...

Inline Functions and their Uses

It’s a good practice to divide the program into several functions such that parts of the program don’t get repeated a lot and to make the code easily understandable. We all know that calling and returning from a function generates some overhead. The overhead is sometimes to such an extent that it makes significant effect on the overall speed of certain complex and function-oriented programs. In most cases, we have only a few functions that have extensive use and make significant impact on the performance of the whole program. Not using functions is not an option, using function-like macros is an option, but there is a better solution, to use Inline Functions. Yes, like it sounds, inline functions are expanded at the place of calling rather than being “really called” thus reducing the overhead. It means wherever we call an inline function, compiler will expand the code there and no actual calling will be done. Member functions of classes are generally made inline as in many case...