This logical puzzle is called Einstein’s Puzzle (its a variation of the original Zebra Puzzle by Einstein) because it is said to have been invented by Albert Einstein. There are rumors that Einstein claimed that only 2% of people can solve it mentally i.e. without using pen and paper, computer or any other medium. If you are allowed to use pen and paper the problem is very easy and is not interesting. Read the rest of this entry »
Archive for December, 2009
Einstein’s “Simple” Puzzle
Amazing Video Wall by Blinkx.com
You can get one of these Blinkx video wall by: 1. Hover the mouse to the top of the wall posted above; 2. Copy the embed code.
3 Best Possible If-Else Construct Alternatives
My current JAVA project requires a lot of check points, for example, 1. if the format of the ID passed is correct, then go ahead and 2. check if ID exists or not, if it does, 3. then check if ID has some kind of specific attributes or not and so on!
So, I was using the regular if-else for something like 6-7times!
1 2 3 4 5 | if([condition]) { [do this] } else if([condition]){ [do this]} else if{[do this] } else if([condition]){ } else{ [do this]} |
When I looked back at the code, it sucked! The deep nesting of the if-else construct made the code hard to understand and comprehend! Read the rest of this entry »
Google Public DNS for Faster Browsing
Today, Google launched their new service, Google Public DNS for “faster browsing experience”! (At the cost of vital technical details which Google will log for their analysis). Google claims they won’t save any personal data.

So, what is a Public DNS anyway?! To put it in simple words, Read the rest of this entry »
Gartner Hype Cycle 2009 – Is Cloud Computing Over Hyped?
I came across this interesting white paper – Hype Cycle of Emerging Technologies, 2009 published by Gartner Inc. This paper describes the emerging technology trends and how are these technologies performing in the year 2009. The hype cycle is divided into 5 phases based on their conception and market adoption.
So, what is so interesting about a Hype Cycle?! Here is how wikipedia describes it: Read the rest of this entry »