Thursday, June 30, 2005
MS AntiSpyware and Unit testing
And according to the post at MSDN forum this seems like the only solution for now
Sunday, June 26, 2005
SCJA Beta experience
I did the SCJA beta exam today. It was relatively easy but i still feel it’s quite different from SCJP. SCJP tests very deep in your core java skills. But SCJA tests the overall understanding on the entire java platform (standard, enterprise and mobile) as well as other related technologies often used along with java such as UML, XML and HTML. But the important factor is the exam doesn’t go very deep into these technologies and just tests your understanding of these technologies.
If you want to certify that you have a good understanding of the overall java platform and the kind of applications you can develop using various editions of java and you understand how other technologies such as XML and HTML etc works along with java and to show you can interpret basic UML diagrams the SCJA certification is ideal. But if you want to show your expertise on core java then go for SCJP.
Thursday, June 23, 2005
Global error handling for Windows applications in .NET
Just had a situation where there was a need for a global error handler method for windows applications in .NET. This handler should be invoked whenever there is an unhandled error raised in the windows application.
A way to do this is handling the ThreadException event of the Application object.
For example:
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.ThreadException+=new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
Application.Run(new Form1());
}
private static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
{
MessageBox.Show(e.Exception.ToString());
}
Maybe there are other methods of doing this as well. But for a single threaded application this seemed ok.
Wednesday, June 22, 2005
Article on NHibernate
Dilbert cartoons
http://www.tapestrycomics.com/dilbert.xml
Doing my MSc in IT from Keele
Hopefully will be able to finish it off without any interruptions
Writing poetry
On the publishing side two of my poems are available at http://www.poetry.com/ titled "The Mask" and "From My Hearts Core". And the poem titled "From My Hearts Core" was published in a couple of poetry editions. But it has been a very long time since I did write anything else after that (a good 2 to 3 years)
Article on Transactions in .NET 2.0
Check it out at the following URL:
http://www.simple-talk.com/2005/06/22/net-20-transaction-model/
Minor tweaks to my blog
So at the moment i have two feeds exposed in my blog which i dont think its a very good idea. So until i find a way to redirect anyone subscribed to my atom feed to my rss smart feed i will be sticking with both feeds in my blog.
Tuesday, June 07, 2005
Interview with our MVP lead
http://www.microsoft.com/singapore/technet/flash20050531a1.mspx
Monday, June 06, 2005
Beta 1 RC???
So quoting from the blog entry for anyone who was confused as me:
Beta 1 RC is available - "It's a feature complete version for Beta 1"
Beta 1 for Indigo (the real Beta 1, not the RC of Beta 1) is coming in
"Summer, 2005"