Category Archives: C#

Automatically Ignoring Untrusted SSL Certificates in Firefox Using WebDriver and C#

The "This Connection Is Untrusted" page Firefox was showing

TL;DR – You can tell WebDriver to automatically ignore untrusted SSL certificates on Firefox by setting the “webdriver_assume_untrusted_issuer” preference to false in the Firefox profile. We recently ran into an issue where our tests were failing because Firefox was showing the “This Connection is Untrusted” window. Firefox was complaining that our SSL certificate was not […]

Also posted in .NET, Acceptance Testing, Testing, WebDriver | Tagged , , , , , | Leave a comment

You ARE protecting your passwords in your config files AREN’T YOU?

When we are writing software for our clients, we have a fiduciary responsibility to ensure the security of their site. One way to increase security is to ensure that passwords and other sensitive information are not laying around in our config files unsecured (in plain text). All too many times I have seen something like […]

Also posted in .NET, Configuration, Security | Tagged , , , | Leave a comment

Video: Padawan to Jedi – A Developer Jump-Start (my presentation at Austin Code Camp 2011)

Here is the video of my “Padawan to Jedi – A Developer Jump-Start” presentation I gave last week at the Austin Code Camp 2011. It touches on all the principles, patterns, practices, and such that I have learned in my many years being a developer. I designed the Padawan2Jedi talk to present knowledge in a […]

Also posted in .NET, Agile, Continuous Integration, Continuous Learning, Design, Humility, Leading, Mocking, Patterns, Presentations, Principles, Productivity, Simplicity, Soft Skills, Test-Driven Development, Testing, Tools | Tagged , , , , , , , , , , , , , , , , | 1 Response

Intro to MongoDb slides and audio from CTXDNUG, March 2011

I presented an updated version of my Introduction to MongoDb talk at the Central Texas .NET User Group back in March. I incorporated a lot of what I leaned from the MongoAustin conference. The target audience is technical people (developers) who have experience with relational databases, but have never looked at MongoDb before. It covers […]

Also posted in .NET, MongoDB, NoSQL | Tagged , , , | 1 Response

Extension: ToPrintableString() dynamically print an object and its properties

Have you ever wanted to print out an object and all its property values to a log file or an error message? Have you overridden the ToString() method on all your objects to do this? If you have, you know how tedious it can be, and you will really appreciate this method. What does it […]

Also posted in .NET | Tagged , | Leave a comment