<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Matt Facer</title>
	<atom:link href="http://www.mattfacer.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mattfacer.com</link>
	<description>Father, husband, coder, security consultant, interwebs junkie</description>
	<lastBuildDate>Fri, 20 May 2011 09:14:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>MS Access &#8211; XML failed to validate against the schema &#8211; Solution!</title>
		<link>http://www.mattfacer.com/ms-access-xml-failed-to-validate-against-the-schema-solution</link>
		<comments>http://www.mattfacer.com/ms-access-xml-failed-to-validate-against-the-schema-solution#comments</comments>
		<pubDate>Fri, 20 May 2011 09:14:34 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=827</guid>
		<description><![CDATA[Today I hit a snag in my Access 2007 database. I was getting an error message which I&#8217;d never seen before. I googled a lot and found that no-one seemed to have an answer. The error message suggested it was ...]]></description>
			<content:encoded><![CDATA[<p>Today I hit a snag in my Access 2007 database. I was getting an error message which I&#8217;d never seen before. I googled a lot and found that no-one seemed to have an answer.</p>
<p><a href="http://www.mattfacer.com/wp-content/uploads/2011/05/error-message.png"><img class="alignnone size-full wp-image-828" title="error message" src="http://www.mattfacer.com/wp-content/uploads/2011/05/error-message.png" alt="" width="510" height="83" /></a></p>
<p>The error message suggested it was a whitespace problem. So I went through my dataset looking for any strange characters or blank rows where it should expect a value. Nothing!</p>
<p>I then came across the solution. My query had an apersand (&amp;) in the title. &#8220;Migration Report &amp; Contact Details&#8221; is what I had it saved as. I found this totally by chance as I renamed it to &#8220;Migration Report including Contact Details&#8221; and it suddenly worked!!</p>
<p>Hopefully this will help other people with a similar problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/ms-access-xml-failed-to-validate-against-the-schema-solution/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shell script to automatically add mp3s to iTunes</title>
		<link>http://www.mattfacer.com/shell-script-to-automatically-add-mp3s-to-itunes</link>
		<comments>http://www.mattfacer.com/shell-script-to-automatically-add-mp3s-to-itunes#comments</comments>
		<pubDate>Sun, 10 Apr 2011 09:03:54 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[sabnzbd]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=782</guid>
		<description><![CDATA[If you&#8217;re using Sabnzbd to download from usenet groups, it allows you to use a shell script for post processing. This script can be used to move any music files from your download location to a remote hard drive (or ...]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using Sabnzbd to download from usenet groups, it allows you to use a shell script for post processing. This script can be used to move any music files from your download location to a remote hard drive (or any mounted drive) as well as automatically adding the downloaded music to iTunes using AppleScript.</p>
<p>To use this with Sabnzbd, simply open a text editor and save it as &#8220;music_sort.sh&#8221;. (Or what ever you like!) &#8211; then tell Sabnzbd where to find the script. Here&#8217;s the script in it&#8217;s entirety. I&#8217;ll go through it bit by bit below</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#!/bin/bash</span><br />
<br />
<span style="color: #666666; font-style: italic;">#1 = Full path to the downloaded file</span><br />
<span style="color: #666666; font-style: italic;">#3 = Folder name of the download</span><br />
<br />
<span style="color: #666666; font-style: italic;">#delete any files which you don't want to copy</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Deleting the bumfluff...&quot;</span><br />
<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;$1&quot;</span><span style="color: #000000; font-weight: bold;">/*</span>.nfo<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;$1&quot;</span><span style="color: #000000; font-weight: bold;">/*</span>.srr<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;$1&quot;</span><span style="color: #000000; font-weight: bold;">/*</span>.sfv<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;$1&quot;</span><span style="color: #000000; font-weight: bold;">/*</span>.nzb<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;$1&quot;</span><span style="color: #000000; font-weight: bold;">/*</span>.m3u<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;$1&quot;</span><span style="color: #000000; font-weight: bold;">/*</span>.jpg<br />
<br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;[done]&quot;</span><br />
<br />
<span style="color: #666666; font-style: italic;">#move the file to your remote location</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Moving...&quot;</span><br />
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #660033;">-fv</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">/</span>volumes<span style="color: #000000; font-weight: bold;">/</span>myDrive<span style="color: #000000; font-weight: bold;">/</span>music<br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;[done]&quot;</span><br />
<br />
<span style="color: #666666; font-style: italic;">#add the file to iTunes</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Adding to iTunes…&quot;</span><br />
osascript <span style="color: #cc0000; font-style: italic;">&lt;&lt; APPLESCRIPT<br />
tell application &quot;iTunes&quot; to add &quot;volumes:myDrive:music:$3&quot; to playlist &quot;Library&quot;<br />
APPLESCRIPT</span><br />
<br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;[done]&quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">exit</span></div></td></tr></tbody></table></div>
<p>One thing to note here (and it took me a while to find it out) is that the path to add files to iTunes automatically has to have : and not a back or forward slash.</p>
<p>I&#8217;m sure this script can be improved, so please post if you spot anything!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/shell-script-to-automatically-add-mp3s-to-itunes/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iTunesTouch source code on Googlecode</title>
		<link>http://www.mattfacer.com/itunestouch-source-code-on-googlecode</link>
		<comments>http://www.mattfacer.com/itunestouch-source-code-on-googlecode#comments</comments>
		<pubDate>Fri, 08 Apr 2011 22:15:43 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[iPhone / iPad]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Sounds]]></category>
		<category><![CDATA[itunestouch]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=776</guid>
		<description><![CDATA[&#160; I started iTunesTouch with the intention of creating a great free touchscreen product. My time has however not been available recently&#8230; mainly due to the arrival of my little girl (now 4 months old!). I&#8217;ve had several requests for ...]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I started <a href="http://www.touchscreenjukeboxes.co.uk/itunestouch" target="_blank">iTunesTouch</a> with the intention of creating a great free touchscreen product. My time has however not been available recently&#8230; mainly due to the arrival of my little girl (now 4 months old!).</p>
<p>I&#8217;ve had several requests for source code so other members of the community can keep the software going. I have now created a repository on Google Code. However, I&#8217;ve never used it.</p>
<p>If anyone wants to help with the coding, then please head over to <a href="http://code.google.com/p/itunestouch/" target="_blank">http://code.google.com/p/itunestouch/</a></p>
<p>Reply to this post to let me know if you&#8217;re interested and I can add you as a developer. If anyone has any tips on how to use Google Code to get me started, that&#8217;d help a lot!!</p>
<p><del>There&#8217;s no code there yet &#8211; I need to head back home to get that. Hopefully I will upload it later this evening.</del></p>
<p><strong>[Update 08 April 2011]</strong><br />
Finally got around to uploading the code. Take a look and let me know any problems etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/itunestouch-source-code-on-googlecode/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>What can you do with your old mac mini?</title>
		<link>http://www.mattfacer.com/what-can-you-do-with-your-old-mac-mini</link>
		<comments>http://www.mattfacer.com/what-can-you-do-with-your-old-mac-mini#comments</comments>
		<pubDate>Fri, 08 Apr 2011 20:56:22 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[House]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac mini]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=762</guid>
		<description><![CDATA[I have a new mac mini running Plex for my televisual pleasure. I recently adopted a rather old Mac Mini which I planned to use for a development box. Once I received it though, it became apparent that it was ...]]></description>
			<content:encoded><![CDATA[<p>I have a new mac mini running Plex for my televisual pleasure. I recently adopted a rather old Mac Mini which I planned to use for a development box. Once I received it though, it became apparent that it was in fact, REALLY old. I think First Gen.</p>
<p>I couldn&#8217;t install anything &#8220;modern&#8221; on it. Funny how I take for granted the Intel chip in the newer one&#8230; so it then became a project for what I could actually use it for. First thing&#8217;s first &#8211; I had to update the OS. As it&#8217;s a PowerPC processor, there&#8217;s no way snow leopard would go on and I didn&#8217;t want to fork out for more memory (it only has 512mb) to run Leopard. So I bought Tiger OS. (10.4 I think). Once updated, it was time to install something&#8230; anything.</p>
<h2>Sabnzbd &#8211; download slave</h2>
<p><a href="http://www.mattfacer.com/wp-content/uploads/2011/04/sabnzbd_logo.png"><img class="alignnone size-full wp-image-766" title="sabnzbd_logo" src="http://www.mattfacer.com/wp-content/uploads/2011/04/sabnzbd_logo.png" alt="" width="408" height="112" /></a></p>
<p>Sabnzbd is the be-all-and-end-all of usenet downloader applications. I&#8217;ve used a whole host of packages to download usenet files before and always struggled with unpacking or fixing etc. This does everything for you. It will even connect to the nzbmatrix and newzbin API for quick bookmarking.</p>
<p>You either use the web interface to add an NZB or bookmark it (on Newzbin or NZBMatrix) for sabnzbd to pick up automatically. It goes away and does it&#8217;s thing &#8211; unpacking &amp; repairing (if need be). You are left with the finished article. It also allows you to run shell scripts on completion &#8211; so you can move the file to your network drive for example. Or, in my case, move to the external drive and add music to iTunes. (I&#8217;ll post a script for that later).</p>
<p>Sabnzbd is available for Mac OSX, Windows and Linux from <a href="http://www.sabnzbd.org" target="_blank">www.sabnzbd.org</a></p>
<h2>iTunes &#8211; music slave</h2>
<p><img class="alignnone size-medium wp-image-768" title="silhouette20dancing20people" src="http://www.mattfacer.com/wp-content/uploads/2011/04/silhouette20dancing20people-300x162.jpg" alt="" width="300" height="162" /></p>
<p>I have a few <a href="http://www.amazon.co.uk/Veho-VSS-002w-Speaker-Including-Transmitting/dp/B002JC78G6" target="_blank">Veho wireless speakers</a> dotted around the house and it&#8217;s always frustrated me having to turn on a mac to play iTunes so I can have a listen. Queue the always on mac mini music slave! The Veho speakers have a USB transmitter which each of the speakers automatically connect to.</p>
<p>Using the iPhone or my iPad as a remote control allows me to connect any time to the &#8220;music slave&#8221;. Switching the speakers on and bang &#8211; always on music! If you&#8217;re not happy with the sound produced by these Veho speakers, check out my <a href="http://www.touchscreenjukeboxes.co.uk/modified-veho-wireless-speakers" target="_blank">post on modifying them</a>. I hacked it up to work with my Bose speakers. Works a treat!</p>
<h2>Other options</h2>
<p><img class="alignnone size-full wp-image-770" title="plex" src="http://www.mattfacer.com/wp-content/uploads/2011/04/plex.jpg" alt="" width="196" height="78" /></p>
<p>Although this isn&#8217;t running on my ancient mac mini, I do use Plex on my newer Intel Mac Mini. It&#8217;s an amazing bit of kit. If you have at least 1GB ram, you could run this on your &#8220;always on&#8221; mac mini to watch movies on your iPhone or iPad. Of course, you can always hook it up to your TV as we have done with the newer one. <a href="http://www.plexapp.com" target="_blank">www.plexapp.com</a></p>
<p><img class="alignnone size-medium wp-image-772" title="mame logo" src="http://www.mattfacer.com/wp-content/uploads/2011/04/Screen-shot-2011-04-08-at-21.35.55-300x94.png" alt="" width="300" height="94" /></p>
<p>Using Mame OSX (<a href="http://mameosx.sourceforge.net" target="_blank">http://mameosx.sourceforge.net</a>) you can turn your old mac mini in to an arcade machine. Play all the old classics (Track &amp; Field is still my favourite). Check out <a href="http://mamedev.org" target="_blank">http://mamedev.org</a> for more information and how to download some ROMs (games) to play on it.</p>
<p><img class="alignnone size-medium wp-image-774" title="mac mini in car" src="http://www.mattfacer.com/wp-content/uploads/2011/04/Screen-shot-2011-04-08-at-21.51.22-300x141.png" alt="" width="300" height="141" /></p>
<p>Put the mac mini in your car or campervan! Check out <a href="http://www.macvroom.com" target="_blank">http://www.macvroom.com</a> for more information and project ideas.</p>
<h2>Any other ideas?</h2>
<p>I&#8217;m keen to try other ideas so please post and let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/what-can-you-do-with-your-old-mac-mini/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dr Bruce Cook&#8217;s Scam Email</title>
		<link>http://www.mattfacer.com/dr-bruce-cooks-scam-email</link>
		<comments>http://www.mattfacer.com/dr-bruce-cooks-scam-email#comments</comments>
		<pubDate>Sun, 27 Mar 2011 21:09:14 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Scams]]></category>
		<category><![CDATA[scam]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/dr-bruce-cooks-scam-email</guid>
		<description><![CDATA[So today I received an email from the very convincing Dr Bruce Cook (not). It&#8217;s been a while since I received any scam emails.. So this one was a nice surprise. Check it out, it&#8217;s &#8220;grate&#8221; ============ To Whom it ...]]></description>
			<content:encoded><![CDATA[<p>So today I received an email from the very convincing Dr Bruce Cook (not). It&#8217;s been a while since I received any scam emails.. So this one was a nice surprise.</p>
<p>Check it out, it&#8217;s &#8220;grate&#8221; <img src='http://www.mattfacer.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>============<br />
To Whom it may concern,</p>
<p>I will start by way of introduction,my name is Dr Bruce Cook from USA,i have been a victim of so many scams in an attempt to secure a business loan on the Internent until a friend of mine introduced me to this God Fearing Lender Mr Sanjay Parab by name and to my gratest surprise he granted me a loan of $240,000 within a period of one week. In deed it was a grate miracle</p>
<p>So my dear brothers and sisters in despirate need of Loan,i advice you contact this man and aviod prey in the hands of numerious fraud stars on the internet</p>
<p>His name is Mr Sanjay Parab<br />
Email contact: prkumarfinance@aol.com<br />
Mobile:+918951603135</p>
<p>If you are in need of a loan kindly contact him and secure your loan stress free.<br />
I look forward to seeing your testimony<br />
Dr Bruce Cook</p>
<p>============</p>
<p>Remember people, this isn&#8217;t real! I&#8217;ve simply posted hoping that if anyone googles the details, they will find this site and know not to contact Sanjay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/dr-bruce-cooks-scam-email/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jailbreaking your iPhone &#8211; a beginners view and my favourite apps</title>
		<link>http://www.mattfacer.com/jailbreaking-your-iphone-a-beginners-view-and-my-favourite-apps</link>
		<comments>http://www.mattfacer.com/jailbreaking-your-iphone-a-beginners-view-and-my-favourite-apps#comments</comments>
		<pubDate>Wed, 09 Mar 2011 15:06:11 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone / iPad]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=742</guid>
		<description><![CDATA[So it&#8217;s been a long time coming &#8211; but I was finally ready to jailbreak my iPhone 3GS. I refused to do it before now simply because I didn&#8217;t want to wreck it. Methods have come a long way since ...]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s been a long time coming &#8211; but I was finally ready to jailbreak my iPhone 3GS. I refused to do it before now simply because I didn&#8217;t want to wreck it. Methods have come a long way since I used a naff jailbreak method on an iPod touch (first generation) many years ago.</p>
<p>If anything goes wrong, you can always just do a factory restore through itunes.</p>
<h2>Why should I jailbreak my iPhone?</h2>
<p>This is the leading question I was asking myself. Why did I need to do this? Simple answer is, I didn&#8217;t. I just wanted to. Having read about so many little tweaks for the iPhone which are available only after Jailbreaking, I thought I&#8217;d give it a whirl. In a nutshell, the answer to this question is the same I gave to my wife, <strong><em>&#8220;It lets you do all the things the iPhone SHOULD be able to do&#8230; plus a little extra&#8221;</em></strong>.</p>
<h2>What version should I use?</h2>
<p>I used iOS 4.2.1 (I think!). There apparently is a version ready for iOS 4.3 &#8211; so it *might* be worth holding out for that one. But I believe it&#8217;s unteathered (this means you&#8217;d have to load the hack each time you boot the phone). I&#8217;ve done mine however and plan to leave it this way &#8211; unless 4.3 offers something 4.2.1 does!</p>
<h2>How do I go about doing this?</h2>
<p>First you&#8217;ll need your iPhone. You should do a sync or take a backup through iTunes. This way you can always restore it if need be. There are a few different ways to jailbreak (I think)&#8230; but the one I used which worked first time (and the instructions were very clear) can be found over at the LifeHacker Jailbreak page: <a href="http://lifehacker.com/#!5771943/the-always-up+to+date-guide-to-jailbreaking-your-ios-device" target="_blank">http://lifehacker.com/#!5771943/the-always-up+to+date-guide-to-jailbreaking-your-ios-device</a></p>
<h2>OK, I&#8217;ve jailbroken my iPhone &#8211; now what?</h2>
<p>So after I completed the jailbreak, I was expecting to see something different. Simply, you don&#8217;t. Everything is now accessed through the Cydia app which you should see on your screen. It&#8217;s effectively like an app store and management console all rolled in to one.</p>
<p>I should mention here that once I loaded Cydia for the first time, it tried to update the &#8220;core files&#8221; which were out of date. I kept getting error messages as it tried to download them saying &#8220;Error, size mismatch&#8221; or &#8220;Hash tag mismatch&#8221;. I spent hours trying to resolve this, only to find that they actually worked fine later on! I think maybe the repository where the updates were stored couldn&#8217;t be accessed or something. Please, someone correct me if that&#8217;s wrong!</p>
<p>So, now you will be wanting to grab the tweaks and apps which drove you to do this in the first place. There are  hundreds (if not thousands?) of apps and tweaks out there. You can add any number of repositories to download these from. Some are free, others cost a few dollars.</p>
<h2>My Favourites</h2>
<p>I didn&#8217;t want to Jailbreak my iPhone to access any illegal or dodgy free apps. I simply wanted to improve the functionality and access features which the iPhone SHOULD be able to do out of the box. I&#8217;ll still be using the main Apple App store for most of my apps.</p>
<p>However, here are the apps / tweaks I have installed so far.</p>
<h2>App: SBSettings (free)</h2>
<p><a href="http://www.mattfacer.com/wp-content/uploads/2011/03/photo-2.png"><img class="alignnone size-full wp-image-750" title="SBSettings" src="http://www.mattfacer.com/wp-content/uploads/2011/03/photo-2.png" alt="" width="320" height="480" /></a></p>
<p>I love this app. It&#8217;s so handy! It adds a drop down toolbar with icons to disable or enable services (eg: 3G, Airplane mode etc) on the iPhone quickly. You access this by swiping across the top status bar. You can also specify what should appear in the menu too.</p>
<h2>Add-on: iSmart Dialer ($3.99)</h2>
<p><img class="alignnone size-full wp-image-747" title="Smart Dialer" src="http://www.mattfacer.com/wp-content/uploads/2011/03/photo-12.png" alt="" width="320" height="480" /></p>
<p>This I am still testing, but so far it looks amazing. It&#8217;s an add on to your existing phone keypad. When you&#8217;re dialling a number it can auto lookup contacts which match that number. It&#8217;s difficult to explain, so check out the video on their site: <a href="http://ismartdialer.com/features.html" target="_blank">http://ismartdialer.com/features.html</a></p>
<h2>App: Winterboard (free)</h2>
<p><img class="alignnone size-full wp-image-748" title="winterboard theme" src="http://www.mattfacer.com/wp-content/uploads/2011/03/photo-1.png" alt="" width="320" height="480" /></p>
<p>Winterboard is an all round visual tweaking app. It allows you to control elements in the user interface, such as hiding the bottom shelf image. You can use this to load other people&#8217;s themes. I currently use the <strong>Suave theme </strong>(as above)</p>
<h2>App: ScummVM (free)</h2>
<p><img class="alignnone size-full wp-image-749" title="ScummVM" src="http://www.mattfacer.com/wp-content/uploads/2011/03/photo-22.png" alt="" width="320" height="480" /></p>
<p>A application which allows you to play old DOS games on your iPhone. I&#8217;ve just put Day of the Tentacle on there and its absolutely amazing. Takes me right back! See their website for more information: <a href="http://www.scummvm.org/" target="_blank">http://www.scummvm.org/</a></p>
<h2>Tweak: PlayAwake ($1.99)</h2>
<p><img class="alignnone size-full wp-image-751" title="PlayAwake" src="http://www.mattfacer.com/wp-content/uploads/2011/03/photo-3.png" alt="" width="320" height="480" /></p>
<p>This again transforms the iPhone for me. My biggest gripe with the iPhone is it&#8217;s alarm. You cannot set your own MP3 or control if it wakes you up gradually. I&#8217;d been using 3rd party alarm apps which did this, but you had to leave them on charge all night. NOT ideal really. PlayAwake tweaks your alarm screen and allows you to select a song of your choice. You can also set the snooze time along with a Yes/No to bring the alarm in gradually. PERFECT.</p>
<h2>Tweak: MobileNotifier (free)</h2>
<p>This is brilliant. From the description: &#8220;iOS Notifications. Done right&#8221;. It groups notifications in an unobstrusive manner and allows you to save for later / delete or action immediately. You can reply directly to an SMS message from within the notitification.</p>
<h2>Tweak: FastSnap ($0.99)</h2>
<p>Possibly my most favourite tweak yet. This allows you to use the phone&#8217;s volume button as the shutter switch for the camera. It&#8217;s the ONE thing I hated and was amazed apple didn&#8217;t let camera apps do. It makes taking photos so much easier! (Especially if you need the classic Facebook pose of you and a friend&#8230;.)</p>
<h2>Tweak: Five Icon Dock (free)</h2>
<p><img class="alignnone size-full wp-image-752" title="Five Icons" src="http://www.mattfacer.com/wp-content/uploads/2011/03/photo-4.png" alt="" width="320" height="104" /></p>
<p>This allows you to have 5 icons in the bottom dock instead of the usual 4. I have installed it, but didn&#8217;t actually like it as the icons looked too squashed in. However, this does look nice if you have a theme which uses small icons!</p>
<h2>Tweak: CyDelete (free)</h2>
<p>This tweak allows you to delete any apps which you install through Cydia as if they were normal apps. By default, to remove an app, you&#8217;ll need to load the Cydia app and remove through there. This will simply let you delete it through the normal user interface.</p>
<h2>Tweak: TV Tube Sleep ($0.99)</h2>
<p>Only a bit of fun this, but so neat! When you put your iPhone in to standby mode it animates the screen as if it were an old TV &#8211; flickers and minimises to a little white dot. It&#8217;s got to be seen to be appreciated &#8211; try it, I love it!</p>
<h2>GroupSMS (free)</h2>
<p>Allows you to create groups of contacts so you can send one text message (SMS) to many people at once.</p>
<h2>Others?</h2>
<p>If you have any apps which you think others could benefit from, please post them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/jailbreaking-your-iphone-a-beginners-view-and-my-favourite-apps/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fix twitter posts not appearing on Facebook</title>
		<link>http://www.mattfacer.com/fix-twitter-posts-not-appearing-on-facebook</link>
		<comments>http://www.mattfacer.com/fix-twitter-posts-not-appearing-on-facebook#comments</comments>
		<pubDate>Mon, 14 Feb 2011 19:18:20 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[quick tips]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=720</guid>
		<description><![CDATA[Just a quick post&#8230; I have my facebook profile linked with twitter, so each time I tweet, it is posted to my facebook profile page (as a new post). However, recently twitter stopped updating my facebook. The solution (that worked ...]]></description>
			<content:encoded><![CDATA[<p>Just a quick post&#8230; I have my facebook profile linked with twitter, so each time I tweet, it is posted to my facebook profile page (as a new post). However, recently twitter stopped updating my facebook.</p>
<p>The solution (that worked for me) is simple. Log in to your facebook page and find the twitter app (search at the top of the screen). I simply then removed the app and re-added it.</p>
<p>Send a tweet and it should appear once again! Simples.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/fix-twitter-posts-not-appearing-on-facebook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 403 Forbidden when viewing category</title>
		<link>http://www.mattfacer.com/wordpress-403-forbidden-when-viewing-category</link>
		<comments>http://www.mattfacer.com/wordpress-403-forbidden-when-viewing-category#comments</comments>
		<pubDate>Sat, 05 Feb 2011 07:47:36 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=716</guid>
		<description><![CDATA[Today I came across one of my sites which for some reason was displaying the homepage OK, but when I clicked on the category view (or any post for that matter) it returned an error 403. Forbidden You don&#8217;t have ...]]></description>
			<content:encoded><![CDATA[<p>Today I came across one of my sites which for some reason was displaying the homepage OK, but when I clicked on the category view (or any post for that matter) it returned an error 403.</p>
<div class="wp-caption">
<h1>Forbidden</h1>
<p>You don&#8217;t have permission to access /category/uk-road-tripping/ on this server.</p>
</div>
<p>I googled and tried a few things, but in the end I solved it by changing the file permissions on my public_html folder using an FTP client.</p>
<p>Somehow, the folder had been set to 711 permission. I changed it back to 755 and that solved it. Also, just check the permissions for index.php &#8211; that will need to be 755 too.</p>
<p>Hope this helps someone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/wordpress-403-forbidden-when-viewing-category/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cookit Lite – free iphone app</title>
		<link>http://www.mattfacer.com/cookit-lite-free-iphone-app</link>
		<comments>http://www.mattfacer.com/cookit-lite-free-iphone-app#comments</comments>
		<pubDate>Mon, 20 Dec 2010 19:06:20 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone / iPad]]></category>
		<category><![CDATA[cookit]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=575</guid>
		<description><![CDATA[I&#8217;ve made a free version of cookit, the iPhone meal planing app. It&#8217;s now available on the app store here: http://itunes.apple.com/gb/app/cookit-lite-cooking-meal-planner/id408205605?mt=8]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made a free version of cookit, the iPhone meal planing app. It&#8217;s now available on the app store here:</p>
<p><a href="http://itunes.apple.com/gb/app/cookit-lite-cooking-meal-planner/id408205605?mt=8" target="_blank">http://itunes.apple.com/gb/app/cookit-lite-cooking-meal-planner/id408205605?mt=8</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/cookit-lite-free-iphone-app/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cookit iphone app version 2</title>
		<link>http://www.mattfacer.com/cookit-iphone-app-version-2</link>
		<comments>http://www.mattfacer.com/cookit-iphone-app-version-2#comments</comments>
		<pubDate>Tue, 23 Nov 2010 13:31:10 +0000</pubDate>
		<dc:creator>mattfacer</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone / iPad]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[cookit]]></category>

		<guid isPermaLink="false">http://www.mattfacer.com/?p=505</guid>
		<description><![CDATA[Been working a lot recently tarting up my cookit app. It&#8217;s getting a major overhaul which will hopefully improve the reliability of timers and notifications.. also with a few added extras. New features include an item library along with a ...]]></description>
			<content:encoded><![CDATA[<p>Been working a lot recently tarting up my cookit app. It&#8217;s getting a major overhaul which will hopefully improve the reliability of timers and notifications.. also with a few added extras. <span id="more-505"></span>New features include an item library along with a meal library. You can now save a meal as a favourite and load that meal when ever you like. The same with items.  You can add a new item from scratch and save it to your item library for use in a later meal.</p>
<p>Another addition comes with the timer notifications. You no longer need to keep the applications open. It will push notifications to your screen when items are ready to start their cooking.</p>
<p>Cookit has also now been upgraded with iOS 4 greatness &#8211; so the icons and images have all been made for the retina display. No more fuzzy horrible graphics!</p>
<p>You can also now keep up to date with developments and updates via <a href="https://twitter.com/cookitapp" target="_blank">Twitter</a>.</p>
<p><a href="https://twitter.com/cookitapp" target="_blank"><img class="alignnone size-full wp-image-512" title="TwitterButton" src="http://www.mattfacer.com/wp-content/uploads/2010/01/TwitterButton.jpg" alt="" width="191" height="59" /></a></p>
<p>Here&#8217;s a little taster of the new version with some screen shots.</p>
<p><a href="http://www.mattfacer.com/wp-content/uploads/2010/11/photo.png"><img class="size-full wp-image-506  alignnone" title="Cookit Home screen" src="http://www.mattfacer.com/wp-content/uploads/2010/11/photo.png" alt="" width="192" height="288" /></a> <a href="http://www.mattfacer.com/wp-content/uploads/2010/11/photo2.png"><img class="size-full wp-image-507  alignnone" title="Cookit menus" src="http://www.mattfacer.com/wp-content/uploads/2010/11/photo2.png" alt="" width="192" height="288" /></a></p>
<p><a href="http://www.mattfacer.com/wp-content/uploads/2010/11/photo3.png"><img class="size-full wp-image-508 alignnone" title="Cookit Meal Library" src="http://www.mattfacer.com/wp-content/uploads/2010/11/photo3.png" alt="Save meals as favourites" width="192" height="288" /></a> <a href="http://www.mattfacer.com/wp-content/uploads/2010/11/photo4.png"><img class="size-full wp-image-509  alignnone" title="cookit item library" src="http://www.mattfacer.com/wp-content/uploads/2010/11/photo4.png" alt="" width="192" height="288" /></a></p>
<p>Cookit 2.0 will be release over the next week. Watch the app store for an update soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mattfacer.com/cookit-iphone-app-version-2/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

