aloker

Stories kicked by aloker

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

submitted by alokeraloker(1810) 1 year, 10 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: 10

tags: another

Markup Preview(blog.andreloker.de)

submitted by alokeraloker(1810) 2 years, 7 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) 3 years, 1 month 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) 3 years, 2 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) 3 years, 2 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) 3 years, 2 months ago

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

add a comment |category: |Views: 376

tags: another

ASP.NET MVC 1.0 has been released!(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years, 2 months ago

To keep up with a good tradition (see here and here), I’m being one of the earliest bloggers having great news on ASP.NET MVC: we are at version 1.0! This means production ready, supported, stable, …! Grab the download at Microsoft.com. read more...

2 comments |category: |Views: 320

tags: another

Boxing nullables(blog.andreloker.de)

submitted by alokeraloker(1810) 3 years, 2 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) 3 years, 2 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) 3 years, 2 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: 310

tags: another

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

submitted by alokeraloker(1810) 3 years, 2 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: 690

tags: another

Big websites gone small(blog.andreloker.de)

submitted by alokeraloker(1810) 3 years, 2 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) 3 years, 2 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

.NET - Health Monitoring in ASP.NET 3.5(dotnetcurry.com)

submitted by pycckipyccki(357) 3 years, 2 months ago

I am a big advocate on less is more, and when it comes to writing code to monitor an ASP.NET application, less code is definitely more. As a developer, once you have finished developing your application and it’s deployed into production, you’ll need to monitor it and have it notify you when something goes wrong. There are several ways to do this, from utilising the global.asax file to writing custom classes. But a little known feature in ASP.NET is health monitoring. This gives you the ability to monitor the health of an ASP.NET application. This article won’t delve into the specifics of creating your own custom health monitoring class, but it will focus on what is available to ASP.NET developers out of the box. read more...

1 comment |category: |Views: 570

tags: another

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

submitted by alokeraloker(1810) 3 years, 3 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: 40

tags: another

First attempts with Gallio(blog.andreloker.de)

submitted by alokeraloker(1810) 3 years, 3 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