Docklands’ has no fibre optic broadband
May 10th, 2011
Recently I got a letter from BT saying that BT Infinity was finally in my area. I checked online and it still wasn’t available. Then I checked Virgin – same outcome. I even learnt that my existing provider PlusNet was now providing fibre but even that isn’t available in my area. I checked the post code of my parents’ house and found to my dismay that 25Mb broadband was available to them. By natural deduction that must mean they don’t live in Docklands but in fact in Walsall. I love Docklands but such poor internet provisioning by all providers to this area right next to Canary Wharf is nothing short of shocking. I shall have to be content with speeds of 1-2Mb for now. Maybe in 10 years we’ll have made some progress.
Tron Legacy BFI IMAX tickets booked
December 12th, 2010
Finally I have my Tron Legacy tickets at the BFI IMAX for next weekend. I have really poor seats (highlighted in red) but that’s all I could get at short notice. I cannot wait for this film. I haven’t looked forward to any 3D film at the BFI IMAX this much. If you haven’t seen the tron games already take a look. I had a lot of fund with this one.
Outdoor cash machines unsafe
November 28th, 2010
Nationwide launches 4.50% 3 year fixed rate isa
November 28th, 2010
On November 24th Nationwide launched a 3 year fixed rate christmas loyalty isa account. This is the highest rate for any isa or fixed rate isa I’ve seen; the only limitation being that you can only make one lump sum payment into it and the maximum amount can only be £5100 which is the maximum cash isa allowance for this year. So if you put £5100 into it then in 3 years this sum will be £5822.44 which is pretty lucrative. Needless to say I’ve availed what this account has to offer. The upcoming good news about isa accounts is that next year the cash isa allowance is being increased to £5340.
FaceTime for Mac released
November 24th, 2010
FaceTime is finally released for the Mac (as a beta) which now makes it ubiquitous and even more compelling. The seamless integration across iPod, iPhone and Mac of video calling is really quite impressive and it’s all at no extra charge. Thanks Apple.
Call of Duty: Black Ops
May 3rd, 2010
Looking forward to Call of Duty: Black Ops in November this year (trailer). Just completed Modern Warfare 2 so itching for something new. Unfortunately Splinter Cell Conviction is receiving bad reviews for DRM restrictions, bugs and instability.
Nvidia GeForce GTX 470 ordered
May 2nd, 2010
Since I bought my current machine from OCUK two years ago (coolermaster cosmos sport case, quad core, 8800 GT) I hadn’t upgraded my graphics card. I’d considered upgrading many times but had put it off due to cost, the general heat and noise production of more recent graphics cards and lastly indecisiveness on my part. However several generations of graphics cards later, following the advice of a friend, I finally committed to a purchase. The purchase was made more compelling given that I recently upgraded from 2×19″ monitors at 1280×1024 each to a 24″ monitor (Dell U2410) at 1920×1200. To game at native resolution now at decent frame rates is going to require a much more powerful card.
Today I ordered the Zotac Nvidia GeForce GTX 470 from Dabs.com. This card is really going to be leaps and bounds more powerful than the 8800GT so I’m very much looking forward to it although the trade off will be greater heat and noise production under load but hopefully that won’t be noticeable when playing games. The games I intend to play to test the new card will be Crysis, Crysis Warhead, Far Cry 2, Call of Duty Modern Warfare 2 and Splinter Cell Conviction. It’s sad however to hear that Splinter Cell Conviction will not be available on Steam in the UK. Such disparities between the US and the UK are so incredibly frustrating for UK users.
Registering to vote can improve your credit rating
April 10th, 2010
Quoted from Guardian:
With the date confirmed for 6 May, Britain’s credit reference agencies are urging people to ensure they are registered to vote. Not only can you have your say on who runs the country, but being on the electoral roll improves your credit status. In fact, if you are not on it, you may find it more difficult to get a loan, loan, credit card or insurance.
Wow. I hadn’t quite realised that registering to vote could make such a big difference to one’s credit rating. Although I’ve never registered or voted this is certainly making me reconsider.
Predators (2010)
April 5th, 2010
I’m very much looking forward to Predators (2010). Although nothing can match the original Predator this shows the signs of coming the closest of all the sequels.
Asynchronous tracking for Google Analytics
April 5th, 2010
When I was integrating Google analytics on this site today I found out that it now has asynchronous tracking. This means that the tracking code on your site will no longer hold up page load but it also means that by putting this code at the end of the head tag it is more likely to load before the user leaves the page. As a result I’ve migrated my two sites from the old way to the new way.
Old synchronous tracking code
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-XXXXX-X");
pageTracker._trackPageview();
</script>
New synchronous tracking code
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_trackPageview']);
_gaq.push(['_setDomainName', '.dhruba.name']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
