ads is currently certified at Journeyer level.

Name: Andrew Stribblehill
Member since: 2002-12-13 09:32:59
Last Login: N/A

FOAF RDF Share This

Homepage: http://www.dur.ac.uk/a.d.stribblehill

Notes:

I'm a Debian Developer, Free Software advocate and occasional contributor to whichever project has the most annoying bug for me at any one time.

Projects

Recent blog entries by ads

Syndication: RSS 2.0
blm: dasher is the project you are thinking of, I believe. Matthew Garrett, mgj59, works on it.

More safe scripting

set -u will make a sh script abort on an undefined variable. I'm setting this in most, if not all of my scripts. Does anyone else have any useful defensive shell tips?

Safe scripting

So, we all know that when writing a shell script, you start:

#! /bin/sh
#
# description/author/copyright/blah-blah-blah

set -e
....

What I didn't ever see mentioned is that if you're assuming set -e, command substitution — `cmd` or $(cmd) — with a non-zero exit status will not cause the script to abort.

There's a simple solution, fortunately:

tmp=`cmd`
do_stuff_with $tmp

Whilst I'm onto it, if you're reading a stream of words into the positional ($1 etc) values with set --, you really should check the number of parameters. Either:

tmp=`date +"%Y %m %d"`
set -- $tmp
[ $# = 3 ]

or

tmp=`date +"%Y %m %d"`
set -- $tmp
year=$1; month=$2; day=${3:?date went wrong}

Autofs: Looks like Jeremy Fitzhardinge got bored of Autofs 4 so Ian Kent has taken it over. Sadly, since Jeremy never released a version incorporating my code, I'm going to have to port it to Autofs 4.1. Anyway, I also found a bug in my code that caused it to forget variable definitions in some cases; the fixed code for lookup_sun.c for Autofs 4.0 is here.

6 Jan 2004 (updated 6 Jan 2004 at 02:25 UTC) »

File, dbm and sql lookup: I had a little programming to write and was struck by the fact that I have to write my own code to do a linear search through a flat-file. (It was actually way easier to just use Berkeley DBM instead and do db->find.) I'm wondering if it would be useful to have a library which did lookups for a variety of data sources in a unified manner, so if the source outgrows flat-file it can migrate to somethiing else without having to re-write any code. Anyone else think this would be good?

autofs4: Jeremy has in principle accepted my autofs4 code but it's been a year since he last released anything. Must ping him.

PAM: I wrote a module, pam_twist that maps a username into another, so the Durham Computing Society can authenticate using either their Society password or with their University password. This way they can log in to change their Society password without having to hassle me.

Been hacking on autofs4 -- adding Sun-style inclusions into file parsing. The code is here and if anyone wishes to review it for me, feel free. Email me if you have comments. Jeremy hasn't got back to me about it yet though :(

3 older entries...

 

ads certified others as follows:

  • ads certified cjwatson as Journeyer
  • ads certified thom as Journeyer
  • ads certified tfheen as Journeyer
  • ads certified djm as Master
  • ads certified ajt as Master
  • ads certified hands as Journeyer
  • ads certified mjg59 as Journeyer

Others have certified ads as follows:

[ Certification disabled because you're not logged in. ]

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!

X
Share this page