After launching a site and sending the details to both MSN and Google the speed to getting an index was dramatically different. MSN showed the site after only a few weeks whereas Google took close onto 10 months to becoming fully indexed. At the start I used Google Alerts to register my interest in the words used by the site and got the odd alert about unrelated sites. During this time the web logs were showing that Google had indexed the site but no index and no alerts. Then after the 10 months the site was suddenly indexed and I started to get a steady stream of alerts for each of the pages of the site. I’d never claim to understand how Google works or how it will work tomorrow, but my observations are that Google does seem to index a site and at some point later the index becomes public knowledge. Now whether this is down to the well touted Sandboxing of sites or simply a queue of indexes I can only guess. But if you’ve designed your site correctly and are tearing your hair out wondering why you’re not getting a Google index, then don’t fret too much but be prepared for a wait. Maybe just everyone you meet to use MSN 😉
Computers and Internet
Virtual Server, networking doesn’t work…or does it?
I’ve been getting a problem with my Virtual Server machines for some time. It looked like every now and again the VM would not be on the network. Examining the VM event log showed, "could not initialize the emulated Ethernet controller." However whenever I decided to look into the problem it would magically start working again. Well eventually I got fed up with it and decided to have quick web search. Finally I discovered that I’m not alone with this problem and there is a simple workaround for the problem too…
http://connect.microsoft.com/feedback/ViewFeedback.aspx?FeedbackID=214204&SiteID=151
[Edit] It appears this link no longer works, I’m looking into getting the official answer, what this space.
The workaround also goes some way to explaining why I would "fix" it by simply rechecking the settings!
Finally IE7 allows changes in the address bar URL
Copy and paste files across Remote Desktop
Dreamweaver
Overall I do like Dreamweaver, I think it’s horribly overpriced for what it delivers, at least for the bits I want to use. Contribute on the other hand is a fairly priced product and is a decent no thrills editor for the non-HTML savvy authors.
Vista and Virtual Machines
More DOM differences
<Div id="test">
Hello there
</Div>
The task, use JavaScript to change the text in the Div, easy eh?
document.getElementById("test").firstChild.value = "new text"
or
document.getElementById("test").innerText = "new text"
Well, turns out I used both! IE seems to like the 2nd and Firefox the 1st, with neither complaining about the other. Now I can see why the AJAX libraries have their DOM abstraction functions!
Browser DOM trouble
<div onclick="alert(this.childNodes.length);">
 hello
 <div></div>
 <div>
   <div></div>
   <div></div>
   <div></div>
 </div>
 <div></div>
</div>