Skip to main content

Vaastu Shastra

There are certain tasks that the Indian society expects a person to fulfill - get a good job, get married at a certain age, buy a house, buy a car, have kids etc. So it would seem natural to you that after getting married I have started looking around for a house to buy. It isn't so. My hunt for a house began with a trip to the mall to buy a sofa set.

It should not come as a surprise that I like movies. I have watched hundreds of movies and now that I have means at my disposal I started to improve my movie viewing experience. With TV and audio system out of the way, a comfy couch was all that was needed. So I dragged my wife with me to the mall and started evaluating the over-priced sofas. We hopped and jumped on a lot of them and when the dust finally settled, my heart was with a sofa that was also a recliner, rocking chair, had foot support, was made of high quality dead skin... err leather - the complete package! It also came with a hefty price tag. We came back home to discuss more on whether we can afford it.

With such a hefty price tag, as Indians it is natural to consult your parents before you make such a purchase. In hindsight, it was a mistake. We were lectured as to how important it is to have one's own house before buying such costly furniture. It may get destroyed if we have to shift houses frequently. All of our effort to convince our parents that we won't be flinging sofas around fell on deaf ears. The bottom line was simple - buy a house before you buy that sofa; and I really wanted that sofa.

So we started looking for houses. The one word that you keep encountering while searching for a house is "Vaastu". This is the word that all developers will keep on buzzing in your ears. "100% Vaastu Compliant" makes me wonder if a house can be any other percent compliant.

If you don't already know about Vaastu, you won't know what that actually means. You see its a trick to make absurd house plans seem good. It is a cruel trick played by some people, much like religion, that fools the hard-working population into believing that by following vaastu guidelines their lives will somehow get better. You will be drowned by terms like energy, waves, chi till you give up and accept that it is good thing that the first room in your house is the kitchen as according to Vaastu that is the proper corner for kitchen to be in.

There is no escaping Vaastu. Even renowned builders now draw their floor plans according to Vaastu. When I asked one of them as to why they followed such absurdity instead of following the common sense and architectural guidelines, they answered that no one will buy their houses if they don't follow Vaastu. It is the kool-aid that is now forced down everyone's throat.

Finally I have a humble appeal to all the people out there reading this. If you are planning to buy/build a house, please make an effort to understand if Vaastu really improves your house before you take a decision. If not for ourselves, let's make a better world for future generations (and also a better house).

"The fault, dear Brutus, is not in our stars,
But in ourselves, that we are underlings."

Comments

  1. You have provided valuable data for us. It is great and informative for everyone. Keep posting always. I am very thankful to you. Best Astrologer in India

    ReplyDelete
  2. It's really a great and helpful bit of data that you have shared here. I'm glad that you just imparted this accommodating data to us. Kindly share these types knowledge with us. Much thanks to you for sharing it.Feng Shui Master

    ReplyDelete

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

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

Use AI to build your house!

When a new housing society emerges, residents inevitably create chat groups to connect and share information using various chat apps like WhatsApp and Telegram. In India, Telegram seems to be the favorite as it provides generous group limits, admin tools, among other features. These virtual communities become treasure troves of invaluable insights. But whatever app you use, there is always a problem of finding the right information at right time. Sure, the apps have a "Search" button, but they are pretty much limited to keyword search and are useless when you have to search through thousands of messages. I found myself in this situation when it was my turn to start on an interior design project for my home. Despite being part of a vibrant Telegram group, where countless residents had shared their experiences with various interior designers and companies, I struggled to unearth the pearls of wisdom buried within the chat's depths. I remembered that I could take advantage o...

Add Git Commit Hash and Build Number to a Static React Website using Azure DevOps

While working on a React based static website recently, there was a need to see exactly what was deployed in the Dev/Test environments to reduce confusion amongst teams. I wanted to show something like this: A quick look at the site's footer should show the Git Commit Hash and Build Number which was deployed and click through to actual commits and build results. Let's see how we achieved this using Azure DevOps. Git Commit Hash Azure DevOps exposes a variable called  $(Build.SourceVersion) which contains the hash of the commit. So I defined a variable in the Build Pipeline using it. Build Id and Build Number Azure DevOps also exposes two release time variables  $(Build.BuildId) and  $(Build.BuildNumber) which can be used to define custom variables in the pipeline. So we have a total of 3 variables defined: Next we use these variables in our React App. I created 3 global variables in index.html and assigned a token value to them. < script   type = "text/JavaScri...