This is Jhumpa Lahiri’s third piece of work (after Interpreter of Maladies and The Namesake). Sticking to her theme, this is also a set of short stories, based on the lives of expatriate Bengali parents and their american-raised children. I used to really want happy endings from books and stories I read. Jhumpa Lahiri is not someone who would give me that. Her stories are colorful, full of real characters that you would come to love; her writing is superlative and flows with an effortless pace; but the stories end abruptly at a crucial emotional juncture when the characters are at some kind of an emotional high point. I am always left wanting for more, but I end up accepting the stories for what they are.
One thing I noticed in her first two works is her brilliant descriptions of food and cooking, so much so that I used to be amazed at her culinary knowledge. I was looking forward to the same, but found that missing in Unaccustomed Earth.
There are two parts in the book: the first one has 4 stories, and the 2nd part has 3 stories. I did not realize till the middle of the last story that the 3 stories in the 2nd part are actually related: based on the same two protagonists. Each story in the trilogy are spaced apart by a number of years .You could call me dim for not figuring this out earlier, but these stories are just like the previous ones, and each one could be read without any bearing on the previous ones, and none of them give any direct indication of a connection, except for the names of the characters (which could have been anything in any of the stories without affecting the plot). The first two parts are narrated by the two individual characters, based around their separate lives. The third story is narrated by the author, linking the two characters together finally. Being a fan of different narrative styles, I loved this.
Finally, Jhumpa proves that she can write not only about life in the US, but also Europe, where a considerable portion of the final story is based.
Brilliant piece of writing. Highly recommended reading.
I recently finished reading One Flew Over the Cukoo’s Nest: by Ken Kesey. This novel has been included in TIME Magazine’s 100 Best English-language Novels from 1923 to 2005.
The novel is based in the mental ward in a psychiatric hospital in Oregon. It is an allegory on the psychopathic obsession of that time (the 1960s). The story is narrated by a gigantic, half-Indian “Chief Bromden”, a patient of the ward who suffers from hallucinations and delusions.The ward is controlled by a tyrannical nurse: Nurse Ratched who reigns over all the inhabitants of the ward, including the orderlies, the staff nurses, and even the doctor. He controls everyone with surgical precision, using underhanded tactics to render everyone helpless and submissive.
Things change with the arrival of Randal McMurphy, a Korean veteral who has a history of insubbordination and street brawls. McMurphy quickly realizes that several patients in the ward are sane and simply emasculated because of the nurse and her controlling tactics.
This novel is about the fight between authority and free spirit.
I started reading this book by Ken Follet over 5 months ago. When I just had a couple of dozen pages left to finish the book, I went away to the US and for some reason I did not carry the book with me. Now that I am back in India for a while, I finished the book today. It is a really big book with over a thousand pages. There are several plots in the story, and like most really long stories, you feel that some of those could have been avoided for the sake of a smaller and crisper story.
The plot of the story revolves around the building of a cathedral in medieval England during the period of civil war and how the lives of several people around the cathedral is embroiled in politics and powerplay. The book spans several years and hence the author has been able to sketch the characters in great detail (no surprise there).
Several reviews on amazon tout this book as a breakthrough in the historical fiction genre, which I think is a bunch of nonsense (no wonder since the book was a part of Oprah’s book club). I don’t really have good things to say about Oprah’s book club and I would probably have not picked up this book had I known earlier, but the book did turn out to be entertaining, with a lot of gratuitous sex and violence thrown in. Sometimes it drags simply because the plot is very twisted and long.
I did learn a bit about medieval architecture, cathedrals, clergymen, nobles and the like. All in all, I recommend this book for a one time read. Entertaining, but long.
I have always derived pleasure writing programs that solve real world problems. This is one such problem that I was able to solve. With the holiday season on, you might want to send greetings to your numerous business contacts. If you have several contacts that you want to send personalized messages to, then you very well can imagine how much time and effort that will take.
So this is what I set out to do: create an application that would send out emails to several contacts, with a personalized greeting line, but similar message body. Also, depending on the type of contact, you might want to send a different message. E.g. if it is a close colleague of yours, then you might want to send a more personalized mail rather than a one liner. Since these are personalized emails, these need to be sent from your actual email id rather than an SMTP server on your dev machine. Also, I needed this application to work for someone else who runs only MS Office on his machine. So I decided to use Microsoft Office Outlook 2007 for this task.
The first thing to do was to decide the fomat in which I would store all the configuration information that would be used by the application: So I created two different text files, mail1.txt and mail2.txt each with a separate email message:
Hello {0}
Mail body
Where {0} is a placeholder that will be replaced by the receiver name. mail1.txt and mail2.txt have the same structure except for the mail body depending on the requirement.
Next, I needed to create a list of names and the corresponding email IDs to which the mails are to be sent. Also, I needed a flag that will indicate the type of message that is to be sent, i.e. mail1 or mail2. I created a comma separated file with the following format:
<Receiver’s name>, <email id>, <mail body to be sent, i.e. 1 or 2>
I wrote a console application in C# that uses the Microsoft Office 2007 Primary Interop assemblies to automate sending emails to all these contacts specified. The emails get sent using the default account configured in your Outlook. The code looks something like the following. Please note that this is a quick hack which actually works and that I have not really done a lot of error handling or exception management on this because I know the conditions under which this will be used.
Microsoft.Office.Interop.Outlook.Application app = null;
Microsoft.Office.Interop.Outlook._NameSpace ns = null;
Microsoft.Office.Interop.Outlook.PostItem item = null;
Microsoft.Office.Interop.Outlook.MAPIFolder inboxFolder = null;
Microsoft.Office.Interop.Outlook.MAPIFolder subFolder = null;
Microsoft.Office.Interop.Outlook.MailItem memo = null;
Microsoft.Office.Interop.Outlook.MAPIFolder sentFolder = null;
StreamReader addressReader = null;
StreamReader contentsReader = null;
StreamWriter logWriter = null;
try
{
addressReader = new StreamReader(ConfigurationManager.AppSettings["addresses"]);
String currentLine = String.Empty;
String[] currentReceiver = null;
String messageBodyFile = String.Empty;
logWriter = new StreamWriter(Path.Combine(Environment.CurrentDirectory, "Log.txt"), false);
while (!addressReader.EndOfStream)
{
currentLine = addressReader.ReadLine();
currentReceiver = currentLine.Split(',');
switch (currentReceiver[2])
{
case "1":
messageBodyFile = ConfigurationManager.AppSettings["contentsFile1"];
break;
case "2":
messageBodyFile = ConfigurationManager.AppSettings["contentsFile2"];
break;
default:
Console.WriteLine("Could not send email to ", currentReceiver[0]);
logWriter.WriteLine("Could not send email to ", currentReceiver[0]);
currentReceiver[1] = String.Empty;
break;
}
#region EmailInit
app = new Microsoft.Office.Interop.Outlook.Application();
ns = app.GetNamespace("MAPI");
ns.Logon(null, null, false, false);
sentFolder = ns.GetDefaultFolder(OlDefaultFolders.olFolderSentMail);
memo = (Microsoft.Office.Interop.Outlook.MailItem)app.CreateItem(OlItemType.olMailItem);
#endregion
contentsReader = new StreamReader(messageBodyFile);
memo.To = currentReceiver[1].Trim();
memo.Subject = ConfigurationManager.AppSettings["mailSubject"].Trim();
memo.Body = String.Format(contentsReader.ReadToEnd(), currentReceiver[0]);
memo.BodyFormat = OlBodyFormat.olFormatHTML;
memo.Send();
Console.WriteLine("{0}: Sent email with body {1} to {2}:{3}", DateTime.Now, currentReceiver[2], currentReceiver[0], currentReceiver[1]);
logWriter.WriteLine("{0}: Sent email with body {1} to {2}:{3}", DateTime.Now, currentReceiver[2], currentReceiver[0], currentReceiver[1]);
contentsReader.Close();
contentsReader.Dispose();
}
}
catch (System.Exception ex)
{
Console.WriteLine(ex.ToString());
EventLog.WriteEntry("Email Automation", ex.Message, EventLogEntryType.Error);
}
finally
{
ns = null;
app = null;
inboxFolder = null;
addressReader.Close();
addressReader.Dispose();
logWriter.Close();
logWriter.Dispose();
}
So, I vented my anger by writing a blog-post about the latest terror attacks. Apparently the NSG has flushed out the scum from the Taj hotel. Things are going back to normal. I have not watched the news since the evening of the ill fated day (EST). One of the questions I asked a couple of questions in that post was:
“What can we as citizens of a civilized society do to protect our interests? The cause of these terror attacks are varied in various places, but it is innocent people walking on the street who bear the brunt (and the people who go out to fight for us)”
And I have been thinking about this on and off. I have asked this question to several people. I am just plain baffled by the lack of responses or ideas. Varish said that it is time for the political system of the country to start acting tough. Really? Is this the time for the gov to start acting? The government should have acted way too long ago. Anyway, that is not even the point.
We all have conceded at some point that the government of ours is not doing much other than condemning the attacks and making vain platitudes. The dirty politicians will even turn this to their advantage so that they can gain political mileage for the upcoming general elections.
All right! Enough trash talk. We know that the government is not doing what it is supposed to. So I ask the question again. What do WE do? We are the educated elite of the country. We cast those votes. We elect those representatives. Is there something we can do to help? I feel we are totally lost on that question.
I suggested doing a signature campaign amongst the student and young professional networks in and out of India. We could send those signatures with a message to our respected Prime Minister. My good friend asked me whats the point behind a signature campaign? I said, “we need to make sure that the government understands that the educated elite of the country, both in India and abroad needs to see some real action now, and not just empty promises.”
Then he asked me a question to which I did not really have an answer: “Doesn’t the government already know that it has to battle terrorism?” . Just that any Indian government does not have the guts to take the right steps which are against their own self serving motives. And even we the people are to blame. Everytime there is an attack on teh city, we say that Mumbai is unbreakable. We are the most resilient city in the world. Hell we don’t want to be resilient! Why is it that all these pains and agonies are forgotten a couple of days after the bloodstains have been washed? The sacrifices of the security forces and the pains of the people disappear into oblivion and we settle down into our old routine. This continues till the time there is another attack. Oh yes, don’t be fooled into thinking that they are done.
So I was set into thinking what would the damn signature campaign achieve? It would probably serve the purpose to make it clear to the government that we are pissed off. But doesn’t the gov already know that? Like Jayu said “they cannot be that detached from public sentiment”. So how do we make them do it? In an ideal democracy (oh and we are very proud of the fact that we are a democracy) the people are able to hold the gov accountable for their actions and inactions. Why can’t we do that in India?
“Electoral power is supposed to be the form of public control over its govt in a democracy. Here it gets sold for free sarees and rice during election time. The educated middle class has a very small say in the overall process.”
So this is my sincere message to everyone reading this post. This general election, PLEASE GO AND VOTE. Cast a responsible vote. Our only goal should be to cast aside all our feelings of mutual distrust and communal agendas and questions of religion and reservation, and elect a government that would actually ensure that our people don’t get slaughtered on their own street.
The only other weapons that we have are the RTI and the PIL. But only the legislature has the right to ammend the constitution. The courts can only direct the legislature to do something. So let us wield the only real weapon we have. The right to vote. Let the current government understand that they have to prove a point to us, and that we are watching. And let them consider this a threat: we will not vote for you if we do not see results.
Note to all the readers: If you have any ideas, post a comment.
As I write this, my city burns. Terror attacks in several locations in Mumbai….it is all over the news. I don’t think the country has witnessed such carnage in a long time. Yes, I say long time because India has sort of gotten used to the idea of terror attacks now. Mumbai itself has been the target of several such attacks. Barely a couple of months go by when you hear about another one of these bomb blasts on TV. Few things make me feel more helpless than a terror attack. And as I write this, I am sitting several thousands of miles away from my city.
But there was something very different about what happened today/yesterday (depending on which part of the world you live in). All this while the terrorists were hidden; they planted bombs clandestinely and ran away. This time, they had the guts to walk into my city, fire at people, lob grenades, hold people hostage and gut some of the main spots in the city. What is noticeable is that these terrorists have targetted places that are frequented by westerners. Colaba is an area that has a good density of foreign tourists and the Taj hotel (where one of the bloody gunbattles are being fought) plays hosts to several foreign tourists and business delegates. This is not just an attack on India. This is an attack on all the good people of the world who want peace.
There were reports of these terrorists dragging people out of the hotel and asking for their passports to look for people from the US, UK and the like. I don’t know if this is confirmed news (it was definitely aired on one of the news channels broadcasting the events, so I took it at face value).
A few questions strike me:
1. Why is it that we are not able to prevent such blatant attacks on our home? Is our intelligence system so bad that we had no clue?
2. What do these terrorists want? Perhaps we could make a deal with them if we are too scared to go out and settle scores (atleast that seems to be the case to me a lot of times, and a lot of people will agree)
3. What can we as citizens of a civilized society do to protect our interests? The cause of these terror attacks are varied in various places, but it is innocent people walking on the street who bear the brunt (and the people who go out to fight for us)
The situation in India is unique, as compared to other countries that face the threat of terrorism. We have several internal problems and have a very troubled history, marred by communal conflicts. The scars of such conflicts are magnified by terrorist masterminds who turn troubled youth into blood-thirsty monsters. In the very early days of terrorism, terrorists used to be foreigners (I will not name the country, but we all know who I am talking about). As time progressed, terrorists started to come from interiors of the country. These are dissatisfied youth, who have been affected by communal clashes, who are brainwashed by the big terrorist organizations, trained by them and sent back into our country to cause misery to innocent people.
The solution has to be two pronged:
1. Deal with the external elements who propagate the terrorist ideas and fund such endeavors. This can only be done when like minded countries cooperate with each other to end global terrorism. This is because all global terrorism is interlinked and is funded and propagated by the same set of big organizations.
2. Deal with the internal elements. Bust the sleeper cells. Throw out the hidden extremists. Enforce the rule of law so that the gullible youth is not misguided by these scumbags.
All this has to be implemented around a framework that is designed to prevent such future occurences. A working intelligence system (do we really have one?), a proper disaster management system, adequate security measures at hot spots. I know people say that it is difficult to police a country of billions. But this is the price we pay if we don’t. After the serial train blasts, we installed faulty metal detectors at some stations (the ones on the entrance of CST station barely worked), and assign 2 police constables at each major station. Did that work? We never thought that the outside of the station could be vulnerable too. Perhaps we thought that these terrorists are gonna keep planting train bombs. Do we even have trained people who are capable enough to design solutions to handle these problems? All this infrastructure has to be put into place.
The last thing I want to see is these stupid political parties trying to gain mileage out of this mess by pointing fingers at each other. I will be very very pissed off if a party calls a Mumbai bandh or a Maharastra bandh (or any such extension) to gain public attention. Such measures gain nothing and simply cause more distress to the already troubled people. I want to see some action. I need these terrorists killed. I don’t want empty promises. Are you listening? Oh and if there is something I could do……..let me know. Right now I am limited to watching the news, writing pissed off emails and angry blog posts.
I am writing code in C after several years. Needless to say, I am woefully out of touch and don’t remember the most basic of things. Add to that, I am writing code using a simple text editor and compiling it using gcc on commandline. Every time I see a funny error, it takes me a while to actually understand what is wrong. A really good IDE with awesome intellisense really does spoil you!
So I got this funny little compilation error which left me stumped:
/tmp/cckI2FzP.o:(.eh_frame+0×11): undefined reference to `__gxx_personality_v0′
collect2: ld returned 1 exit status
I googled and found that this error is normally related to C++, but I was writing code in plain old C. So what was wrong? I found later that I had named my code file as List.C instead of List.c. After renaming it to List.c, all was well.
Turns out that filename extensions in linux are case sensitive (wonder why I did not run into that problem all these years), and that C is a commonly used extension for C++
So I was out in NYC on the second day of my trip. We did not have much planned. I wanted to go to Rockefeller Center and my friends agreed kinda for the want of a better plan. So we got out of the subway station, and we saw this Brazilian carnival happening. You know what to expect in such a place. It was full of life and lots of people; brimming full of food, music drinks, and some other good things.
After a while I got very thirsty and wanted to get out of the place cos it was too crowded. Then we went over to Rockefeller Center and later the St. Patrick’s cathedral and did the regular tourist stuff (you know…clicking pics and all that). Most of the people were already tired and they were sitting on the cathedral stairs outside. One of my friends suddenly said, “Hey, Rafael Nadal just walked along the street).
“What?”. I did not want to believe that, but I just found myself saying “Lets go” and I started running across the street. I heard my friend say that he was wearing a yellow tshirt. My mind was a whirl. It could easily have been a mistake. But NYC is currently hosting the US Open and I did not want to miss a glimpse of the world’s top seeded tennis player. I spotted the man in question from across the street but the crossing was difficult due to the traffic. I had to wait for the walk signal to come on, an then I ran again. He looked slightly taller than what I expected and the hair looked shorter and straigher from behind. Nevertheless I kept running and went ahead past him. I heard that unmistakable voice speaking fluent Spanish. I forgot to mention, he was walking with a couple of other guys (and they were all walking very fast, as if they were in a hurry).
I turned around and looked at him. I was still not sure and I just stood there while he walked past. I saw someone else approach him and shake his hand while he continued to race along the road. I was reluctant to approach him since he seemed in such a hurry and I told my friends that he wont stop for us. But two of my friends were insistent and they went and they stopped him and requested for a picture. I did not see much, but I just happened to notice Nadal turn around and pose for the photograph. I ran ahead to bask in the moment.
I was meeting my favourite tennis star of the time. Ironically the guy who clicked the photograph was the one who was most crazy about Nadal. (Thanks for clicking the picture Sanatan). After the picture was clicked, we yelled a “Thanks Rafa” chorus and we knew that our day was made.
Ok. I am back after a long hiatus. Today marks the completion of 3 weeks since I landed in the USA. I have come here to pursue a Masters’ Degree in Computer Science. I could not think of anything to write about because most of my recent posts have been about books I have read. The last book I read was “Pillars of the Earth” by Ken Follet, and unfortunately I did not get enough time to complete it before my flight to the US. And for some reason, I did not even carry the book with me (maybe it was the size of the book). So, its been 3 weeks since I read anything creative and hence no posts. Life in the US is not very different from what it was back home. I still feel like I am here on an extended nightout at a friend’s house.
The past 3 weeks were spent in setting up my new house, shopping, eating, sleeping, shopping, opening bank accounts, roaming around campus, shopping, waiting for my new laptop to get delivered, and other miscellaneous things not worth writing about. This makes me feel that I have done absolutely nothing productive in the past 3 weeks. Oh yes, I have this big obsession about productivity and using my time effectively (but I end up wasting most of my time anyway and then fret about it in posts like these).
One noticeable difference between life in Bombay and life here in the US is that I do not have to use public transport as extensively as I had to while in India. My university runs a shuttle service which takes me to most nearby places, and not just to and fro. That having said, it is quite difficult to go even relative far off places without a car. Bombay suburban transport system rocks. Yes, I said Bombay and not Mumbai. You would be surprised….people here do not know Mumbai, and I like calling it by the old name. It got a classy zing to it.
As it is apparent, I am suffering from a writer’s block. Suggest me of something to write about.
My Name is Red (Benim Adım Kırmızı) is a turkish novel by Orhan Pamuk, a Nobel laureate. It won the International IMPAC Dublin Literary Award in 2003, as well as the French Prix du meilleur livre étranger and Italian Premio Grinzane Cavour awards in 2002. The book in consideration in this article is the English translation by Erdağ M. Göknar. There have been questions about the English translation not being as good as the Turkish version and the word order being quite difficult. But honestly, I did not know that the book I was reading was actually an English translation and not an original English work.
The story is based in 16th century Istanbul, a year before the thousandth anniversary (calculated in lunar years) of Hegira (the migration of Muhammad and his followers to the city of Medina). The Ottoman Sultan Murat III has commissioned an illustrated manuscript to display his power to the Venetian Doge. This manuscript is to be made utilizing the “controversial” aspects and techniques of the Frankish masters, namely portraiture and perspectives. Due to this reason, the Head Illuminator of the Sultan is bypassed and the work is commissioned to Enishte Effendi, who co-ordinates Master miniaturists Stork, Olive, Butterfly and Elegant. It is rumored that the paintings are blasphemous and an affront to Islam and The Prophet. Subsequently, the master guilder Elegant working on the manuscript is murdered. The book follows the path of a murder mystery where the identity of the murderer is revealed at the end. Pamuk’s knowledge of Islamic miniatures is mind-blowing. He goes on to narrate several stories from Islamic lore, stories of great miniaturists and their history, going back to Behzad and the Chinese influences brought by the Mongols. The book discusses and debates about various topics, the most prominent of these are:
· Form and style,
· The relationship of art to society, religion and God, and
· The artistic, cultural and political differences between the Ottomans and the Venetians.
The first thing that strikes you while reading this novel is that the story is narrated in several different voices which recur throughout the story. No two consecutive chapters are narrated by the same narrator and all speak in the first person. There are a couple of rather unusual narrators: a gold coin, a tree, a dog, Satan, and even Death itself. I later figured that these narrators are in fact the central themes of the illustrations appearing in the secret manuscript in question in the book. One of the central points about traditional miniatures, I learned, is that they always appear as illustrations of a story, and never as independent paintings. Pamuk has adopted this style in his narration of the story: by describing the protagonists as part of an old manuscript, supporting the story. The characters are aware that they are characters in a story and address the reader with irony.
The setting of the story in late sixteenth century Istanbul is detailed; the plot is engaging (albeit a bit slow moving in certain places) with several interesting characters. Indeed there are too many themes in the book (art, religion, Allah, love, lust, jealousy, hatred, intrigue, murder) and I cannot do justice to all of them in this short article. If you are interested in Islamic art, Ottoman miniatures or medieval Istanbul, then pick up this book. But be warned, this is not an easy or quick read.
