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 (169)
Author Archives: erictummers
Test async webservice call with a Task
We have a number of services in our project. Our clients include WPF, iOS, Android and Web. To have the best interoperability we communicate over http and expose WSDL for proxy generation. This means we cannot change the contracts or … Continue reading
Compat inspector fiddler rule
Origional post here. My version of the fiddler CustomRules.js file below.
if this than that
Every programmer knows the if statement. Now there is a service that provides a visual way of defining the statement called IFTTT. Gift without the ‘G’ What is so special about that, we all know Visual Programming languages? IFTTT uses … Continue reading
Implement Interface as virtual methods
A best pratice in Object Oriented Programming is the use of Interfaces. When applied correctly it simplifies unit testing. But watch out for the pitfall of default implementation by Visual Studio. Below is an example how this can bite you. … Continue reading