aloker

Stories submitted by aloker

Visual Studio: default build action for non-default file-types(blog.andreloker.de)

submitted by alokeraloker(1810) 1 year, 7 months ago

With a simple file you can tell Visual Studio to use a certain default Build Action for specific file types. This reduces the chance of missing files on the server when using the built-in publishing functionality. read more...

add a comment |category: |Views: 7

tags: another

Markup Preview(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 3 months ago

Markup Preview is a web app that instantly renders a preview of varied markup languages as HTML. read more...

add a comment |category: |Views: 5

tags: another

ReSharper 4.5 gone gold(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

JetBrains has released version 4.5 of their multi purpose productivity plugin for Visual Studio, ReSharper. This updates contains some pretty cool features. For example, solution wide analysis now checks for members that can be made internal. Also, JetBrains promises to have improved performance and memory use. All in all certainly an update that is worth installing, especially because updating from licenses for version 4.0 and above is free read more...

add a comment |category: |Views: 314

tags: another

Debugging speed of Gallio fixtures – reloaded(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

As Jeff Brown found out, the slowish debugging experience of MbUnit 3 tests is due to the fact the MbUnit 3 uses a single threaded apartment (STA), whereas MbUnit 2.4 uses a multithreaded thread apartment (MTA) read more...

add a comment |category: |Views: 7

tags: another

If you have a shiny new hammer(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

Extension methods are cool and tempting. But try not to overdo it - sometimes less is more. Contains a review of the Generic Extension Method Project. read more...

add a comment |category: |Views: 5

tags: another

Ruby’s send in C#(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

An C# implementation of the send function found in Ruby. read more...

add a comment |category: |Views: 372

tags: another

Boxing nullables(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

If your code makes decisions based on the type of a boxed value be aware that nullable values are boxed slightly different: they lose their “Nullable-ness” and become either null or the boxed version of the value that they hold. read more...

add a comment |category: |Views: 7

tags: another

Slow debugging of MbUnit tests with Gallio and TD.NET(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

If your code makes decisions based on the type of a boxed value be aware that nullable values are boxed slightly different: they lose their “Nullable-ness” and become either null or the boxed version of the value that they hold. read more...

1 comment |category: |Views: 23

tags: another

Using Gallio with NCover(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

The transition from MbUnit 2.4 to MbUnit 3/Gallio is not as easy as one might expect. This article describes how Gallio can be used with NCover in manual or automatic builds. read more...

add a comment |category: |Views: 304

tags: another

Algorithms: recursive and iterative depth first search(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

Just a quick post about an iterative depth first search algorithm which allows for "correct" unwinding during backtracking. read more...

add a comment |category: |Views: 641

tags: another

Big websites gone small(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 10 months ago

If you need a simple way to generate a thumbnail of a website, have a look at thumbscreator.net. This service created by Jan Welker and Klaus Bock allows you to create snapshots of websites in three different sizes by simply passing its address to a specific URL. read more...

add a comment |category: |Views: 6

tags: another

Re: Health Monitoring in ASP.NET 3.5(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 11 months ago

A description of the configuration elements and the preconfigured values related to health monitoring for ASP.NET. read more...

add a comment |category: |Views: 16

tags: another

Simple AOP: integrating interceptors into Windsor(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 11 months ago

In the previous article of this serious we learned how to intercept method invocations using DynamicProxy2 and IInterceptors. However, we had to create the proxy instances manually. If you use Castle Windsor you can let the IoC container create the proxies and inject the interceptors. read more...

add a comment |category: |Views: 36

tags: another

First attempts with Gallio(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 11 months ago

From time to time I like to check my development workflow and tools to see whether I’m still up to date. This time I thought it might be a nice idea to give Gallio a shot. If you don’t now Gallio: it is a platform to uniformly run unit tests from whatever unit test framework (MbUnit, NUnit, MSTest etc.) you use. It also integrates into a bunch of other tools which I use (CruiseControl.NET, NAnt, NCover, ReSharper et al). So basically it sounds like a cool idea. Here's my list of thoughts after using Gallio for 60 minutes. read more...

add a comment |category: |Views: 26

tags: another

Simple AOP: call interception with DynamicProxy(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 11 months ago

Aspect oriented programming (AOP) allows us to keep implement different concerns in isolation. In this article series I’ll describe ways to make use of AOP without much hassle. After the introduction to AOP in the first article I’ll show how we can use Castle DynamicProxy to intercept method calls for the injection of advice code read more...

add a comment |category: |Views: 95

tags: another

Simple AOP: introduction to AOP(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 11 months ago

Aspect oriented programming (AOP) allows us to keep implement different concerns in isolation. In this article series I’ll describe ways to make use of AOP without much hassle. This first article serves as an introduction to AOP to those that are not familiar with aspect orientation. read more...

add a comment |category: |Views: 50

tags: another