Monthly Archives: August 2009

ReSharper

I have been playing around with ReSharper today. Thanks to rasmuski for an excellent introduction. First impression is good. Lots of shortcuts to learn, but this could definitely be a productivity booster.

Posted in Code | 2 Comments

Yet Another Code Snippet formatter

First some text. Then some code: [TestClass] public class MyTest { public MyTest() { } [TestMethod] public void Test() { // Fixture setup // Exercise system // Verify outcome Assert.Inconclusive(); // Teardown } } Then some more text:

Posted in UnitTest | Tagged | Leave a comment

Code Test, Take 2

This is a test of formatted code: public CompleteStorageService(string connectionString, string fileName) { if (connectionString == null) { throw new ArgumentNullException("connectionString"); } if (fileName == null) { throw new ArgumentNullException("fileName"); } this.connectionString = connectionString; this.fileName = fileName; this.syncLock = new … Continue reading

Posted in Miscellaneous | Leave a comment

Kræmmermarket

Today was the yearly cultural day and fair in our small town. Lene had a stand and was actually able to sell some of our junk … ups … I mean valuables we no longer have a need for 😉

Posted in Private | Tagged | Leave a comment

Formatting code

I’m trying to find the best plugin for formatting the code.

Posted in Admin | Tagged , | Leave a comment

First post on new blog

OK, WordPress is installed, so no excuse for not posting anything here.

Posted in Admin | Leave a comment

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Posted in Miscellaneous | 1 Comment