Wednesday, April 9, 2008

My First Facebook application

I wrote a Facebook application in my lesser time, this allow user to write their profile using their mother tongue. I name it as "My Profile in My Language"

It had translate into 6 languages including Sinhala, I hope it'll translate into more languages.

Following link direct you to about page of the application
http://www.facebook.com/apps/application.php?id=9472450059

You can add the application to your profile from following link
http://apps.facebook.com/myprofile-in-myword/

Your welcome to use this application and review it.

Tuesday, April 1, 2008

Download folder content from wget

Recently I found way to download folder content from wget, I know you already knew this commands but I thought to blog then I don't want to memorize it :-).

You want to download all the gifs from a directory on an http server. You tried `wget http://www.server.com/dir/*.gif', but that didn't work because http retrieval does not support globbing. In that case, use:

wget -r -l1 --no-parent -A.gif http://www.server.com/dir/

or if you want to download the whole folder content following is the command

wget -r -l1 --no-parent http://www.server.com/dir/

reference http://www.gnu.org/software/wget/manual/wget.html