Tag: Netbeans
-
Using TDD (Test Driven Development)
If you read my previous post (WordPress Recovery), you know I’ve been writing some code to recover my old posts. It occurred to me I could take a small segment of what I’ve been doing with that code to demonstrate my approach to TDD. Since I’m a hacker from way back, and also because I…
-
WordPress Recovery
Well, I have the basics of my blog recovered now, so almost all of my posts going back several years are once again available. In my last post titled Lesson Re-learned: Backups !, I admitted that I had committed the cardinal sin of making changes to my web site without doing a backup first (walking…
-
Eventbrite Calendar Feed
I volunteer and provide technical support for a few non-profits, one of which is the Project Management Institute San Francisco Bay Area Chapter (http://www.pmi-sfbac.org) where I serve as the VP of Operations and CGO. One of the moves I made in my first year with them was to migrate our event calendar to Eventbrite and…
-
JPA and Maven and multiple persistence units
I needed to convert an existing Netbeans build to use Maven in order to stabilize the code and support Test Driven Development. Generally this was a fairly simple process: just move all the source files and resources to the right folders in a new Maven project, and add the dependencies. Everything was going swimmingly until…
-
Continuous Integration: Missing mcrypt
I’m doing some work on a project that is using PHP, and have been working on setting up some continuous integration build scripts to make sure that we have a shot at catching errors before they make their way to production. Recently some unit tests were added for the “forgot password” code, which uses the…