test

August 27th, 2009

test

Test

June 20th, 2009

People who are really good at their jobs obsess about their tools- artists obsess over their paint, carpenters obsess over their power tools, cooks obsess over their knives.

PHP is like buying a chef’s knife at Wal-Mart. You can create a 5 star dish with it, it cuts perfectly fine, but it doesn’t inspire the same passion that a Shun knife does.

-Comment on Hacker News

This is another test

June 20th, 2009

This is a test. I want to see if the testing

test

January 25th, 2008

test

Perl

December 6th, 2007
$max_val = 0;d
$max_m = 0;
$max_n = 0;
 
for ($m = 1; $m < 1982; $m++) {
   for ($n = 1; $n < 1982; $n++) {
      $val = $n*$n - $m*$n - $n*$n;
      $val = $val*$val;
 
      if($val == 1)
      {
         $val = $m*$m + $n*$n;
 
         if($val > $max_val)
         {
            $max_val = $val;
            $max_m = $m;
            $max_n = $n;
         }
      }
   }
}
 
print "Max Value: ".$max_val." m: ". $max_m." n: ".$max_n;