Access JumpStart 2.0 | Blog

A Rapid Development Framework for Microsoft Access

I’ve heard in many of the sources I’ve read that there are 3 dials for projects and optimizing for 1 or 2 of the dials will affect the other(s). The dials are:

  1. Cost (Expensive vs Inexpensive)
  2. Quality (High with lower bugs, Low with more bugs or inefficient code)
  3. Delivery (Quick delivery vs Long delivery)

But why can’t you have inexpensive projects of high quality with quick delivery?

Ultimately the problem here I think is that all of these terms are relative. The dials are being turned based on some already established benchmarks. A different question rather than how are these three things related given a particular process, but maybe “Can I use a different process that will make all three targets decrease?”

I’ve heard that doing Agile development that is driven by tests improves all three markers.

  1. Test Driven Development: means writing sensible tests for the expected business outcomes of your code that you can run at any time. The tests need to be quick and reliable and as you add new requirements you create more tests to ensure each of the business requirements is being met.
  2. Continuous Deployment: Maybe you can’t achieve the continuous part, but it’s something that could be worked toward. What if you could deploy tested changes to the live environment by yourself at the end of every day, or twice a day, or heck, every hour? You could potentially get almost immediate feedback on your changes and with the testing piece in place (once you’re doing it well) you could be reasonably sure that you haven’t broken any of the previous requirements.
  3. Agile delivery: Quick delivery cycles make sure you hit the customer’s desired outcome in an efficient manner, minimizing the cost of the project (assuming you are billing hourly… not that I particularly like billing hourly, but it’s been difficult not to when working on small-ish projects). Keeping customer costs down while delivering high quality results.

So, what do you think? Sound interesting?