About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (217)
- Security (19)
- Test (32)
- Tooling (175)
- Uncategorized (168)
Most used tags
Tag Archives: Code
SQLite WARNING: Type mapping failed
The log of our product started showing SQLite warnings. We ignored them to focus on the release. Now it was time to repro and fix the warnings. After reading the verbose log we found the issue. Unknown datatypes are allowed … Continue reading
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
Crashing unit tests in Visual Studio
Today I got my unit tests to crash in Visual Studio. Right after some refactoring the tests stopped working and the output window contained the following message: The active Test Run was aborted because the execution process exited unexpectedly. To … Continue reading
Reduce wait time with tasks
In our project we group multiple machines and request information from each one. Sometimes this takes very long. All machines are contacted in sequence. When one machine is offline the request will timeout in 10 seconds (default WCF behavior) This … Continue reading