Archive for April, 2006

Essential Software

The new Dell laptop arrived today (very good, but bit too shiny for my liking - more of that another time). Once I had cleared off a few gig of useless crap that Dell had kindly installed, including 5 different AOL programs, I thought I’d load up some essential software before the holiday weekend.

Whilst I am sure that my list of essential software wouldn’t suit everyone, I found making the choices quite interesting. Here’s what I came up with and why:

Read more »

Looking at Myspace marketing

With over 70 million registered accounts at the time of writing, myspace is an internet phenomenon that is hard to ignore for those involved in online marketing.

Read more »

Greek Dictionary

Just found this one as well!

http://www.kypros.org/cgi-bin/lexicon

Latin Dictionary

Just adding a quick note so that I can find this again in the future. Spent ages trying to find a good latin dictionary / translator online for something I was working on a while ago, and didn’t have much luck. Stumbled on this one by accident today.

http://catholic.archives.nd.edu/cgi-bin/lookdown.pl

Windsurfing Photos

Windsurfing mentioned in an earlier post that one of the things that attracted me to the Panasonic FZ30 that I chose as my new camera was the fact that it had a whopping great zoom built in as standard. What I didn’t mention before is that it has a neat little trick up it’s sleeve for when the 12x optical zoom just isn’t enough.

The FZ30 let’s you lower the final image size and use the extra resolution to boost the effective zoom of the camera - all without resorting to digital. For instance, in the gallery that follows, I dropped the image size to a respectable 5 mega pixels and got the effect of a 15.3x zoom. Very handy indeed.

Read more »

Bloody ITV

Bloody ITVI’ve had most of my weekend planned around watching the Australian Grand Prix today. I flitted between decorating and working on the computer all day yesterday in order to free up 3 hours of quality grand-prix time, and had the TV & Radio off this morning so that I wouldn’t know the result before hand.

Much as I enjoy F1 I wasn’t going to watch the 4am live broadcast from Australia, so just needed to check the airing times when I got up this morning. Stuipidly, I thought that the best place to do this would be at www.itv-f1.com - the official site for the ITV Formula 1 coverage. Stupid mistake as the result was plastered all over the home page. Tossers.

I watched and enjoyed the race anyway. Actually, it wasn’t so much a race as some sort of strange demolition derby today, but it was certainly not one to miss.

Session IDs in Google

Just spotted that a lot of pages of this site have ended up confined to the supplemental results of Google, effectively being dropped from the main results.
This is an annoying feature of Google in particular in that it does really know how to deal properly with sessions (a way of storing information, such as login status, when you are on a site). Basically every time Googlebot visited it was seeing a different URL and thus assuming that there were hundreds of similar pages on the site.
As a quick fix I have simply added the following to my .htaccess file:
php_value session.use_trans_sid 0
php_value session.use_only_cookies 1

This forces PHP to use cookies to store the session and removes session support where cookies are not enabled. Not really the best solution, but on that will do for now at least. A better approach would be to do something like this on the pages instead:

$spiders = array(”Googlebot”,”WebCrawler, “etc etc”);
$from_spider = FALSE;
foreach($spiders as $Val)
{
if (eregi($Val, $_SERVER["HTTP_USER_AGENT"]))
{
$from_spider=TRUE;
break;
}
}

// Session
if(!$from_spider)
session_start();

This would then only start the session if the user_agent was not a recognised search engine spider. This is effectively cloaking (usually seriously frowned upon), but is one of the few legitimate uses for it.

The second solution is what I would use on a commercial site, but search engine results are not as important for this one so I have just gone for the quick fix.

Imitation is the sincerest form of flattery

Tossers… and the lifeblood of intellectual property lawsuits.

I saw this post on Freelancer.com last night and wasn’t quite sure whether we should be flattered, indignant or just plain amused.

Here’s the salient part of the post:

I want a clone website of www.mypropertyforsale.co.uk with all the funtionallity that it has but with a worldwide search and the website must be in two language English and spanish. I want everything done by the winning bidder because I don´t know anything about this, I don´t want any question about the funtionallity nor information needed for completing any task neither.

I should point out that www.mypropertyforsale.co.uk is a site that we developed at work and have an ongoing interest in, so seeing someone ask for coders to rip it off makes me want to put a call in to the lawyers. On closer inspection though it is actually quite amusing.

Read more »

Reskinned the site

matbennett.comDecided to re-skin this site today as I was getting bored by the grey style that I previously had. Turned out to be quite a good test of the CMS system that I have put behind it as well, as the reskinning took just over 45minutes from start to finish including doing up the graphics.

I’m using a boat picture that I took the other week as the header at the moment. No great reason for this other than it was one of the few images that fitted the top of the page quite well. Might change it periodically.

There are still a few bits to tidy up, but it looks better than it did before. It’s amazing what you can find to do when you are trying to put off decorating your home!