January 13th, 2010
I had problems with IE7, when you do a Ajax call after a data update, IE7 will not make that call, he just throws old data. To fix the “problem” you need to change the url you are sending to force it to send every time!
Read More »
January 10th, 2010

This book is highly recommend for those who love Zombie Movies
January 7th, 2010
Quick note on creating and returning JSON via a controler, without using JayRock, which allows clients, typically JavaScript in web pages, to be able to call into server-side methods using JSON as the wire format and JSON-RPC as the procedure invocation protocol. The methods can be called synchronously or asynchronously !
Read More »
January 5th, 2010
Knowing how to use regular expressions is important. Regular expressions help me solve problems both large and small.
There nothing magic about Regular expression. Just like a magician, there is nothing magic about magic. The magician understands something simple which does not appear to be simple or natural to the untrained audience.
Read More »
December 21st, 2009
I have been working with ASP.NET MVC since it`s first public release for MSDN developers. I would like to write down some quick notes that can be helpful.
Read More »
December 14th, 2009

I just finished reading the book on my Kindle 2. This book is a must read for everyone who love movies like “No Country for Old Men”. A Movie of the book is soon to be released next year.
December 12th, 2009
Quick note on “Sequence contains no elements” error message or by getting “InvalidOperationException” when calling Single from a LINQ query.
Read More »
November 26th, 2009

Make a relay race in Java with animated visuals. The original task was a school task that only needed to print team status and results in the Eclipse console. I liked it allot and made a really simple visual relay race. You have 5 teams with 4 contester running. Every contester is a thread working together as a team.
Read More »
November 24th, 2009
Quick notes about chained exceptions, and exception handling in general. I’m going to run a simple client program which will throw exceptions forcing the chain to throw exceptions and these exceptions will be caught by the next callers catch block. Then I’m going to print out the exception stack trace to see the chain.
Read More »
November 5th, 2009

In this post, I would like to write down some notes on dynamic data structures that grow and shrink at execution time. Linked lists, queues, stacks and binary trees will follow in this post.
Read More »
October 14th, 2009

This morning, I was one of few lucky web developers who got a Google Wave Invite from Google itself ! Google Wave is really cool, you should try it out when it’s out!
For me to enjoy Google Wave, I had to give away my 8 invites to friends close by so that we can try it out. The invites have to be verified, If you have an invite, add me to your contact list on Google Wave: milladd@googlewave.com.
Thank you Google !
October 11th, 2009

Arrays like Integer[] is a subtype of Number[] but List< Integer > is not a subtype of List< Number >. We would like lists to behave more like arrays, in that we want to accept not only a list with elements of a given type, but also a list with elements of any subtype of a given type. We then have to use wildcards.
Read More »