Category Archives: Technical Articles

Copying CODE or BUGS?


Hi All, I have been working on various technologies and frameworks from past 5 years. I have seen copy and paste practice in most of projects specially when a developer is new to the technology or framework or project itself. … Continue reading

Posted in General | 4 Comments

Back to basics


I was reading a wonderful book Programming from Ground up by Jonathan. It reminds me old good days about assembly language on Dyna Microprocessor kits.  I thought about writing some points from that. Let us start reading about the Computer Architecture:

Posted in Assembly Language, General | Leave a comment

Introduction to Android


Couple of days ago one of my Friend told me that he is working on Android. I know its nothing new but why everyone is using android these days??  If you look at your GMail friend list you will see that there … Continue reading

Posted in General | 1 Comment

Coding guide lines for variable names


Here are some coding guidelines about using meaningful names in the program. Most of them are taken from from Clean code book Choosing good names takes time but saves more than it takes. Use Intention-Revealing Names The name of a … Continue reading

Posted in General | Leave a comment

BIRT: Making internationalized reports


BIRT is widely used as a reporting tool in business intelligence projects. These days every client has a very first requirement that application must be multilingual. They want their customers to see application in their local languages.  Java provides great … Continue reading

Posted in General | 3 Comments

Object A….present sir!!(Proxy object ;))


  I was really busy in last few days working on frameworks like spring and hibernate. While working on that I realized that like Java is a heart of Web development these days. Proxy pattern is also heart of these … Continue reading

Posted in Design Patterns | 1 Comment

Crash course of Java RMI


Here is a simple crash course of RMI api provided by Java. RMI is basically implementation of Remote Procedural Call It differs from CORBA which is used for communication between two different languages. These days we have a new implementation … Continue reading

Posted in Core Java | 2 Comments

FaceMash algorithm from Social network movie.


Hi All, I saw social network movie and next day when I was discussing this movie with few of my colleagues we were thinking about the algorithm which Mark had taken from one of his friend who use it for … Continue reading

Posted in General | 7 Comments

Java Exceptions…expecting the unexpected(Coming soon!)


Coming Soon!!

Posted in Core Java | 1 Comment

Have a Bite of Bytecode!!


This topic is very different from other Java topics.  I am sure a lot of developer think that why should I learn about byte code at all. Well I can give only two reasons of that (1)    Either you are … Continue reading

Posted in Core Java | 3 Comments