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.
Filed under: Football on June 30th, 2006 | No Comments »
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.
Filed under: Football on June 30th, 2006 | No Comments »
I think i will give up on Football this is too disappointing.
Filed under: Football on June 18th, 2006 | No Comments »
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 [...]
Filed under: Life on June 17th, 2006 | No Comments »
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 [...]
Filed under: Scripts, postgres on June 5th, 2006 | No Comments »