Written by thinkjim on June 21st, 2008
A user on the digitalspy forums has successful upgraded the hard disk in his V+ box. The Poster known as jamjam has extended the recording time from 80 hours to an astonishing 400 hours.

The stock 160gb hard drive was replaced with a new Seagate 750GB Ultra IDE Drive (Model No. ST3750640A). From the forum discussion it appears that the upgrade was relatively straightforward, and simply involved physical removal the old drive and replacement with the new drive. Jamjam reported that on first boot the V+ box automatically reformatted the new drive without any user input - which has been working perfectly since. The only minor niggle is that the V+ menu only displays 80 hours of available space after upgrade, although this number only decreases to 79 hours after 5 hours have been recorded. It would seem that V+ calculates the number of free hours based on the percentage of free disk space.
Check out the details here.
Please note that V+ users do not own their V+ boxes. V+ boxes remain property of Virgin Media, therefore this is one of those ‘do not try this at home’ upgrades.
Posted in life, television, upgrade | No Responses »
Written by thinkjim on June 7th, 2008
This coming week sees the Apple World Wide Developer Conference (WWDC) in San Francisco, and the most eagerly anticipated announcement has to be the new iPhone (the iPhone 2.0).
According to MacRumors the second generation iPhone is expected to adopt 3G for faster internet access, along with a number of ground breaking features. These could include a forward facing camera for video calls and a GPS receiver for satellite navigation. As always there has been much speculation as to the design of the new iPhone, with a number of ‘leaked’ photos circulating the Internet. 
With the actual launch expected to be sometime in late June or July in the US, UK users are left wondering about possible launch dates in the UK and whether it will be long after the US launch. Many have speculated that it’s likely to be soon after the US because of its predecessors popularity.
On a personal level the first iPhone has been such an amazing buy (despite the critics views) that I can’t wait to get my hands on the iPhone 2.0. I may even consider switching to O2 and signing up on a contract (I currently use an unlocked iPhone on Vodafone). My only gripe is the duration of the existing O2 contracts, which appear to be around 18 months (far too long). Either way it seems extremely unlikely that second iPhone will be made available on any other network, at least to being with.
Posted in apple | No Responses »
Written by thinkjim on June 2nd, 2008
There seems to be a big debate about the use of the rel=”nofollow” tag when linking to other websites. I’m no SEO expert - so I’m in no position to comment! but in this post I will tell you how I added a checkbox to wordpress admin that allows me to make new sidebar (blogroll) links nofollow links. In my case I opted to use nofollow for linking to a few big websites. I haven’t used nofollow for linking to smaller sites that need the juice.
What is the rel=”nofollow” tag?
Simply put the rel=”nofollow” tag can be used when linking to other web sites to tell google and other search engines not to follow that link as part of their crawl. Thats the oversimplified explanation anyway, the reality is that it tells google not to add any weight to that page’s pagerank / ranking because of your link to that site, which it might otherwise do.
How I added rel=”nofollow” to selected sidebar (blogroll) links
If I want to create a link on my sidebar I usually go to ‘write’ and then ‘links’ from with WP Admin. At the bottom of this page there is a subtitle - “Link Relationship (XFN)” and beneath it is a text entry field with the tantalising word ‘rel’ (hmmm I want rel=”nofollow”)…… Unfortunately WP 2.5 won’t let me type anything here. I have to tick a checkbox beneath the text field for anything to appear in it. I guess I need a tickbox called ‘nofollow’. How do I add that?
To do this I downloaded and edited the ‘edit-link-form.php’ file from the \wp-admin folder on my webserver. I inserted the following line of code:
<tr>
<th scope="row"> <?php _e('following') ?> </th>
<td>
<label for="follow">
<input class="valinp" type="checkbox" name="follow" value="nofollow" id="nofollow" <?php xfn_check('follow', 'nofollow'); ?> />
<?php _e('nofollow') ?></label>
</td>
</tr>
this was inserted just above
<th scope="row"> <?php _e('identity') ?> </th>
which was on line 174 in my file. Now I have a tick box at the bottom of the write, links page and if I tick it, it makes the link a nofollow link!
** If you try this make sure you take a back up of edit-link-form.php first **
Posted in blogging | 2 Responses »