AMD Athlon demolishes Intel Core in games

LEGIT REVIEWS TESTED AMD’s answer to Intel’s Conroe offensive. With the latest price cuts of AMD CPUs, it was interesting to see whether an X2 5600+, a sub-$200 CPU fare with Intel’s own E6300, which fits nicely into the same category. When testing in real world games, a surprise happened in S.T.A.L.K.E.R., where Intel took a beating. AMD took the lead in Doom 3 as well, while Quake 4 returned point for Intel. However, AMD demolished Intel in Serious Sam 2. Head over there and read a highly surprising review. But to see almost 50% faster frame rate in Serious Sam… even worse than Athlon 64 vs. Intel Pentium 4 in Unreal Tournament 2k4.

Thanks to The Inquirer.


ATi Radeon HD2600XT specs/ photos leaked

According to a recent post at ocworkbench forums, a chinese website called pcinlife has leaked a series of pictures of the upcoming card Radeon HD2600XT.

According to original the author, it is said that the board uses 256MB of GDDR4. The 65nm manufacturing process GPU comes with a BIOS dated Apr 4th. Max wattage is 80W or lower. There is no additional power connector unlike the NVIDIA 8600GTS. In one of the 1080P video tests, cpu utilization is lower than 5% on the average. That is amazing.

More information can be found on the forum post.


Latest Ubuntu delivers on the promise of Open Source

Ubuntu 7.04, codenamed “Feisty Fawn”, is finally released!
I have been using it for about 3 months now, and besides a whole lot of daily updates i can tell you it’s been really stable so far.

More here.

You can also go straight to Ship-it, and request your free CD’s

Ubuntu Ship-It.jpg

PHP “__toString” magic method: not so magic before 5.2.0

I was confident that using one of php5′s magic methods, __toString() would just work, but the fact is that the following code works in php version 5.2.1 but not in 5.1.6:

You can try this for yourself:


<?php

class ToStringTest {
	protected $content;

	public function __construct($content) {
		$this->content = $content;
	}

	public function add($content) {
		$this->content .= $content;
	}

	public function __toString() {
		return $this->content;
	}
}

$A = new ToStringTest('Hello, ');
$A->add('World!');
echo $A . "\n";

$
$B = new ToStringTest('Say ');
$B->add( $A );
echo $B . "\n";

?>

In php 5.2.1, output is:


Hello, World!
Say Hello, World!

and in php 5.1.6


Hello, World!
Say Object id #1

And then it hit me:

It is worth noting that before PHP 5.2.0 the __toString method was only called when it was directly combined with echo() or print().

Small piece of advise: always be sure to know what is a certain function’s behavior in the possible php versions your code will be running, or risk bad surprises.

Meanwhile… use something like

$SomeObject->_toString();


The Practical PHP Programming book, now as a wiki

The original book has been online over two years, and in print as PHP in a Nutshell, but now all the content is available on this site as a wiki.

The contents of the wiki are licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 2.0 Licence (read it here), with one addition: by submitting content to this wiki you grant the author, Paul Hudson, the right to relicense your work under the GNU GPL 2.0 or later if he so chooses.


Top usability tips bloggers must know about.

These are some really useful tips from Tom Johnson’s I’d rather be writing. I think the post, entitled “Twenty Usability Tips for Your Blog” covers most of what should be said about the best practices of blogging.
Continue reading ‘Top usability tips bloggers must know about.’

Five Reasons You’ll Use Google Office (And Five Reasons You Won’t)

Google launched today a hosted software package of productivity tools that places it closer into competition with Microsoft’s Live products…


read more


Get the newest versions of the best free software

FileHippo provide you with the simplest method of downloading the newest versions of the best software – without the usual excessive popups or spyware and without the low quality software.
They do not take software submissions from publishers. The site is user focused, and they analyze the software market daily for popular software to add.

Features

  • Only the best software, we focus on quality not quantity.
  • Very fast servers with 100Mb connections, to make your downloads as fast as possible.
  • We keep the old versions of programs, so if you update and don’t like the new version, you can always return to the old one.
  • All software is 100% spyware and virus free.
  • Filtering feature to allow you to only show Freeware and/or Non-beta software.
  • Full support for resuming downloads and download managers.
  • Change log and technical details for downloads.
  • RSS feeds for all updates, categories and for individual programs.