Skip to main content

Why I write ?

10 days from now, the farewell season will start. Farewell, the word reminds me of my school days, and somehow it manages to generate the same very emotion for college as it did for school. Newton, for once, was very correct when he defined the first law. Everything tries to remain in the state it is in. As I write this today, all I know for sure is that life won't be the same after college.

I am still skeptic as to how life would be after I leave AIT. No same hostel, no same mess and neither the same friends. A new beginning perhaps. Its not that I fear changes, what I fear is the fact that life out there is very very fast, not that I am a snail, but I am no cheetah either and I fear mediocrity.
I, most certainly want this journey logged. And what better place than this? And what better time than now?
Today, for one was a really happening day. BE Sem1 results came, I completed my research paper for oxford and I almost completed my project, recruitment strategy for OSAC has been laid out and a friend today told me how much she trusts me (this makes me feel real good).

So I resolve today, to write everyday, to log every single day of my journey, however small it be, but it shalth be logged!

Comments

  1. Dats Cool ! Now I am happy that I will have some good Stuff to read everyday ! bit Selfish na ?? But sometimes U Should be ! :)

    ReplyDelete
  2. hehe...yeah thats a promise I made to myself!! to log the journey from now on!

    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!