PS: This blog post is in the oven for last 8 months, because I waited for some time to make sure it is not something I wrote because of my feelings. I don’t really think it is unique to Bogazici University, but I see some value in sharing it on Devlicio.us, too. If you can read this, it means that...
Now before you write off this post as being ‘just another silly request’ hear me out. Right now in C# we can do the following switch( someObject ) { case Option1: case Option2: case Option3: // do something break; case Option4: // do something break: } Allowing fall through for a switch statement is...
The other day I posted the question on whether you would rather attend a structured and scripted session at a code camp, or a more free-form one. When I posted this I also posted a link to a short (1 question) poll to try to get everyone’s thoughts. It has been a few days so I thought I would...
All, I was thinking of doing a free-form session on Mocking with Rhino-Mocks for the upcoming Chicago Code Camp (sign up here ). When I say free form, I basically mean I would come prepared with a deck and code examples, but would open it up to the group to decide what is talked about and what direction...
Today I was looking through a sample Asp.Net MVC application and the first thing I noticed is that one of the controllers had 4 repositories injected into the controller (hey, at least they are injected right :) ). The code then went onto to interact with the various repositories in each of the various...