Skip to main content

The New Normal

My three year old daughter today asked me if I would take her to the mall. This would normally have been an ordinary request but these are extraordinary times. I had to say no. She bargained - What if she wore a mask? To escape the situation, I had to put the blame entirely on Narendra Modi. 😉

When I see someone coming towards me on the road
When would we go back to normal?
This is a question on everyone's mind. But how do you define normal? Let's examine this objectively.

The current lock down cannot last forever. Sooner or later it will have to be lifted for people to earn livelihoods. It may be lifted in phases but don't expect schools, malls, or places of social gathering to be opened up anytime soon. Any potential vaccine is still forever 12-18 months away. Even if a vaccine is invented quicker than that, production, distribution and finally vaccination itself would take years. People would keep falling sick due to COVID-19 and dying and there is nothing we can do to stop that.

Society would change too. In India, people have let their maids go. If someone is not physically disabled or desperate, they would not be hired back anytime soon. Be prepared to do the housework yourself for a long time.

Let's assume that schools, malls and offices are opened up an year down the line. People would still be wary to go there. Masks would become common sighting and social distancing would increase. The silver lining is that hopefully people would take their hygiene more seriously and this would reduce the spread not only of COVID-19 but other infectious diseases. There would definitely be lesser number of vehicles on the road as people would avoid unnecessary travel and that may lead to lesser pollution levels.

Use of paper currency was already in decline and this pandemic would only accelerate that trend. There would be increasing levels of remote communication and some IT work which cannot be done remotely from homes may shift back to its home country. For IT professionals, layoffs and pay cuts are definitely in the offing.

Masks, hand washing, soap, sanitizer, social distancing would become words used in common lingo. I am not an expert and this is not an exhaustive list. Still its safe to say that society is already changing in ways that cannot be undone.

So the next time someone asks you when can we go back to normal, tell them we already are in the new normal.


Comments

Post a Comment

As far as possible, please refrain from posting Anonymous comments. I would really love to know who is interested in my blog! Also check out the FAQs section for the comment policy followed on this site.

Popular posts from this blog

Creating a Smart Playlist

A few days earlier I was thinking that wouldn't it be nice if I had something which will automatically generate a playlist for me with no artists repeated. Also, it would be nice if I could block those artists which I really hate (like Himesh Reshammiya!). Since I couldn't find anything already available, I decided to code it myself. Here is the outcome -  This application is created entirely in .NET Framework 4/WPF and uses Windows Media Player Library as its source of information. So you have to keep your Windows Media Player Library updated for this to work. It is tested only on Windows 7/Vista. You can download it from here . UPDATE : You can download the Windows XP version of the application here . Please provide your feedback!

Integrating React with SonarQube using Azure DevOps Pipelines

In the world of automation, code quality is of paramount importance. SonarQube and Azure DevOps are two tools which solve this problem in a continuous and automated way. They play well for a majority of languages and frameworks. However, to make the integration work for React applications still remains a challenge. In this post we will explore how we can integrate a React application to SonarQube using Azure DevOps pipelines to continuously build and assess code quality. Creating the React Application Let's start at the beginning. We will use npx to create a Typescript based React app. Why Typescript? I find it easier to work and more maintainable owing to its strongly-typed behavior. You can very well follow this guide for jsx based applications too. We will use the fantastic Create-React-App (CRA) tool to create a React application called ' sonar-azuredevops-app '. > npx create-react-app sonar-azuredevops-app --template typescript Once the project creation is done, we

Serverless Generative AI: How to Query Meta’s Llama 2 Model with Microsoft’s Semantic Kernel and AWS Services

Generative AI is a type of artificial intelligence that can create new content such as text, images, music, etc. in response to prompts. Generative AI models learn the patterns and structure of their input training data by applying neural network machine learning techniques, and then generate new data that has similar characteristics. They are all the rage these days. 😀 Some types of generative AI include: Foundation models , which are complex machine learning systems trained on vast quantities of data (text, images, audio or a mix of data types) on a massive scale. Foundation models can be adapted quickly for a wide range of downstream tasks without needing task-specific training. Examples of foundation models are GPT, LaMDA and Llama . Generative adversarial networks (GANs) , which are composed of two competing neural networks: a generator that creates fake data and a discriminator that tries to distinguish between real and fake data. The generator improves its ability to fool the d