I watched Paa tonight and I'm awed. No word seems appropriate enough... Its not beautiful, or fantastic or superb... its just up there! Its an Amitabh Bachchan movie!!! Probably the best movie that I'v seen of him. That man is a class apart. I used to think that he's the greatest actor Bollywood's ever had. Now I would go as far as to say, he's the greatest actor this world has ever seen... He just gets better and better with time. Old wine!!!
Its a great movie. Balaki has done a superb job. Every actor has added value to the movie... Every dialog, every song is carefully integrated... There's not a single moment that lacks magic... Bachchan Ji is so convincing as a smart ass, special 12 year old sick kid. You actually fall in love with the kid. His acting is just effortless... Is he even acting?
The movie doesn't try to make the audience cry. You just feel tears pricking at the corners of ur eyes and something tugging at ur heart even while you are laughing at some wisecrack of the incorrigible Auro.
Abhishek is so good in his role as the tech savvy, reformer politician and so is Vidya Balan as the loving mother who is a strong, independent woman. Hats off to Mr. Balaki... and Mr Bachchan... words can't do justice to the respect that I'm feeling for him.
Sunday, December 6, 2009
Saturday, December 5, 2009
Singleton class example in C#
namespace SingletonClass
{
public partial class Form2 : Form
{
static Form2 currentInstance;
private Form2()
{
InitializeComponent();
}
public static Form2 GetForm2()
{
if (currentInstance == null)
{
currentInstance = new Form2();
}
return currentInstance;
}
public void Form_Close(object o, EventArgs e)
{
currentInstance = null;
}
protected override void Dispose(bool disposing)
{
currentInstance = null;
base.Dispose(disposing);
}
}
}
{
public partial class Form2 : Form
{
static Form2 currentInstance;
private Form2()
{
InitializeComponent();
}
public static Form2 GetForm2()
{
if (currentInstance == null)
{
currentInstance = new Form2();
}
return currentInstance;
}
public void Form_Close(object o, EventArgs e)
{
currentInstance = null;
}
protected override void Dispose(bool disposing)
{
currentInstance = null;
base.Dispose(disposing);
}
}
}
Monday, November 16, 2009
Well Done Sachin!
Sachin Tendulkar has done India proud once again by showing that he's a true patriot. Rightly said Sachin, you are an Indian first of all... We need more Indians like him who are ready to stand up to trouble makers like Thackerays...All the Bals and the Rajs of this world care about is their votebank. This kind of cheap propaganda gets uneducated people to become delusional MNS followers. Its the educated people supporting them that disappoints me.
Sql Project in .Net vs 64 bit OS :(
SQL compact is only supported in 32 bit WOW mode on the 64 bit platform.Thus many problems might arise when trying to run SQL based .net solutions on x64 version of Windows. An excellent resource on this is:
http://erikej.blogspot.com/2008/01/x64-and-sql-compact.html
http://erikej.blogspot.com/2008/01/x64-and-sql-compact.html
Subscribe to:
Comments (Atom)