June 26th, 2008
Fiction, 8/10 - June 2008
|
Firstly, I realised with a shock that this book wasn’t going to have a hint of mathematics in it but I got over the disappointment because I liked learning about Zoo keeping and I found a boy wanting to be in 3 religions funny.
|
The extreme situation that the boy found himself in was an interesting read and a powerful story but because it wasn’t a true story I felt the factual nature of the book could be deceiving - a tiger would not necessarily behave as described in the book! It’s like a adult fairy tale. The make-believe island comforted me because it reminded me this was a work of fiction - I wonder if this is what the author intended?
I liked the ending an awful lot - Which version was the truth? It puts another spin on the potential fictional aspects of the tiger.
No Comments » |
Book Review |
Permalink
Posted by admin
March 20th, 2008
|
This quality half-terrabyte Western Digital external hard drive is to replace our now broken NAS drive. Instead of using a NAS drive we have created a Samba share on our server which we find more convenient.
|
This 2nd drive is for backing up our files using rsync to mirror our primary hard disk.
We map the USB hard disk on our Ubuntu 8.04 machine by putting the following in /etc/fstab:
/dev/sdb1 /home/fotherby/Bitbucket ext3 user,rw 0 0
We call our backup drive “Bitbucket” which is a name we learnt from the IC DOC labs. We do a nightly backup by putting the following script in /etc/cron.daily/ourBackup:
#!/bin/sh
rsync -a --delete /home/fotherby/OurStuff /home/fotherby/Bitbucket/CharmeleonMirror/
rsync -a --delete /var/www/tomfotherby /home/fotherby/Bitbucket/CharmeleonMirror/
- -a: Archive. This causes rsync to maintain things like file permissions and ownerships (same as -rlptgoD).
- –delete: This tells rsync to delete files that are no longer on the server from the backup. The delete is done BEFORE any of the new data is transferred.
No Comments » |
Tech Journal, Toy |
Permalink
Posted by admin