Google
 
Web unafbapune.blogspot.com

Tuesday, July 26, 2005

 

Bash Shell Script

Say you have a number of project directories, each with a /bin for compiled Java classes, how would you remove everything under /bin except the CVS directory ? Here is a bash shell script that will do the job:
for i in `ls`
do
if [ -d $i/bin ]
then
cd $i/bin
for i in `ls`
do
if test "$i" = "CVS"
then
pwd
else
rm -Rf $i
fi
done
cd ../..
fi
done

Monday, July 25, 2005

 

Oz Street Directory

The best street directory I can find in Oz: http://www.street-directory.com.au

Thursday, July 14, 2005

 

Emoticons


Saturday, July 09, 2005

 

Beanlib 2.x

Just released beanlib 2.0 to sourceforge.net. I've made some major refactoring and enhancement to the BeanPopulator and HibernateBeanReplicator API, along with one major bug fix. It is now both simpler and more powerful. Need to put in more javadoc and junit tests.

Wednesday, July 06, 2005

 

DSL-300 ADSL Modem + WGT624 Wireless Router

I was having problem exposing the Web server running on my home PC behind a DI-604 router. Now, finally, after replacing the DI-604 router with a Netgear WGT624 108 mbps wireless firewall router, I can resolve this issue via Port Forwarding. So my Family Photo site, Blog site, etc. running on my home PC, albeit behind a firewall router, are, once again, Live!

This page is powered by Blogger. Isn't yours?