Archive for October, 2007

Building A Feed Reader: Episode One

I depend heavily on RSS. To find out what’s going on in general and in the technology sector. I have subscribed literally to hundreds of feeds. Needless to say, I need a tool to better help me manage all this information.
For a very long time I have been looking for a good RSS Feed reader. […]

Profiling .NET Applications I

If you are a serious developer, you are certain to have either come across or used tools to profile your application. This will let you know a couple of things about your code:

How fast it (the program) executes
How fast each method executes
Bottlenecks within the code
Number of times loops execute
Memory usage
Number of objects created

These are pretty useful […]