

Finally getting back to working on the old browscap module, and needed to ape a particular browser string. I found this article on configuring Safari and Firefox to accomplish this:
Spoofing the User Agent with Safari or Firefox
So, first I do the command using Safari's actual browser string, so I can easily revert to it later:

As a first step, I simply want to use SVN to track changes in my local development environment. Simple step-by-step instructions are lacking on drupal.org, but Nick Sergeant's blog got me started:
References:


Recipes for particular tasks when doing Drupal development.

I'm doing my first project using PostgreSQL (I've always used MySQL in the past). Hints, tips, etc.:
First, I found a Mac OS X binary. At this writing the version of PostgreSQL is 8.2.3. The instructions say it is only tested on Mac OS X 10.4 (Tiger), but it works fine for me on 10.5 (Leopard).
To access a database from a shell:
psql -U username -h localhost -d databasename

Now trying Eclipse as my Drupal development environment... Starting with Rob Loach's approach:

Maintaining my Drupal sites, both development sites on my computer and production sites on my webhost. Use of CVS & SVN, copying back-and-forth, etc....