An apology

If over the past couple of months if you have tried to contact me using this website but I have not replied, I must offer my full apologies. There was a technical issue regarding my previous hosting provider and I would not have received the message. The problem is now resolved as I have migrated this site to a new host. Please do go ahead and re-send any query and I will reply as soon as I can.

Many thanks for your understanding.

0 Comments

Improved Palletways Tracking site launched

A little under a week ago, Fivetwelve launched the brand new website palletwaystracking.com.

Like the name suggests, palletwaystracking.com is an improved tracking interface for all Palletways customers to use who wish to find up to date tracking information for their Palletways consignments.

0 Comments

Cool URL shortener from Fivetwelve – ftw.gd

For a fun new project, Fivetwelve have launched a brand new URL shortener.

Introducing ftw.gd – the URL shortener with a fun twist.

If you’re familiar with the technical babble of “leet speak”, with slang such as “ftw”, you will like ftw.gd. It’s a great new URL shortener that is free for everyone to use for sharing short links on sites such as Facebook and Twitter. It also has a bit of a fun twist on it.

So the next time you need to shorten a URL for your tweets, give ftw.gd a try.

0 Comments

Simple jQuery Image Preloading

Again, this is more a note to myself, but I find the best function to preload images with jQuery is the following:

jQuery.preloadImages = function() {
     for(var i = 0; i<arguments.length; i++)
    {
          jQuery("<img>").attr("src", arguments[i]);
    }
}

This accepts X amount of arguments and can be called like the following:

$.preloadImages("/static/img/loadinganimation.gif", "/static/img/throbber.gif");

Why would you want to do this? Simple – if you’re using any “loading animations” on your site, with animated GIFs, you may find that on first activation on certain browsers the GIF is missing. If you preload it using a function like this one, your problem is solved.

Credit to this function goes to bloggingdeveloper.com.

1 Comment

Full UK Postcode Regular Expression Pattern (incl. London)

This is more a note to myself than anything, but I hope this can be a use of other developers looking to regex validate UK Postcodes. This validates all postcodes including London ones fine. (more…)

8 Comments

Best UK ISP for UK Broadband – Eclipse (A review)

So I thought I would break away from the usual “very technical” programming tutorials and today write something that bears a bit more relevance to the average UK household – broadband ISPs.

This subject is something I feel quite strongly about, as I’m obviously just not an everyday Internet user. Occasionally I game online, I regularly stream HD media via services such as iPlayer and I’m always browsing countless pages as well as maintaining websites via services such as FTP. Therefore I feel a reliable broadband service is pretty much the bread and butter for me – almost as important as something like running water and electricity. So forgive me if this article waffles on a bit. (more…)

5 Comments