family photographs previously hosted on my unp/ukzn web site

in recognition of this privilege you may want to click on the image to hear a rendition of gaudeamus igitur

A hi-res copy of most of the photographs available here can be downloaded by append "-x" to the image filename in the URL of the displayed photograph and refreshing. E.g. ".../a19-twofriends.jpg" becomes ".../a19-twofriends-x.jpg".

Notes:

  1. The smaller versions of the 'new baby' photographs were produced from the larger ones using the following command in a terminal window on my Linux box. One of the reasons I use Linux.
    for i in $(ls *.jpg);
    do
    convert -size 480x480 -resize 480x480 +profile "*" $i ${i%%.jpg}-ws.jpg;
    done