France Brazil

France Brazil tonight is going to be huge here in Bondi with the huge brazilian colony. With the small 23 Beach Road going to be full of french at 5h oclock Sunday morning.

Give up

I think i will give up on Football this is too disappointing.

Malaria

Every year i am affected by a Malaria crisis i get exactly what is described on Wikipedia:
Symptoms of malaria include fever, shivering, arthralgia (joint pain), vomiting, anaemia caused by haemolysis, haemoglobinuria, and convulsions. There may be the feeling of tingling in the skin, particularly with malaria caused by P. falciparum. Consequences of infection with malaria [...]

Get size of Postgres DB from filesystem

Get the size accurately from postgres local filesystem, i guess there is some sql stuff that can do that but that does the job as well for me :

#!/bin/bash
/usr/lib/postgresql/8.1/bin/oid2name -U postgres|while read -a e;do
name=${e[1]}
oid=${e[0]}
[[ $oid == "All" || $oid == "Oid" || -z $oid || -z $name ]] && continue
typeset -a size
size=(`du -s /var/lib/postgresql/8.1/main/base/$oid`)
size=${size[0]}
printf [...]