Friday, April 19, 2013

How Google Glass Works

While I was going through the web I found an interesting Infographic which will explain the functionality of the google glass and how it works in a very short and sweet way.

I dont want to take lot of your time.. So here are the details... Click to enlarge the image


Wednesday, January 2, 2013

How to introduce PAUSE or DELAY in JavaScript

I was going through some forums to find out how to introduce pause/delay in the javascript programming

Here is the piece of code I have found which is very useful

    function pause(msec)
    {
            msec += new Date().getTime();
            while (new Date() < msec){}
    }

Thanks for stopping by