by Santi Murtagh | Aug 10, 2016 | Software Engineering
One of the things that our development approach at DPL allows us to do is to have a very low ratio of QA testers per software engineer. Our architecture designs and patterns provide for very isolatable and testable components, allowing us to reach high coverage...
by Curtis Johnson | Oct 27, 2015 | Development Methodologies & Best Practices
A few months back I submitted an idea for a presentation to a developer conference. It was rejected. I’m not alone. We all have, at some point, been turned down. Maybe our ideas were not as jaw-dropping or life-changing but that’s no reason to just let those ideas...
by Cody Leach | Dec 4, 2012 | Development Methodologies & Best Practices, Software Development Tips & Tricks
We recently completed a web project for a client where videos were an integral part of the site. When the client came to us, they had already vetted their design ideas and had an outside firm create a final site design. Nearly every page of the site was to have a...
by Nate Lowry | Jun 28, 2012 | Software Development Tips & Tricks
Do you have a unit test that you don’t want to run in the nightly build? No problem. Just add the TestCategory attribute to your test and give it a “DontRunWithBuild” name or something else memorable. In Visual Studio, go to the Team Explorer, right-click on the build...
by Chad Michel | Oct 20, 2011 | Software Engineering
Windows services are really cool, but they can be a little bit of a pain to work with. To debug a windows service, the typical model requires you to attach to the services process. This is incredibly annoying after you do it for the 10th time, but the good news is...