Main Contents

How I lost 30 pounds in 19 weeks without trying.

January 15, 2010

This diet is a very special diet, with a very special name. It is called “The Live Abroad Diet”
I noticed that when I went to China for a month, I lost 10 pounds.
So when I moved abroad to the Philippines, I was prepared for the ensuing weight loss.
I stuck to a filipino diet, home [...]

Filed under: Everything | Comments (0)

Use an ‘rmdir’ function that’s smart about .DS_Store files

January 8, 2010

This is for zsh. I simply put it into my .aliases file, but your .zshrc file is fine.
function rmdir() { rm -f $1/.DS_Store; command rmdir $1 }
The zsh function given at macosx hints is wayyyyy overkill.
It’s always okay to delete the .DS_Store file so there is no need to do any checking.

Filed under: Everything | Comments (0)