Yes, yes, success!
       Tuesday Jan  1  4:06:42 2013
       
       Happy new year!!!
       
       Last night the server was busy for a short while executing my two 
       cron jobs. The first one was 'pharc' a phlog archiver that organise
       all my phlog posts of the year. It started at 23:55h and in only 3 
       seconds did the job. Heed that line 131 reads "sleep 2" ;) It goes 
       fast that I added that line when testing. Silly huh?
       
       odin (chals) % cat pharc.log                                 
       
       Mon Dec 31 23:55:00 UTC 2012 Archiving phlog posts...
       
       Mon Dec 31 23:55:03 UTC 2012 You are done now.
       
       You can see the results (keep in mind that the entry 01-01-13 is th
       post I'm writing at the moment):
       
       odin (chals) % ls gopher/phlog/                              
       01-01-13/  2011/  2012/  gophermap
       
       The second one is a local script that I use to sync my gopher sites
       It is called 'gophersync' and it mainly uses 'lftp'. It is quite 
       simple but neat at the same time. It started at 00:00h:
       
       odin (chals) % cat bin/gophersync                            
        #!/bin/sh
       
        # Script to automatize synchronization over ftp
       
        HOST="sdf.org"
        USER="<user>"
        PASS="<my_password>"
        LOCALFOLDER="/arpa/c/chals/gopher"
        REMOTEFOLDER="/arpa/af/c/chals/gopher"
       
        echo "Syncing files. Please wait..."
        
        lftp << EOF
        open -u "${USER}","${PASS}" "${HOST}"  
        mirror -c -R -v "${LOCALFOLDER}" "${REMOTEFOLDER}"
        exit
        EOF
       
       Now we are in 2013. This means that I have to start serious work on
       my version 3 of pharc. (I'm lying here because it is almost finishe
       not completely because it needs some loving and caring, but it is 1
       functional as it is now). However I would like to add some features
       and of course improve any potential flaws or bad code sections.
       
       Have a nice year!!!