Journal

Going Postal

Last week we received a card through the door for a parcel that hadn’t been delivered due to excess postage charges. I didn’t recognise the name on the card, so I just left it sitting on the side, deciding I’d pick it up one morning if I found myself with time on my hands.

Last night I realised it would probably be sent back if I didn’t go and collect it, so this morning I drove to Woolton post office to pay the £1.06 charge. Typically, the letter was for someone else at a similar address, but with an entirely different post code.

£1.06 isn’t worth getting upset over, but the fact that our postman couldn’t make a judgement call on a letter with a different name than usual and an obviously mismatched post code is just plain annoying.

I should have gone with my gut instinct and just let it lapse and fall back into the system, but curiosity had gotten the better of me. Now I have a letter from some wedding photographer (I can see this through the address window on the envelope) that I’ve paid for but doesn’t belong to me. I’m not sure what to do with it – I could kiss goodbye to my £1.06 and stick it back in the letterbox, but there’s a chance it would make its way back to me via postman prat.

Or I could open it and see if there’s a return address for the wedding photographer and pay them a visit to reclaim my £1.06. Except I have this nagging suspicion that it’s illegal to open mail that’s not intendted for you.

It should also be illegal for someone with the IQ of a goldfish to deliver mail.

Continue Reading
Journal

The Great British Beer Festival 2007

Last week I travelled down to London for my second visit to The Great British Beer Festival at Earls Court. As last year had been so much fun, I was travelling down on the Thursday this time – a day earlier, to try and make the most of it.

In the event we only went on the Thursday night, but I did enjoy myself immensely and got to catch up with my mate Charlie, whom I hadn’t seen in a couple of years. The rest of the gang included unstroked Cousin Iain, Nicola and her flat-mate Victoria, Fred, Dave, and Elisabeth-Anne. There were a few others that turned up later on who were friends of Iain, but I didn’t really know them or speak to them much, so I don’t know their names.

First up was a pint of… well… whatever brewery it was we walked near first!

Continue Reading
Code Comments

Frameworks That Make Hard Work

Over the last few weeks I’ve been checking out various JavaScript frameworks for use in a site I’m building at work. There are a number of frameworks out there, from Prototype, which I previously used to do some AJAX stuff on WipEoutZone, to JQuery, the wonderfully named MooTools, and Yahoo!’s own Yahoo! User Interface Library.

Most of them aim to provide shorthand ways of accessing DOM elements and handy methods that take the pain out of getting a JavaScript app up and running. Well, that’s the plan, anyway. Some do certain things better than others – MooTools is tops for fancy effects, while Prototype is good for grunt work. YUI seems a bit limited in its scope, although the documentation is pretty good and has a good number of working examples. JQuery looks to offer a more compact way of getting results that take more work with Prototype, although it’s the one I’ve looked at the least.

Despite the fact I’ve used it before and gotten some simple things working with it pretty swiftly, Prototype has excruciatingly sparse documentation, which makes getting a working example of almost anything a pain in the ass. Even worse is that the online documentation isn’t searchable – seriously, what the hell use is online documentation that isn’t searchable? Even if you do find what you’re looking for there is rarely any sample code to give you something to go on, so attempting most things is a bit of a shot in the dark.

It looks like I’m going to have to take a good look at JQuery when the dust settles with what I’m doing right now. The funny thing is that in the end it probably wont come down to me choosing the “best” framework (heck, maybe they’re all the same under the hood) – it’ll come down to using which one has the best documentation.

Continue Reading