Category Archives: Development

Dotnet development

WPF localization

To repro a bug I’ve created a simple WPF application that displays two labels bound to the same DateTime object. The bottom one is converted to a string using a IValueConverter. Both should be formatted the same but aren’t. By … Continue reading

Posted in Development | Tagged , , | Leave a comment

Powershell optimization

After rewriting my PowerShell test environment automation script with functions I optimized some parts to improve memory usage, automate IIS Webfarm configuration and batch starting/stopping all machines is a Azure Cloud Service. Download For installation of software the script downloads … Continue reading

Posted in Development | Tagged , , | Leave a comment

Powershell Functions in my Azure setup script

In my Automate test environment with azure virtual machines post I’ve written about my Azure setup script. To improve readability and making the creation of a new machine easier I decided to rewrite some parts to functions. The customscript extension … Continue reading

Posted in Development | Tagged | 1 Comment

Lessons learned while solving a software issue on a client’s laptop

“This laptop has the latest version of the software and it’s not working”. That is how it ended up on my desk. After two days of debugging, crashing and reading log files I solved the problem. I’m hired to get … Continue reading

Posted in Development | Tagged , , | Leave a comment

First look at Managed Extensibility Framework (MEF)

Microsoft’s solution for dependency injection is called Managed Extensibility Framework (MEF). Dennis presented about this on the Techdays 2015. Now it is time to look at this myself with a simple demo app. Demo app I’ve created a demo app … Continue reading

Posted in Development | Tagged , , , | 1 Comment