Recent Posts

What is web 2.0

less than 1 minute read

web 1.0 people just put their static information on the webweb 1.5 some interactivity mainly online shoppingweb 2.0 is all about interactivity and communicat...

OOP composition vs inheritance

less than 1 minute read

favour composition over inheritance. even though you have common code in the base class and child classes uses those methods it is better to move those com...

Apache httpd configuration

less than 1 minute read

Alias /pds /packaging/sun/pds <directory packaging="" pds="" sun=""> Options Indexes Order allow,deny Allow from all </directory> Make changes ...

Java pattern matching

less than 1 minute read

case insensitive search for a string      Properties properties = System.getProperties();      properties.list(System.out);      String osname = (String)pr...