Archive for July, 2008

Deep Copy in JavaScript

Some of you might have come across this issue. When you make a copy of an object and try to change the values of the new instance, it reflects in the original one too. Well I heard this not only applies to JavaScript, but also to most other object oriented languages; not sure though.
Here is [...]


Internationalization with Java

The main idea of the presentation is not to discuss how Internationalization is done in Java but to highlight some of the problems which one comes across while developing an internationalized application in Java. Most of the observations listed below are based on the personal experience while trying to internationalize a Java based Web [...]


Concurrency and HashMap

In theory everyone knows Hash Map is not Thread Safe and it shouldn’t be
used in multi Threaded applications. But still people come out with
their own theories that they can use HashMap in their context. Some say
they are just reading the data and map is not written to a lot.
Unfortunately none of these explanations holds good [...]