Category Archives: Software

CVS Server on Fedora

By | May 7, 2005

After much gnashing of teeth, I got CVS running as a service on my laptop and am able to access it using the CVS client Eclipse plug-in. The key was finding this page posted, at least in part, by Glenn Robitaille. Without it, I suspect I would still be poring over the CVS and xinetd… Read More: CVS Server on Fedora »

Crashing Apps on IIS

By | April 14, 2005

Lately, I’ve been experiencing more and more app crashes when accessing web sites running on IIS. Not that this necessarily means there is a problem with IIS, but nearly every time I’ve seen a web app on the Internet go belly up lately, the stack traces have revealed the app to be running on IIS.… Read More: Crashing Apps on IIS »

Multitasking Considered Harmful

By | January 5, 2005

Here’s your challenge for the day. Read this Seattle Times Magazine article from start to finish without trying to multitask. Even though the article puts forth cogent arguments for why multitasking (especially with intellectual tasks like reading) by humans is usually inefficient, I couldn’t stop myself. First, I had to check on the progress of… Read More: Multitasking Considered Harmful »

Top Ten List from Bill de hÓra

By | January 2, 2005

My favorite “top ten predictions for 2005” list so far is Bill de hÓra’s list. If you’re an open source, Java, XML, Python, web service, Mozilla loving geek, you’ll like it, too.

Installing Python on Shared Server

By | December 14, 2004

Note to Self for Future The following steps are for installing Python 2.4 on a shared server. After ssh’ing to the server: $ wget http://python.org/ftp/python/2.4/Python-2.4.tgz $ cd Python-2.4 $ ./configure –prefix=$HOME/lib $ make && make install $ ln -s $HOME/lib/bin/python $HOME/bin/python/bin/python Credits: Thanks to Uche Ogbuji for publishing IRC transcript excerpts that reminded of the… Read More: Installing Python on Shared Server »

XML-Based Programming Languages

By | November 28, 2004

My main experience with XML-based programming languages has been with VoiceXML. One nice advantage of an XML-based language is that the syntax checker is essentially free, assuming the language provides a DTD, or preferably a Schema. Of course, most language compilers and interpreters also come with a syntax checker, so the DTD/Schema advantage is primarily… Read More: XML-Based Programming Languages »