Using RSS as a generalised SQL.
I definately need to consider this more.
Random outpourings of a software developer
The application that I work on has an archive process that takes the older data away to a secondary database. Periodically a new archive database is created.
We used to use dynamic sql within a stored procedure to move the data from the live to the archive. Strings were constructed within a stored procedure and executed. This turned out to be too slow.
I replaced the dyamic sql with a set of stored procedures that were regenerated at archive creation time using XSLT. This is exactly the same technique as traditional code generation, but has provided a massive speed increase (3X to 7X improvements have been seen).
The biggest mistake that people make when trying to get into test driven developement is to try to write all of the tests up front. This process is all about small error free steps.
The trick is to keep the tests small and focused. Don’t try to test too much with one test. If they are too fragile then you will spend your entire time rewriting your tests. As I write the tests I oftern find myself with a substantial helper object that performs the common tasks for me. The tests end up as documentation for the system.
Another important thing to remember is that this cycle is the formal version akin to the full blown scientific method:
In addition if you have a project covered with automated tests adding new ones becomes simpler. It is especially powerful if you need to maintain several branches of a given codebase. If the helper object can keep it’s interface untouched across the streams then the tests can stay largely untouched.
I have sucessfully used this when porting an application from one database to another, but the technique would work in the same mannerif you were to change langauages. The trick is to create an abstract interface to test against. You write helper objects that implement that interface against the old and new systems. You write the tests against the old system and then implement the new in order to get the tests to build.
This is great for those tiny utilities.
Here is the overview of codegen as implemneted in an OO-language: here
in my course of updting pictures and text to the site.
Due to a recent hard drive failure I have yet to reinstall Paintshop pro and decided to give Knoppix a go.
The stack:
was perfectly adequate for the job. It took a while to get used to using GIMP, but it is far more powerful than PSP 5 that I had been using.
I thought that I had a problem with accessing the photos from my camara until I found that the USB cable was not plugged into the PC.
I am amazed with how well Knoppix configures a basic PC.
It recognises and configures my soundcard automatically – something that Windows 2000 cannot do.
The dynamic sql allowed the database to be accessed to be specific at call time. However at any given time only one other database was being used. By replacing the appropriate stored procedures at change over time we obtain a substantial performance benefit.