Tuesday, May 17, 2005

Don't overwork yourself

If we do not take care of ourselves, we will not have the ability to take care of anything else.

Wednesday, May 11, 2005

The Developer Status Meeting

The Developer Status Meeting: "The Developer Status Meeting"

Code article for developers meetings

Tuesday, May 10, 2005

An easy way to find the .NET framework path in C#

string msNetPath = string.Empty;
msNetPath = typeof(object).Assembly.CodeBase;
msNetPath = msNetPath.Remove(0,8);
msNetPath = Directory.GetParent(msNetPath).ToString();