meh
I wound up spending a ridiculous amount of time just getting the Delcom driver to work on OS X. The program was written years ago by an Apple developer, and a lot has changed since then. There were a few minor problems that caused me a great deal of headache.
For instance, there were a few lines of code that checked for null values using the tried and true:
if(something != null)
doSomething();
GCC kept complaining that I was using an object in a mathematical operation. I wasn't having much luck finding anyone else on the internet who seemed to have the same problem. Once again, Tom came to my rescue when he commented that he always used the form:
if(!something)
doSomething();
I think I wasted roughly two evenings just getting the Delcom drivers to compile, and that wasn't the last time that Tom would ride to my rescue.
For instance, there were a few lines of code that checked for null values using the tried and true:
if(something != null)
doSomething();
GCC kept complaining that I was using an object in a mathematical operation. I wasn't having much luck finding anyone else on the internet who seemed to have the same problem. Once again, Tom came to my rescue when he commented that he always used the form:
if(!something)
doSomething();
I think I wasted roughly two evenings just getting the Delcom drivers to compile, and that wasn't the last time that Tom would ride to my rescue.