Monthly Archives: April 2006

Weather Forecasting

Since I now have a new motorbike ( see this gallery ) it is quie nice to be able to plan in advance what I am going to do on a given day. A lot of the time, this decision is going to be influenced, at least in part, by what weather conditions are likely to be.

For a while now, I have checked weather forecasts on the BBC weather page. However, it appears that the BBC recently changed their policy on presenting weather forcasts to be “more optimistic”. What this means is that if the forecast for tomorrow is “it’s going to rain for most of the day, but there may be some sun for half an hour in the early afternoon”, what you will get from the BBC is “sunny intervals” or maybe “showers”. I can’t understand the reasoning behind this, from a supposedly impartial organisation such as the BBC. I know that putting a positive spin on some things is good, but why the weather? Who is going to say to the BBC “Your forecast for yesterday was rain. It rained. It is therefore your fault that the weather was bad.” Not many, I would guess.*

All I want from a wether forecast is an accurate assesment of what the forecaster believe is going to occur. Not hard really, is it?

If anyone knows of a good (i.e. accurate) source of weather data on the net, please let me know.

*Of course, you can never be sure ;)

Excuse of the Day in the sidebar

You may have spotted the “Excuse of the Day” at the top of the left sidebar. This isn't a WordPress plugin as such, but a small bit of PHP in one of the theme files. If you want to use the same code, there are a couple of things you need to do.

1) In my case, I am concious of not wanting to abuse Eric's bandwidth, so I have set up a shell script via cron to wget the feed file once per day. I'd recommend this for another reason – if, due to unforseen circumstances, meyerweb is down, your code will still work on your local copy.
2) Edit your theme file in the appropriate place to include this block.

	

Technorati and Bad Behaviour

This blog is running Bad-Behaviour to try to limit spam and general naughtiness. It does it by header analysis on incoming requests, and it caches the results.

I noticed a couple of days ago that my Technorati pings were not updating on this site, and eventually narrowed it down to the fact that the Technorati Bot doesn’t send complete headers, so BB was blocking access to this valid source. Adding the technorati bot address to the whitelist file (as well as some other fiddling around that I’m not going to go into) means that the bot can now see the feed, and work with it correctly.

I hope this helps someone out there if they are having similar issues.

Remote Debugging Issues

My colleague, John, was having problems connecting the remote debugger to our SharePoint stage server. When connecting he got an “Access Denied” error. After spending much of the afternoon Googling for a solution, he came up with the following fix.

  1. Open an MMC session and add the Component Services snap-in. Alternatively, run “dcomcnfg.exe”
  2. Expand “Computers”
  3. Right-click on “My Computer” and hit “Properties”
  4. In the “Access Permissions” section of the “COM Security” tab, click “Edit Limits”
  5. Make sure the entry for ANONYMOUS LOGIN is allowed access to the Local machine
  6. Hit “OK”, and you’re done

Very handy thing to know about.