Download DB2 Upgrade DB2

Jaxer; Ameliorating IE8

January 23rd, 2008 by Leons Petrazickis

John Resig writes very positively about Jaxer. It runs Javascript on the server while serving documents to the client, with seamless communication between JS on the client and JS on the server.

Jaxer provides:

  1. Full DOM on the server
  2. Shared code between client and server
  3. Database, file, and socket access from JavaScript
  4. Familiar APIs
  5. Integration with PHP, Java, Rails, etc. apps

In other news, IE8 will use the latest rendering mode by default for documents with the HTML5 doctype:

<!DOCTYPE html>
 

Finally, Good Math has a published a good defense of Google’s MapReduce algorithm.

Posted in javascript, ajax, html | No Comments »

HTML5 now a Working Draft

January 22nd, 2008 by Leons Petrazickis

Woot!

Posted in html | No Comments »

One step forward, two steps back

January 22nd, 2008 by Leons Petrazickis

After an internal build of Internet Explorer 8 passed the Acid2 test, they’ve announced that the new engine will only be used for sites with a special, opt-in meta tag:

<!– IE8 engine –>
<meta http-equiv="X-UA-Compatible" content="IE=8">
<!– latest engine –>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
 

It can also be triggered from the server via an HTTP header:

X-UA-Compatible: IE=8;
 

Firefox is unlikely to follow suit.

In other news, John Resig has done some testing on sub-pixel rounding across browsers.

Posted in javascript, css, html | No Comments »