June 29, 2005

My new favorite web site!

BugMeNot.com

The one for the Fargo Forum was pretty funny....:)

jk

June 22, 2005

Old School VSS - OLE automation w/ VSS circa 1995

in searching for vss info this morning, I ran across this link. maybe i'll be inspired to write a vss addin? :)
jk

C# tip of the night


IList list = new ArrayList();
list.Add("the only item in my list");

for(int i = 0; i < list.Count; i++)
{
Console.WriteLine(list[i].ToString()); //using the variable 'i' is goodness
Console.WriteLine(list[1].ToString()); //erroneously using the number 1 instead of 'i' is not goodness
}