November, 2006Archive for

Snowy Trip

I've just returned to my normal work after spending a week down around the Snowy River.The trip was to monitor changes to the vegetation along the Snowy and surrounding rivers due to the controlled flows of water.It was good weather, and we got the work done quicker than expected. I even picked up a few prints from the Michael Scott Lees gallery in Jindabyne.

Austrostipa geoffreyi

Austrostipa geoffreyiNot everyone gets a plant named after them. I have to admit I do feel special.There's even a page on the Spanish Wikipedia for Austrostipa.(Photo by, and property of, Terry Macfarlane)

GLiNTECH #19 in BRW Fast 100

David Bolton Strikes Again ยป GLiNTECH in BRW Fast 100Dave already blogged about this a while back, but I thought I'd post it as well.The company I work for (GLiNTECH) recently made the BRW Fast 100 which is a list of Australia's definitive fastest growing small and medium businesses. Not only did we make it in, we came in at #19. Yay!Good to see Atlassian (the people behind Jira and Confluence) coming in at #10.

Dates in filenames

I came across this handy little batch file that will let you save a file as today's date: @echo off for /f "tokens=1-4 delims=/ " %%i in ("%date%") do ( set dow=%%i set month=%%j set day=%%k set year=%%l ) set datestr=%year%-%month%-%day% echo datestr is %datestr% set BACKUP_FILE=BACKUP_%datestr% echo backup file name is %BACKUP_FILE%

HOWTO – LDAP authentication on Apache

Using mod_authnz_ldap (Apache 2.2.3 on FC6) I was eventually able to get the following settings to work: Options All ExecCGI -Indexes Order allow,deny Allow from all AuthzLDAPAuthoritative on AuthBasicProvider ldap AuthType Basic AuthLDAPCompareDNOnServer off AuthLDAPBindDN "CN=MyName,CN=Users,DC=MyDomain,DC=com" AuthLDAPBindPassword "MyPassword" AuthLDAPURL ldap://ldapserver:389/cn=Users,dc=MyDomain,dc=com?sAMAccountName?sub?(objectClass=*)" AuthName "MyAuthName" require ldap-fil...

HOWTO – NTLM in Firefox

I found this to be a handy little tweak in FF:Open up a tab and type in about:config as the url and hit enter.in the filter box, filter on network.automatic-ntlm-auth.trusted-urisdouble click the entry and enter in the urls of the sites you want to trust.It's a comma delimited string, so you can add more than one site in.