Skip to main content
Now that the preparations for 16th Lok Sabha elections in April-May 2014 are underway, the online media is heating up with news about politics. My Facebook feed and twitter feed are abuzz with news and opinion on politics.
Clearly the stage is set but the sentiment that is echoed is that there really is “no choice”. Who are the players?

1. Narendra Modi – he has become the obvious choice for those who feel that a change is needed in the country and the Congress offers no solid alternative. Hence, it is better to go with a leader who has proven his worth with his governance as Chief Minister in Gujarat. However, his strong religious leanings, his role in Godhra riots (although he has been acquitted by the court) leads to concerns. Is he really the right leader?

2. Rahul Gandhi – although its not declared as yet, he is clearly being seen as Congress party’s choice to lead the elections. Although the Gandhi name, which provides him instant recognition and a prominent space in Indian politics, he has failed to exude his charm and carve his own identity. While his youth gives him an edge, he comes across as an adolescent who is confused about the political issues that face the country. And his infamous interview with Arnab Goswami on Times Now, killed any hope about his impending political career. He clearly doesn’t seem to be the right choice to lead a nation which requires hard decisions.

3. Arvind Kejriwal – an activist turned politician, who appears to be really concerned about the nation’s future. His is the story of giving up riches and adopting a life on the streets. His main concern is not to lead the nation but to right the wrongs. However, the concerns about him is that he is too new and not experienced enough to play politics. While he led his party to victory in the Delhi elections, his short tenure doesn’t give enough evidence of what he can do when in power. Although his strategy to relinquish the control that comes with power and be recognized as people’s leader, who acts in accordance with people’s wants shows his naivety. And obviously, just a couple of years old, his party doesn’t seem to have enough traction to form a national level party.
Who will be the next prime minister of India? The concerns will remain and hopefully one choice will emerge of the many choices that are in the fray. But what is really positive is that politics remains the center of public discourse as the nation finds its leader and there are questions for which we need answers.

Popular posts from this blog

FOR MY BLOG READER'S

It is not for me but for my readers. 'One' resolution fROM taday: I want to look like Aamir khan (without 8 packs) Bike or Car (and why): Car, I’ve three reasons for it 1. It’s safer than bike 2. I’ve always dreamt of going on a long drive with my soul-mate in a car. 3. While driving a car you can look into the eyes of.......... obviously you can guess?? J A chance to fly or a chance to be invisible (and why): Invisible, I suffer from Acrophobia (an extreme or irrational fear of heights). I would love to love: My parents, they deserve my love more than anyone in this world. Most recent Dream I had: I’m a kid again. Teacher in the school asks to describe a word and I was struggling L If I were to marry today, I would: If the girl is pretty, I would be delighted. If the girl is not so ..., I wouldn’t marry and convince everybody that I’m underage (I’m actually 20 years old). My Dream Girl is/would be: SHEEEE Best F...

27 Simple mehndi designs for hands for Karwa Chauth

The most  simple mehndi designs for hands  for Karwa Chauth 2014 Karwa Chauth  is around the corner and I am so excited about getting mehndi done! This time I plan to go with a simple yet quirky design. Don’t want my hands full, however it needs to be a style statement for this year’s most awaited festival for us ladies! There are some basic categories of mehndi designs, such as Gujrati, Rajasthani, Marwari,  Arabic  and African  patterns to choose from. They have certain prominent motifs or symbols that distinguishes one from the other. I just can’t seem to stop experimenting with these styles. From  circles to squares , peacocks and paisleys , checks and dots and what not. But my all-time favorite is a simple, curling vine, of course finger tips covered with thick coating of aromatic mehndi (which is so traditional). Quirky patterns include  traditional  as well as non-traditional patterns tweaked to one’s own liking. This includ...

Inline Functions and their Uses

It’s a good practice to divide the program into several functions such that parts of the program don’t get repeated a lot and to make the code easily understandable. We all know that calling and returning from a function generates some overhead. The overhead is sometimes to such an extent that it makes significant effect on the overall speed of certain complex and function-oriented programs. In most cases, we have only a few functions that have extensive use and make significant impact on the performance of the whole program. Not using functions is not an option, using function-like macros is an option, but there is a better solution, to use Inline Functions. Yes, like it sounds, inline functions are expanded at the place of calling rather than being “really called” thus reducing the overhead. It means wherever we call an inline function, compiler will expand the code there and no actual calling will be done. Member functions of classes are generally made inline as in many case...