-
Visual Studio Productivity Tips & Tricks
You can boost your Visual Studio productivity if you know these little tips and tricks. We’ll go through some of the most useful code snippets, keyboard shortcuts and extensions.
-
Mutation testing and the quest for quality
In this post you’ll learn the differences between mutation testing and code coverage by comparing several code examples and you’ll also receive practical advice on improving software quality.
-
Rocking with Jira's Script Runner
In this post I will show you how to get up to speed with scripting in Jira. You will learn how to develop scripts, test them and various tips and tricks on how to develop in a productive way. I will show you a lot of examples and also provide a separate git repository which you can clone and play with.
-
7zip gotchas
This is going to be a short post about some gotchas when archiving files with 7zip from the command line.
-
Reducing boilerplate with Fody
This post is regarding reducing boilerplate code when implementing the MVVM pattern for WPF applications. One of the great things about MVVM is that you can bind properties to GUI elements and when you change one of them the other will update automatically. To get this to work you need to implement the
INotifyPropertyChanged
interface.