Archive for April, 2009
Often when I’m programming, I’ll need to list a bunch of stuff and put commas between them. Like this: 1,2,3,4,5 Usually, this is what I, and most of my colleagues do: List<int> nums = new List<int>(); [ READ MORE ]
Tests are extremely important in software, especially unit tests. I would go as far as saying that tests should be a core part of all the code that you write. Tests however, are also very unpopular among programmers, and many programmers don’t write them at all. That’s right. I’m saying that 90% of the programmers [ READ MORE ]