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
Use your own performance counters
Create and use your own performance counters to see how you program is doing in performancetests, stresstests, production, … First register the performance counters. This is done with a PerformanceCounterCategory that contains the CounterCreationData objects for the performance counters. Be … Continue reading
Password confirm in WPF
In WPF the PasswordBox control doesn’t expose any property to bind it. You’ll need solutions as described here to get the password the ‘WPF way’. Getting it to validate is a different story. Whenever a user is created you want … Continue reading
Salted Hashed Passwords
Saving passwords for your application must be done with caution. Especialy when securing websites. Leaked databases have been exposed all over the internet. In the event your database is exposed you want to make it as hard as possible to … Continue reading
WPF enable next button of Wizard on Validation success
Using a wizard in my application that validates the input. The user must not be able to move to the next page if the validation is not a success. This can be done by disabling the next button when validation … Continue reading
WCF message tracing
To many times I’ve searched for this in google. How to trace the WCF messages to disk. Here is how: