Skip to main content

The Prime Minister That Wasn’t

Legends and WikiLeaks have it that the supposedly future Prime Minister of India will discuss about the greatest dangers facing the country with the US ambassador. He did and made the observation that “Hindu terror“ is the biggest threat to this country. Not Lashkar-e-Toiba, not Jamat-ul-Dawa, not even Naxalites, but Hindu terror. The perpetrators of 26/11 attacks are bewildered and are crying foul. They had spent so much time, energy and money in devising and implementing this whole plan and now entire credit is being taken away from them. Not fair.

Rahul Gandhi, the Baba of Indian politics (about whom some crazy people say that he was born with a silver spoon in his mouth), had earlier equated SIMI with RSS. Its only fair to equate SIMI, which has engaged in mindless violence and is now banned by the government, with RSS, which fought for India’s independence and has produced leaders like Atal Bihari Vajpayee, L. K. Advani. That this equation might be an attack at the base of only opposition party of any relevance is just coincidental. Baba knows all this because he has worked at grassroots levels. He even drank tea at a dalit’s house; how much more grass root do you want to get!! His work and political career is equal to or even surpasses that of Mr. Pranab Mukherjee, who worked his ass off for 75+ years to get at the level at which he is now. This was evidently demonstrated by the fact that our beloved Baba was the only Congress leader, apart from Pranab Mukherjee, who got a chance to sit at the high table during the dinner party to welcome Barack Obama.

Some fans (sycophants?) of Rahul Gandhi say that he is a magician, which he humbly denies. His fans tell the story of UP assembly elections in which he magically transformed Congress’s fortunes by parachuting from  one place to another. Asked about why the magic did not repeat itself in Bihar elections, they curl up their nose and say that magic acts should not be repeated. Its true, ask Rahul Gandhi... err, any magician.

Rahul Gandhi, future PM and most eligible bachelor (not necessarily in that order), still says that he is not yet ready for PM’s job. He says that the current PM is doing a fine job. After all the there was only one 2G scam during his tenure. Baba’s mother seconds him by saying that our PM is a holy cow and that those pointing a finger at him are despicable. Regardless, with Baba as our future PM, we can rest assured that our country’s future is in safe hands. After all we have grown accustomed to being governed by zombie PMs. Oops, despicable me!

Comments

  1. One of the best and most humorous posts by you. If i can compare, better than some of greatbong posts Who has off late lost his sheen. Good thing is it is short and crisp and to the point.

    ReplyDelete
  2. One is sadly left wondering as to how much of the future PMs half-baked ideas come from genuine naivete and idiocy and how much of it springs from arrogance coupled with a sense of entitlement-a la grandma Gandhi.

    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

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!

Centralized Configuration for .NET Core using Azure Cosmos DB and Narad

We are living in a micro services world. All these services are generally hosted in Docker container which are ephemeral. Moreover these service need to start themselves up, talk to each other, etc. All this needs configuration and there are many commercially available configuration providers like Spring Cloud Config Server, Consul etc. These are excellent tools which provide a lot more functionality than just storing configuration data. However all these have a weakness - they have a single point of failure - their storage mechanism be it a file system, database etc. There are ways to work around those but if you want a really simple place to store configuration values and at the same time make it highly available, with guaranteed global availability and millisecond reads, what can be a better tool than Azure Cosmos DB! So I set forth on this journey for ASP.NET Core projects to talk to Cosmos DB to retrieve their configuration data. For inspiration I looked at Steeltoe Con