Blog Stats
- 177,473 hits
-
Archives
- September 2015
- July 2015
- July 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
Tag Archives: Technology
String or StringBuffer ? what about StringBuilder?
The usual advice is to use StringBuffer when you are going to mutate the String. The reason is well known – String is immutable and its costlier to create new objects than appending using StringBuffer. But StringBuffer is thread-safe, meaning … Continue reading
Building Web Services with JAX-WS – Basics Refresher & Tutorial
Smart and funny ways to save money during recession A quick refresher of JAX-WS basics! —————————————————————————————————- Concepts: —————————————————————————————————- JAX-WS stands for Java API for XML Web Services. It allows to write message-oriented as well as RPC-oriented web services A web … Continue reading
GoF Core Design Patterns :- Behavioral Design Patterns
This post can be used as a quick refresher of the GoF Behavioral Design Patterns. I have just given the intents of each of the Behavioral patterns. This will be of use to experienced professionals. Chain of Responsibility INTENT: Avoid … Continue reading
GoF Core Design Patterns :- Structural Design Patterns
This post can be used as a quick refresher of the GoF Structural Design Patterns. I have just given the intents of each of the structural patterns. This will be of use to experienced professionals. Adapter INTENT: Convert the interface … Continue reading
GoF Core Design Patterns :- Creational Design Patterns
This post can be used as a quick refresher of the GoF Creational Design Patterns. I have just given the intents of each of the creational patterns. This will be of use to experienced professionals. Abstract Factory INTENT: Provide an … Continue reading
Java Server Faces (JSF) 1.2 tidbits
Prior to version 1.2 of JavaServer Faces technology, page authors used the loadBundle tag to load a resource bundle into a page in order to reference localized data from a page. Page authors can still load resource bundles into a … Continue reading
Google’s AppEngine a real threat to Amazon S3!!
Google introduced their cloud application platform called AppEngine (beta!!) yesterday and TechCrunch already have their experience posted here . The capabilities and the reviews are awesome and this one is a real big threat to Amazon’s S3 services. Amazon had … Continue reading