Skip to main content

There's a reason for everything

While googling last night, I came across this wonderful quote by marlyn monroe :
"I believe that everything happens for a reason. People change so that you can learn to let go, things go wrong so that you appreciate them
when they're right, you believe lies so you eventually learn to trust no one but yourself, and sometimes good things fall apart so better
things can fall together."

And yes, my conclusion says, yes, everything does happen for a reason. And there is a lesson to be learnt in every quest. The key is, to be able to recognize what the lesson is. I know that often times I do not recognize why something happened at first or why some person came into my life at the time they did. And why I could not continue to be with them. Why I could not make it to the future with them alongside. Sometimes it may be days, weeks, even months later that I can look at what happened and say “Ah ha! That is why that happened the way it did. Because if that hadn’t happened (what I perceived as negative at the time) then this wonderful thing could not have happened to me now.

Comments

  1. Yaa Buddy ..I do agree .
    The GD part i will n't forget throughout ma lyf. Jst tryin to improvise on it ..:)

    ReplyDelete
  2. As I said "Everything happens for a reason". The sooner you realize, the better. Prepare well..Hope to see you in form soon.

    ReplyDelete
  3. Yes, truly iterated time and again. There IS a reason for everything!

    ReplyDelete
  4. Hmmm.. Yes I also do believe in "EVERYTHING HAPPENS FOR A REASON"... in other words we shud also remember that we have to only find the silver line behind every dark cloud in our life.. STAY POSITIVE STAY BLESSED

    ReplyDelete

Post a Comment

Popular posts from this blog

सूनापन

मुद्दत हो गयी उन तन्हायियो को गुजरे , फिर भी इन आँखों में नमी क्यों है  ? तोड़ दिया मोहब्बत पर से यकीन मेरा, फिर भी मेरी दुनिया में तेरी कमी क्यों है ? हसरत है क्यों आज भी तेरी चाहत की मुझे, क्यों याद तेरी जेहेन से मिटती नहीं ? जलजला क्यों उमड़ता है ख्वाबो में मेरे, उस आशिकी की आगज़नी क्यों है  ? सन्नाटो में भी क्यों सुनता हू तुझे मेरी परछाई से क्यों तू जाती नहीं ? इन डबडबाती आँखों को तलाश तेरी, आज भी कहीं क्यों है   ?

How the Python import system works

How the Python import system works From:  https://tenthousandmeters.com/blog/python-behind-the-scenes-11-how-the-python-import-system-works/ If you ask me to name the most misunderstood aspect of Python, I will answer without a second thought: the Python import system. Just remember how many times you used relative imports and got something like  ImportError: attempted relative import with no known parent package ; or tried to figure out how to structure a project so that all the imports work correctly; or hacked  sys.path  when you couldn't find a better solution. Every Python programmer experienced something like this, and popular StackOverflow questions, such us  Importing files from different folder  (1822 votes),  Relative imports in Python 3  (1064 votes) and  Relative imports for the billionth time  (993 votes), are a good indicator of that. The Python import system doesn't just seem complicated – it is complicated. So even though...

What does it mean to “shift testing left”?

What does it mean to “shift testing left”? I used to think shifting left meant starting all these testing activities earlier in the process, but I realise it is more than that: it means  doing different things . Shifting left on testing means thinking about architecture and design differently, considering different stakeholders early and continually. Which in turn means shifting left on security, accessibility, and all the other dimensions of quality that we should care about. So shifting left on testing motivates all kinds of assurance activities, which can stop us over-investing in a solution that was never going to work. It is like TDD on steroids. As an unintended consequence, we can remove much of the traditional work that testers would have to do downstream when they only have late sight of the product. Again, we aren’t doing that work earlier, we are setting ourselves up to never need it at all!