We finally took the plunge & invested in an apple airport extreme. We have been having a lot of problems with our normally rock solid Cisco router and e crappy salem router supplied by Sky. The problem is while we are in between houses we are living in an apartment. It’s not ideal as we are used to living in a larger space. The key to where we no rally live is the lack of wifi interference & channel overlap. Before we moved out of our last house there where no wifi networks in range of our property, not one. Now we are in the apartment there are over 30 picked up with weak antennas such as the iPhone and over 50 if scanning with the MacBook pro or iMac. This interference causes havoc.
Category: Technical
Call of duty MW3 on iMac – apple osx lion boot camp
I’ve been having issues with my Xbox overheating. It’s due an upgrade but I’m saving hard for a new car so I’m not spending any money. Since I don’t have any windows machines anymore I decided to setup a boot camp partition and install windows 7 to play modern warfare 3.
My iMac is a mid 2009 model iMac with the 2.93ghz core 2 duo processor, 4GB of ram and a nvidia GT120 dedicated graphics card. I thought this would be plenty to run Mw3 in low graphics settings, but I was so surprised to see it run at high graphic details with 2x anti aliasing enabled and sustain a minimum of 30fps on really detailed open maps. When in buildings where less scenery is visible its possible to hit 60 or 70fps. Bearing in mind this is with everything set to high so the graphics look great, and 30fps is perfectly playable & fast. If you want an even faster gaming experience you can reduce the graphics quality. This is also running at the iMacs native resolution of 1920×1200 resolution.
MacBook pro finally upgraded.
So far I’m really impressed. The apple migration assistant was great and copied everything over Ethernet in a little over an hour from my old machine to the new one. That’s over 90gb of stuff copied & organised with only a few clicks. Today I’m sat in a coffee shop working, modifying php scripts, uploading files and configuring a MySQL database. What’s more I fully charged it last night and after 5 hours of use I still have 36% charge left, and it’s been hammered today already. So much stuff open including dreamweaver, photoshop, safari, mail, iTunes.
Another great thing about this laptop is the unibody design. My previous laptops always felt a little brittle, like if you picked it up it would break in two. This laptop feels very sturdy & rugged.
Granted all these perks come at a price of over £1000 but our new philosophy is to invest in the best. For too long has cutting costs caused headaches and days of installing & reinstalling.
So far I’m loving iCloud & photo stream. All my photos in sync ready to use on the iPad, iPhone & macs. So much easier than trying to manually sync everything up and creating duplicates.
Anyway a few photos of the new baby.
XBMC for iPad
1. Go to Sources -> Edit -> Add
3. Type in “http://mirrors.xbmc.org/apt/ios/” (Without the quotation marks)
Now once the repository is added and updated, search for XBMC in cydia and hit install. Mine installed really quickly and I was up and running in minutes. All that was left to do is add my SMB shares from the iMac and I could start streaming videos in any format directly from my mac. No need to convert to mp4/m4v and no need to manually copy them across into the VLC app. All in all A nice use for the iPad, portal streaming throughout the house. I’ve also setup the iPhone 4 for streaming which is excellent.
As this is a free app I’d advise you all install and have a play with it. I’ve now got XBMC on every machine in the house, including my jailbroken Apple TV 2 and it’s the centre of my home media.
OSX Lion Samba SMB shares broken – XBMC KODI not working
Well it’s been a nightmare few days with the upgrade to Lion GM breaking Samba sharing. For me NFS isnt really an option, it’s clunky, and my network is full of old windows machines, not to mention the XBMC’s on the Apple TV 2, Ipad 2, iPhone and the old Xboxs. i needed a fix for Samba, and this came in the form of installing Samba 3 on Lion via Macports and setting up the smb.conf file manually to share my media.
This text is partly my own work and partly complied from other tutorials.
You will need a copy of Lion GM installed on your mac, along with a copy of xcode 4.1 (available from a lot of places, legitimate or otherwise). You will then also install first macports and then samba 3 via terminal, but most of this stuff is copy & paste. Finally, I’d install a copy of Textwrangler for mac. It will let you edit files in its text editor without using the command line, which is much easier, and will let you unlock & authenticate to save/open files anywhere in the filesystem.
First, install Xcode 4.1 (DP7 or GM is needed currently).
Second, install MacPorts from SVN using these directions taken from macports site
Check out MacPorts source
In Terminal, one line at a time
sudo mkdir -p /opt/mports
sudo cd /opt/mports
sudo svn checkout http://svn.macports.org/repository/macports/trunk
Build and Install MacPorts
MacPorts uses autoconf and makefiles for installation. These commands will build and install MacPorts to /opt/local. I ran all these with the sudo command before them to avoid permissions problems
sudo cd /opt/mports/trunk/base
sudo ./configure --enable-readline
sudo make
sudo make install
sudo make distclean
Open /opt/local/etc/macports/sources.conf in a text editor. The last line which should look like this:
rsync://rsync.macports.org/release/ports/
Change it to point to the working copy you checked out:
file:///opt/mports/trunk/dports
Now MacPorts will look for portfiles in the working copy.
After installing MacPorts, you may need to add it to your PATH, so go ahead and run in terminal:
export PATH=$PATH:/opt/local/bin
and then
sudo port -d sync
This will make sure that it is added to your path, and you shouldn’t have to specify full paths to binaries. The second command tells macports to download the latest versions of the portfiles (instructions for macports on installing a program)
Once everything with macports is finished setting up, open up a terminal window and type
sudo port install samba3
It’ll automatically install samba 3 and all of its dependencies.
Now to edit the configuration! It’s pretty straight forward if you read through the config file located at /opt/local/etc/samba3/smb.conf (it’s callend smb.conf.sample, just remove the .sample from the filename and open with textwrangler).
Your shares should look something like this (you can have as many as you like):
[Downloads]
comment = Downloads
path = /Users/jodsclass/Downloads
available = yes
guest ok = yes
create mask = 644
directory mask = 755
read only = no
[Movies]
comment = Movies
path = /Volumes/MyBook/Movies
available = yes
guest ok = yes
create mask = 644
directory mask = 755
read only = no
[TV]
comment = TV
path = /Volumes/MyBook/TV Shows
available = yes
guest ok = yes
create mask = 644
directory mask = 755
read only = no
Also, remember to change your workgroup name to match the rest of the machines on your network, mine are all on workgroup so mine looks like
# workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
workgroup = WORKGROUP
And the name of my mac is imac so my server string is
# server string is the equivalent of the NT Description field
server string = imac
(that way SMB shares can be accessed at smb://imac instead of using IP based). You can leave the rest of the config file commented out.
All that’s left now is to do
sudo /opt/local/sbin/smbd -D && sudo /opt/local/sbin/nmbd -D
(I’m using full paths so we dont accidentally start up the apple supplied smb server ) and samba will be up and running. The only downside I’ve found is that you do need to remember to start samba every time you reboot (the “sudo /opt/local/sbin/smbd -D && sudo /opt/local/sbin/nmbd -D” commands).
You can use the following launchagent to start the samba server everytime your machine restarts.
Download mine here and put it in /Library/LaunchAgents, and it should automatically start up samba for you.
Now in XBMC just add your samba shares as follows.
smb://imac (or whatever your machine is called in the server string above)
NOTE: Please remember to turn off SMB sharing in settings>sharing>File Sharing as the built in OSX Lion SMB implementation will clash with the one you installed via Macports
UPDATE – I’ve found a much better fix – Use NFS shares instead- Use NFS shares instead of Samba with XBMC
2600 Digital Edition Downloads
Check it out
The Filter Bubble: What The Internet Is Hiding From You epub
I’m currently reading The Filter Bubble by Eli Pariser. I downloaded the book as a DRM free epub (I’m funny about where I buy my books from as I have a Kindle, an iPad & an iPhone so i tend to chop and change my reading device). I’m about 50% of the way through the book and it’s quite scary stuff. It’s so far prompted me to slim down my Facebook account, including removing extra information from the account. I’ve also taken steps to block tracking websites by disabling tracking in Firefox & ramping up my Adblock Pro. It’s really crazy how much money can be made from your information, you think you are benefiting from a great free service but the company behind it are normally profiting hugely from sharing your information.
It really is a great read, give it a look and grab a copy for your kindle or iPad.
iPad 2 is the future
I’m really impressed so far. My only criticism of the iPad 2 is the quality of the cameras. They are adequate, but feel like an afterthought. The resolution is rubbish on both front & rear cameras and my ageing iPhone 3G takes much better stills.
With that in mind let’s look at the iPad 2 itself as a functional mobile device. I’m not entering into the post pc era nonsense. This device will never replace my iMac, but it will complement both the iMac & iPhone. Right now I’m writing this blog entry from my seat on the train somewhere between cornwall & london. my power adapter is buried deep inside my luggage, I won’t be needing it. I’ve got my headphones in, and my music library on shuffle & I’m multitasking between my business email, website backends and my twitter feed. It really is an amazing device and already has changed the way I can work.
I will put a full review up shortly. Now back to my work and onwards to london to support Gary @the marathon.
Western Digital WD My Book Essential 2TB Hard Drive – Nice
I finally took the plunge and bought a decent sized external hard drive. Up until now I’ve hoarded away my movies & media on DVD’s but with the cost of storage media plummeting I decided to opt for one of these 2TB hard drives from Western Digital. The My Book Essential is a nice looking unit with a gloss black finish, rubberised feet to stop vibration and a front facing storage gauge indicating how full the drive is. The drive is nice and fast over USB 2.0 and does a great job of spinning down when not in use and even shuts itself down when I put the mac to sleep so is very conveneient.
The drive itself is pretty silent, and apart from the odd click I never hear it operating.
Formatting for the mac was simple and Disk Utility did a full format in around 10 mins. My first impressions of the drive are positive. I’ve already copied a lot of my media back from DVD’s onto the drive and in my quest for a minimal digital footprint I’ve disposed of the disks.
I’ve now used a terabyte of space, but all my disks are now archived on the drive so It’s just free to fill with movies & TV shows now. Now that I’ve got XBMC installed on the apple TV I’m allowing it to scrape the drive for all my media and adding it to the library which is very convenient. True on demand media, complete with movie posters, series information, actors etc. Superb
Apple TV 2 + greenpois0n RC6 + XBMC = Awesome
The jailbreak wasn’t too difficult (although I still use pwnage tool to get the apple TV 2 into DFU mode as it seems much easier). Once in DFU mode I plugged in the power cable then it’s just a case of running greenpois0n RC6 (mac version) and hitting the jailbreak button. Once it says complete, wait around 40 seconds before removing the usb cable and inserting the HDMI cable. You will have an extra tab on your apple tv called greenpois0n. Click this and click install cydia and it will download cydia from the repository using apt.
When the apple TV 2 reboots you will have a nitoTV tab, which allows you to install a few different apps including XBMC. I installed XBMC this way, but the installation failed so I fired up terminal on my mac, logged in via SSH and ran the following command ‘dpkg –configure -a’ as root. This fixed the local apt files and re-installed XBMC.
Following a further reboot of the Apple TV 2 we where rolling. I had lost wifi, but re-installing nitoTV fixed that. I also disabled the apple software update in NitoTV to stop it nagging in the future.
XBMC looks amazing in 720p over HDMI. I installed the PM3:HD skin which is quicker than the default skin, and matches that used on my old xbox. I’ve now retired the xbox and the new apple tv is superb. Plays 1080p .mkv files without issue. My only complaint is that the remote is a little limited, but using the xbmc control app for my iPhone fixes that.
I’ll post up more findings.
iPad, nah – iPhone 4 Yes Please
So today we have the iPhone 4 announced, and that is a game changer. The iPhone 3G I have is probably the single most influential piece of technology I have bought in years. It has freed me from the office allowing me to do my work from anywhere. Emailing, blogging, tweeting, calling, texting, browsing, apping. It really is a great device, and the iPhone 4 promises so much more. A 5MP camera, front & rear facing with flash, awesome. Glass front & back which is many times stronger than plastic, and won’t scratch like the plastic backed 3G, awesome. Faster HSDPA superb. 720p video recording, nice. Multitasking, yes. It’s just ticking all the boxes for me. Video calls look fun and I could see myself dealing with my Business Partner in Scotland from down here on the south coast improving no end with Video calling on our iPhones.
I love it already, and will be buying one. The slated release date is 24th June so I’ll be there for the 32GB version. Only choice I need to make is Black or white?!?
That is all. iPhone 4 awesomeness.

Time for Something New
Well it has been a crazy month of new things. Firstly the month has seen me in and out of the doctors with headaches, which we have concluded is down to stress, and a weak right eye which is being irritated by using a screen all day. So I now have two pairs of posh designer glasses to wear which has already made a big difference, meaning I can see my iPhone & netbook and all other screens alot more clearly.
To go with the new eyewear, I finally invested in a North Face hardcore waterproof with zip out fleece which cost me so much money it makes my eyes water thinking about it, but I’ve wanted the jacket and the fleece for so long, and I got a good deal on the pair so I now have them.
Perhaps the icing on the cake is our new top end 24″ iMac with maxed out Ram, Graphics and processor specs. Cost a hell of a lot of money, and the guys in the Apple Store Manchester where very helpful in sourcing & sorting us out with our new baby, so all our work is now being completed on the iMac.
Mixed thoughts so far, the hardware is amazing, and the screen is immense, however Snow Leopard sucks. Tons of system crashes, enabling Sharing makes everything start to crash,, and running CS3 or CS4 is impossible on Snow Leopard, Illustrator, Photoshop and Dreamweaver just crash whenever you try to open, save or print a document. It will also crash on copy/paste or infact for any reason at all. Also the guttenberg print drivers seem very sketchy, and there is a lot of banding and colour problems on my Trusty Epson CX3200. I finally had enough of the issues and downgraded to Leopard 10.5.8 which is solid as a rock.

Tomtom app for iphone – first impressions
First impressions of the app Are mixed. The gps signal isn’t great on the iPhone, and the app isn’t as responsive or fast when compared with the tontom go. However the functionality is complete and the app has much more functionality than the recently updated tomtom go software.
Samsung n110 Netbook – 2 months in.
Well I’m now in the second month of ownership and I still love the Samsung N110. This machine has completely changed the way I browse then Internet, and the fact that most of the things I do online are web based such as Twitter, Gmail, iPlayer and reading news and blogs, the Netbook is an ideal partner.
I was sceptical from the start with regards to quoted battery life, but I’ve got to admit, even with normal usage on battery with brightness adjusted to my lining and iTunes either playing music or downloading podcasts in the background, I still manage in excess of 8 hours battery life from a single charge. I now find that If I charge the netbook overnight, I can do all my computing on it the following day without the need for a power outlet. The powe consumption and battery life is amazing, and although the system may be limited from a processor power point of view, it is more than sufficient for editing photos in Picassa or Photoshop, and writing php in Dreamweaver.
Another fear when buying the netbook was the size. I wanted a laptop which was portable, and all the laptops I have owned in the past where far from portable because they required hoofing about in laptop bags, and always required the AC adaptors. The Samsung N110 was supplied with it’s own samsung netbook sleeve, and I tend to just throw it in the car or a backpack to take it anywhere I go.
The screen is only 10 inches, and the resolution is only 1024 x 600 but this is quite easy to get used to, and the synaptic scroll pad is great for scrolling down web pages. Most pages will fit horizontally without need for scrolling and with the adoption of good CSS standards, most content will shift to fit.
The keyboard was another worry, coming it at something like 93% of full size I’ve actually adjusted to the keyboard really well, and it is really nice to type on for extended periods of time. The silver nano key coating is also welcome as it eliminates bacteria growth on the keys, and i far more hygenic than normal keyboards.
I have tried Windows 7 on the Samsung N110 and whilst it runs well, there are issues with shutdown taking a while. Also I’ve experienced far reduced battery life under Windows 7, and the netbook feels nowhere near as snappy as it does under XP, so I’ve opted to stay with XP on the netbook. To be honest I don’t really see a problem with using XP on a netbook as it is a very familiar operating system, and does a great job at providing awesome performance and superb battery life.
This netbook has really set me free with regards working from home. Coupled with the new iPhone 3.01 update and Tethering I can work online from anywhere (even got online from the Outer Hebrides in Scotland and was able to work and twitter). The combination of the netbook and the iPhone means I am now truly mobile.
I can’t see my life without a netbook in it now, and hopefully as processor development continues, and battery technology improves we can maybe hit the 24 or 48 hour battery life marks. By using the Netbook in place of the Desktop 99% of the time I’ve reduced my power consumption from 400-500 watts right down to 6-8 watts of power draw. This is a great benefit of Netbook technology, and may even persuade me to look into a net-top for home.
I’ll keep posting reviews of this netbook along with experiences and problems encountered so watch this space.
Downloading Carpool Podcast. Check it out at Llewtube or on iTunes






























