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 ...

RESOLVED: CORS issue on ionic Mobile App ios


Problem: 

I was working on a project in which I was developing an ionic application which needed to access a Website URL hosted on Azure App Service.

The app was unable to connect and was throwing CORS issue. When I debugged using xcode, I found that the request is being made by the url capacitor://localhost and when I tried adding the same in Azure App Service, this was not allowed:



Solution:

I used azure cli to add the cors url. For this:

  1. In case, you are not having azure cli, download it here:
    https://learn.microsoft.com/en-us/cli/azure/install-azure-cli
  2. Run command:
    az login
  3. Run the following command to add url: 
az webapp cors add --allowed-origins capacitor://localhost --name MyAppService --resource-group MyResourceGroup 

Happy Coding.