The new Netcraft survey for January is available. Apache is up a small bit, IIS is down by small bit bigger bit.
Author Archives: Donncha
I read an interesting article …
I read an interesting article on How to detect long page loading times with Javascript at Web Kreator but it didn’t include any code. I tried various methods, including using document.write to create an image at the end of my document but that didn’t work with cvsbook.html (a 600K+ or so html document).
So I decided to open a small window and close it quickly. Look through your log files for “icon.gif?time=”, and replace that with a script that records this info to a database or somewhere.
It works on a LAN, but I suspect on an Internet site you’d want to have the window.close() call in the new window, and not the opening window.
<body bgcolor="#FFFFFF" fgcolor="#000000" onload="javascript:endTime()">
<script language="javascript">
<!--
var now = new Date();
var start = now.getTime();
function endTime()
{
var now = new Date();
var end = now.getTime();
timeToComplete = ( end - start ) / 1000;
alert( "this page took "+timeToComplete+" seconds to load!" );
wn=window.open("/icons/text.gif?time="+timeToComplete,'_blank',
'width=1,height=1,toolbar=no,location=no,directories=no,'+
'status=no,menubar=no,scrollbars=no,resizable=no,left=0,top=0,screenX=0,screenY=0'
wn.close();
}
// -->
</script>
Redmond, Wash. – In a surprise …
Redmond, Wash. – In a surprise settlement today with nine U.S. states, Microsoft agreed to be split into two independent companies – one that will continue to make Microsoft operating systems, browsers, and server software, and another, potentially larger company that will make patches for Microsoft operating systems, browsers, and server software.
Ah! Nostalgia! For a college p …
Ah! Nostalgia! For a college project I coded a Breakout/Arkanoid clone in second year. Here’s a much better one! Lbreakout2.
D'you read slashdot then? D'yo …
D’you read slashdot then? D’you remember when it was Rob Malda’s personal homepage? You need to quit slashdot.org today!
I'm using Anthill at work. The …
You have to read the latest BO …
Are you going walking? I am.. …
Are you going walking? I am.. see you later!
I just tried Elx Linux and ini …
I just tried Elx Linux and initial impressions are good. I might even dual boot a machine for my dad to take a look at! Expect a review shortly!
Interesting discussion about …
Interesting discussion about Apt+RPM on the ILUG mailing list. Hopefully there’ll be a mirror on esat.net within a few days!
