Monthly Archives: December 2013

Google Chrome Handles click event of submit button “differently”.

Well, chrome, you are still my favorite browser, but you are handling the click event improperly. I noticed this after I was not getting any error messages and my form was not posting. Basically, if you do something like this: … Continue reading

Posted in Development | Leave a comment

Don’t mix business concerns with your repositories.

Although this may seem like a clear violation of SRP (single responsibility principle), it is often tempting to put simple logic in the repository — DON’T DO IT! Here is the code that I just came across that frustrates me. … Continue reading

Posted in Development | Leave a comment