Monday, 14 March 2011

Boxee media center on an Acer Revo 3700

It's amazing that you can get a full HD 1080p home media center for under £200. The Acer Revo 3700 is a prefect piece of hardware for running Boxee's free media center software. If you're thinking of gettin something like this for your home, it's definately worth checking out Boxee's own hardware - the Boxee box by Dlink, which is an acquired taste in design, but also comes with the Boxee remote with a full keyboard on the back. I decided to go with the Acer Revo instead, as it left more options for updating or switching to other software down the line. Note Boxee is built on xbmc and if you're not keen on the social sharing side of Boxee, it's well worth checking out! So here follows a brief guide to setting up your Acer Revo 3700 as a home media center.

1) Assemble your kit, hook up your Revo to your TV for audio or sound, i use the VGA and standard audio out, but there's HDMI there too, either way you'll get the full 1080p presuming your TV can handle the resolution.


2) Install Ubuntu. The cheaper Revo comes with Linux Linpus installed, I created a Live USB of Ubuntu 10.10 and booted to usb. To do this press f12 when you turn it on at the initial Acer screen and select the USB stick from the menu. Then once the desktop loads, use the icon on the desktop to install Ubuntu, let it use the entire disk and replace Linpus on your Revo.



3) Once instaled there's some tweeking to be done, first is to fix the wireless card. Open the terminal and type:
sudo gedit /etc/modprobe.d/blacklist.conf

then add the following line to the end of the file:
blacklist rt2800pci


press 'Ctrl + O' to write the file, then 'Ctrl + X' to close it. That's it! the first time you shutdown the machine it'll freeze, when this happens, hold the power button in for 6 seconds and it'll power down suddenly. Press it again to power it on and it shouldn't freeze again now the fix has been applied.

Then apply the updates. Go to System -> Administration -> Update Manager install all updates. It'll take a while. Then go System -> Administration -> Additional Drivers and enable the nvidia driver (recommended). This will require a restart to take effect.



4) next install Boxee. Go to www.boxee.tv and download the version for Ubuntu Linux. Once downloaded install the software.



That's essentially it. You're now ready to go, launch Boxee and add your videos to the library and enjoy watching some videos!

Saturday, 12 March 2011

From Wordpress to Blogger

As a PHP web developer, i often use my blog as my testing ground for new stuff. I've always used Wordpress for small sites and blogs and Drupal for my larger sites, but always wondered how well Google's Blogger works...

Seeing as they use it for their own Google blogs (webmaster, analytics, etc..) i thought it can't be bad, and obviously you don't have to worry about SEO, as i'm sure they pretty much have it covered, so I decided to move my blog and give it a try for a while.

Moving was pretty easy. First I created a new blog using my Gmail account and chose a theme. Second i exported my blog from Wordpress and used http://wordpress2blogger.appspot.com/ to convert the xml backup file onlline. Third I imported the new backup file into Blogger and tweeked some of the themes widget settings to get my 'Labels' displaying as links - done.

Hope this new platform will inspire me to blog more often. I'm still busy running the Xbox gaming blog: theLostnFound but I have lots of other stuff i want to blog about, which'll end up here.

Monday, 21 September 2009

Mac Tip: How to launch applications - Fast!

Here's a little tip of how to launch Applications really quickly on your Mac. This makes use of the Spotlight feature to search for the application you want to launch, which saves you all the work of going through the finder and searching for the launch icon.

Tip: Hold the 'apple key' and press 'Space' this is really easy as they're next to each other and can easily be done with your left index finger and thumb. This opens the spotlight searchbox, now start typing the applications name. Within a couple of letters it should have selected the app you're after, so just hit Enter to open the app.

eg: 'Apple key' 'Space' 'i' 't' (searches and selects itunes and enter opens it straight away!

Sunday, 6 September 2009

Seventh Day - Skate Video


This video was made circa 2006 and reminds me of the time I spent living in Cornwall and riding long boards for the Christian Skate clothing label - BelieveClothing.

Particularly happy with capturing my 360 on film (at 17:21 mins)

A video about Skate-boarding in Cornwall. With a focus on long-boarding and downhill sliding.

The video documents a group of Christian Skaters as they reach out to young people of Falmouth Cornwall. I am both in this video as well as helping film for it. This video was edited and produced by David Renyard - davidjdesigns.me.uk

Thursday, 3 September 2009

WD500 External Hard Drive Stopped Working

2009-09-03 20.52.02Recently my Western Digital 500GB external drive stopped working. Fine one day, then no power the next.

Symptoms: No Power at all, no noise or spinning. The power unit itself will light green when not connected to the drive, but as soon as it's attached the green light goes out. If connected the power light will stay light for 1 second, then no power.

This seems to be a common fault with this drive and it would seem obvious that the power supply has failed. However following through the problems these guys had, it would seem it's not the power supply, but the external casing that's causing the drive to fail.

Solution: Rest assured your data is probably still safe, as the hard-drive itself is likely to be fine. You have a couple of options:

  1. Buy a new external hard drive casing/enclosure, this costs around £20-30

  2. Fit the drive in you Desktop PC as an internal drive.


Seeing as you can buy a new 500GB for under £50, I didn't want to spend £30 on a case. So went with the internal drive method. It's easy to do and if your PC's not too old it'll probably have everything you need inside the case!

2009-09-02 22.43.50First take your external drive to peices, just strip off the outer case until you've freed the drive. It's a standard 3.5" SATA HDD. It has two connectors on the back, the smallest is the SATA DATA connection that connects it to the motherboard, and the longer connector is for power.

In your desktop you'll probably have a spare power socket on a ribbon cable behind your existing drive, you can also use the small SATA cable to connect it to the motherboard.

Boot up your PC and your away! The drive will be recognised in the My Computer window. If your PC's a bit older it may only have IDE connectors, but all is not lost, you can pick up an IDE to SATA converter that'll allow you to connect it up.

I bought a SATA and Power connector from Maplin for just under £4.

Good Luck!

Friday, 21 August 2009

HTML Form input boxes clear when clicked

Here's a quick tip on clearing the default text from text boxes in a form.

First of all you can add the default text to a input box by declaring a value:

<input type="text" value="Enter Name" />



Now we can add an 'onfocus' event that will delete this value when the box is clicked, essentially by replacing it with nothing.

<input type="text" value="Enter Name" onfocus="if ( this.value=='Enter Name' ) { this.value = ''; }"/>



note: where it states the second this.value they're two single quotes '  ' and the statement is wrapped in double quotes. The two single quotes with no space between is for the value zero.

So now the text box appears with the tag 'Enter Name' inside it but when the user clicks the box the text disappears. This also works really well for search boxes eg- 'Search my site'.

Friday, 7 August 2009

Div containing floating divs collapses

After about an hour of trying to work out why the spacing between my posts was working in Internet Explorer but not in Firefox, I stumbled upon a common issue.

If a Div contains floating divs it will not resize the height to contain the floating divs. So adding padding to the containg div has no effect. This is how floating divs are supposed to behave. IE ignores this and contains them anyway, but most other modern browsers follow the rules and let the inner divs float 'uncontained'.

The simple solution to this problem is to include and empty div after the floating divs and within the container. This empty div must not have a floating property and must be set to clear the floating divs. This gives the container div something to wrap around. The code will look something like this:

<div class="container">


<div class="float-left"> </div>


<div class="float-right"> </div>


<div style="clear:both;"> </div>


</div>



So the magic bit is "<div style="clear:both;"> </div>" just insert it just before you close the container div.