Feeds:
Posts
Comments

Archive for March, 2009

Especially when dealing with code generation, checking “Auto-load changes, if saved” saves you the dialog that asks you to accept file changes from the outside of VS.

Read Full Post »

While writing tons of tests I would like to share some of my helper classes here. My first ones are for doing simple performance measurements (not too accurate) and repeating actions.
Code:

using (new Scenario("Sum of all squares from 1 to 100"))
Console.WriteLine("Sum is: {0}", 100.Times(x => x * x).Sum());

using (new Scenario("Print all squares [...]

Read Full Post »

Scott Hanselman about Oslo

Doug and Chris will talk about Developing RESTful Services and Clients with "M" at MIX . Scott had a chance to see a preview and posted about it:
Mix: Getting my head around Oslo, M and MGrammar

Read Full Post »

I just wrote off some ping urls (some german services, too) from the book Website Boosting 2.0 by Mario Fisher. When posting with Windows Live Writer these can be configured for beeing pinged on publishing new blog posts. Several blog engines also have configuration options or plugins for auto-pinging available.
http://blo.gs http://weblogs.com [...]

Read Full Post »