Archives by Tag 'Performance'
Chrome 2 beta and Chrome experiments
Google has released Chrome 2 beta which added some new features like tab docking, mouse scroll bar navigation and so on. By downloading the latest Chrome installer, it would upgrade existing Chrome 1.0 Check out the site http://www.chromeexperiments.com/ that hosts some really cool javascript applications that are used to test the performance of the browser. […]
Chrome vs IE Javascript Engine Performance Comparison
Operating System: Windows Vista Enterprise 32 bit CPU: Intel Pentium(R) 4 CPU 3.00GHz Memory: 2038 MB Tools: Testing Javascript Page Opera 9.24 Score: 82 It is not too bad. Firefox 3 Score : 109 It is fairly fast! Chrome beta Score : 1105 WOW, ten times faster than firefox, I am glad I downloaded it. […]
XML Elements or Attributes in the world
Elements way is good at interoperability. Attributes way is good at size of the XML. <message> <id>1</id> <myword>Hello</myword> </message> <message id=”1″> <myword>Hello</myword> </message> <message id=”1″>Hello</message> <message id=”1″ myword=”Hello” /> Which way do you prefer?