Friday, February 24, 2012

How Shock Absorbers Work

http://blogs.howstuffworks.com/2009/08/26/how-shock-absorbers-work-2/

The credit goes to original author.

cheers!

Thursday, February 23, 2012

Friday, February 3, 2012

How to open Java .class files in a human-readable way?

Hi,

I came across a java applet on a webpage and I wanted to know how it worked. These .class files are not human readable if you open them in a text editor like notepad.
  • When you view the source of the webpage (IE just right click on the page and there is "View source" option) you can find what .class is running, which is the underlying program for the applet.
  • After that you can use something like JD-GUI, a java decompiler, to view the code

Hope this helps!