Skip to main content

Mani Ratnam's Raavan (Tamil Version)

For this post I am deviating from my regular posts as I think this film needs a review from a film buff like me. My niece booked the ticket for me and my family for Mani Ratnam's  Raavan (Tamil Version) which has Vikram, Prithviraj and Aishwarya Rai in lead roles. Like others I too had a big hope in this film as it was from Mani Ratnam. But it all vanished as I left the theater at 2:30AM where the show started at 12AM in Sharjah, Concord. The film does not do any justice to the viewer. First of all the film didn't need Aishwarya Rai and would have been better if Shobana was heroine. Aishwarya Rai was like a pretty beautiful doll being kept in different locations without much emotions. Other main thing was the director very deliberately wanted to make the viewer think that he has made the film with the epic Ramayana in mind which is denoted y the entry of veteran actor Karthik acting like a monkey at the forest check post. He is also been made to act in a scene where he meets Aishwarya Rai by acting like a monkey inside the deep forest where she is kept as hostage. Luckily he didn't had a tail otherwise the director would have burnt that also to make us feel that the film is a modern Ramayan. That character itself was unnecessary. The hero was being characterized as a person with the character of Raavan in Original Ramayana by the villagers is also very funny. A scene where Aishwarya Rai is seem to be  sleeping on a branch of a tree while jumping down Athirappally waterfalls in Kerala which is shown several times throughout the film also doesn't look convincing. The film fails to attract person like me other than the initial few minutes from the titles till Aishwarya Rai is getting abducted. The film is a miserable waste of time and money. I will give this film 2 stars out of 5.

Comments

Popular posts from this blog

Create Great looking diagrams - Gliffy.com

I was looking for an online diagram creating tool. Came across Gliffy.com where I could create actually great looking diagrams without much of learning curve. The tool is 1. Very easy to use 2. Has drag and drop of elements to your diagram 3. Collaboration (which I have not tested). 4. Works from anywhere on a browser with Internet connection (I used it in Google Chrome on Linux Mint 10) When you click on the "Try it now" a new screen will open as below. You can either create a blank page to create a diagram from scratch or select from a bunch of samples and work on them to create one for your requirement. There are options to export the diagrams you created to SVG, JPEG, PNG and XML format once you register for free on the website. Once you register you can save the diagrams that you created in the site itself and retrieve it at a later time by logging into the website. I made three diagrams and it was real easy and simple. The site has two kind of pa

How to Configure Samba to Share a Folder with Two Users on Ubuntu (with Read/Write and Read-Only Permissions)

Samba is a file sharing software that allows you to share files between Linux and Windows computers. It is a popular choice for home users and businesses alike. In this article, we will show you how to configure Samba to share a folder with two users, one with read/write permissions and one with only read permissions, on Ubuntu. Prerequisites Before you begin, you will need the following: A Linux computer running Ubuntu Two user accounts A shared folder Steps Install Samba. sudo apt install samba Create the shared folder. sudo mkdir /shared Configure Samba's global options. Open the Samba configuration file /etc/samba/smb.conf in a text editor. Add the following lines to the [global] section: security = user passdb backend = tdbsam This will set the security mode to user , which means that users will be authenticated using their local Linux accounts. The passdb backend option specifies the database that Samba will use to store user passwords. In this case, we are using the tdbsa

Kerio Connect - SQLLite journal.db error

Today I noted that the Keio Connect mail server had thousands of error.log files with 75MB size filled up in the server. As always Google gave the answer. The error looks some what like below. [10/Aug/2011 10:49:35] SQLiteDbWriteCache.h: write_thread - file '/path/to/file/<user>/.journal.db', SQLite error: code 1, error SQLITE_ERROR[1]: no such table: journal_temp The solution is as below 1. Delete the cache from the client's workstation 2. Delete the profile 3. Stop the server 4. Go to the server and navigate through the user's store folder 5. Delete the .journal.db (for Linux it is  find . -name "FILE-TO-FIND"-exec rm -rf {} \; ) 6. Start the server 7. Create a new profile for the clients workstation With help from Kerio Forum Cyberciti