My first Tedx Talk: From Pain to Purpose – My TEDx Journey

August 30, 2025 – A date etched in my life for more than one reason. Exactly 11 years ago , I got engaged. And on that very same date this year, I received a life-changing opportunity: my first TEDx talk , hosted at GGI under the inspiring theme “Chase the Impossible.” Standing on that red dot, I felt a mix of emotions — excitement , nervousness , and the quiet ache of loss , having lost my wife, whose memories remain deeply rooted in my heart. In my talk, I shared a story born in the midst of COVID-19 — a time when Ms. Renu and I were both navigating personal grief in different ways. It was during this difficult phase that Mr. Chaitanya brought us together — blending Renu’s deep nutritional expertise with my technical background . That collaboration gave birth to a vision: A platform that could reduce the time it takes to create personalized diets , enabling dieticians to focus more on care, empathy, and connection — and patients to avoid long queues and delays. What began in ...

Syntax highlighting in blogger

Problem: I want to have syntax highlighting for the code I share on my blog

Solution:

  1. I checked out this website: https://highlightjs.org/
  2. I downloaded the resources and upload them on to my server i.e. default.min.css and highlight.min.js
  3. Logged into my blogger and clicked on Edit HTML
  4. Find the closing 'head' tag and paste the following code there:
          
              <link rel="stylesheet" href="path_to_default.min.css"/>
              <script src="path_to_highlight.min.js"></script>
              <script>hljs.highlightAll();</script>
          
          
  5. Please note that in case of closing and opening tags of html, I used html entities.
  6. Yay! The syntax highlighting should be working now.