Skip to main content

Posts

Showing posts from July, 2011

Google Facebook Twitter Growth

This is buzz all around the net, that Google+ grown faster than Twitter and Facebook. Yeah it seems looking at the graphs and the overwhelming response of the users. It seems that Google+ reached 10 million users in just 16 days. Wow!! but how many are new users to Google, since many users are already associated with Google in some or the other way. Whenever Google introduces any new system, most of these users joined these systems. When Buzz is launched, then also number of Buzz users increased so rapidly. But with Facebook and Twitter, the scenario is bit different, they entered into the internet market and started attracting customers due to theri features. Now, most of the users are already get used to with social networking sites, hope Google+ with groups feature can take the advantage of all.

Boss vs Colleague

 Most of the Employees of every organization thinks that their colleagues are much better than their boss. But, does they really thinks so, or they just pretends so. These days, people used to search their feelings or thoughts on Google, as most of us considere Google to be our one of best friend. If colleagues are better than bosses, people might not have searched all these results mentioned below. Watch these Google results to have a better clearity, what people think, and whom they are inclined more. This might be wrong, as this is what people searched on Google, they might have a different opinion. Don't make any opinion on the basis of above results. This is just for fun.

Error messages while throwing exceptions

I was very concerned about exceptions, how they are thrown and handled. I define a proper error code before throwing some error. I never been to a production site, but this time I got a chance to be a implementation team. The way I handled my exceptions seems to be incomplete. Though, my error messages in exception was good, but it still missing a feature, which could help production people. Many of you might not aware of the very fact that, the logging level is severe in production. Then way you log the data in the codes is always helpful, but try to handle your error message for exceptions efficiently that you need not to enable logging to finer levels to analyze the issue. The errors must be self explanatory. Analyze the code snippet mentioned below: public void fetchCurrencyOffset(String bankCode, String branchCode, String currencyCode1, String currencyCode2) {             try {                   Map<String, Object> objectMap = new HashMap<String, Object&