<?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>Phil Bayfield &#187; General</title>
	<atom:link href="http://www.philbayfield.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.philbayfield.com</link>
	<description>A little about me, my photos and some general geeky stuff!</description>
	<lastBuildDate>Wed, 02 Nov 2011 01:59:47 +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>Installing sqlite on a rooted Android phone.</title>
		<link>http://www.philbayfield.com/2011/04/08/installing-sqlite-on-a-rooted-android-phone/</link>
		<comments>http://www.philbayfield.com/2011/04/08/installing-sqlite-on-a-rooted-android-phone/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 10:16:23 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=575</guid>
		<description><![CDATA[Many rooting tools install the sqlite3 binary by default, but the pre-rooted rom on my SGS seems to be an exception, so here is a guide to install it manually. You will need the SDK tools on your computer for this to work! Connect the phone, bring up a shell and get root permissions: $ [...]]]></description>
			<content:encoded><![CDATA[<p>Many rooting tools install the sqlite3 binary by default, but the pre-rooted rom on my SGS seems to be an exception, so here is a guide to install it manually.</p>
<p><strong>You will need the SDK tools on your computer for this to work!</strong></p>
<p>Connect the phone, bring up a shell and get root permissions:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ adb shell<br />
/ $ su<br />
#</div></div>
<p>Find the device for the system partition:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"># mount &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />
rootfs / rootfs ro,relatime 0 0<br />
proc /proc proc rw,relatime 0 0<br />
sys /sys sysfs rw,relatime 0 0<br />
/dev/block/stl11 /cache ext4 rw,noatime,barrier=0,data=writeback,noauto_da_alloc 0 0<br />
/dev/block/stl10 /dbdata ext4 rw,noatime,barrier=0,nodelalloc,data=ordered,noauto_da_alloc 0 0<br />
/dev/block/mmcblk0p2 /data ext4 rw,noatime,barrier=1,data=ordered,noauto_da_alloc 0 0<br />
tmpfs /dev tmpfs rw,relatime,mode=755 0 0<br />
devpts /dev/pts devpts rw,relatime,mode=600 0 0<br />
none /acct cgroup rw,relatime,cpuacct 0 0<br />
/dev/block/stl6 /mnt/.lfs j4fs rw,relatime 0 0<br />
tmpfs /mnt/asec tmpfs rw,relatime,mode=755,gid=1000 0 0<br />
none /dev/cpuctl cgroup rw,relatime,cpu 0 0<br />
/dev/block/stl9 /system rfs ro,relatime,vfat,log_off,check=no,gid/uid/rwx,iocharset=utf8 0 0<br />
/dev/block/stl3 /efs rfs rw,nosuid,nodev,relatime,vfat,llw,check=no,gid/uid/rwx,iocharset=utf8 0 0<br />
/dev/block/vold/179:1 /mnt/sdcard vfat rw,dirsync,nosuid,nodev,noexec,noatime,nodiratime,uid=1000,gid=1015,fmask=0002,dmask=0002,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0<br />
/dev/block/vold/179:9 /mnt/sdcard/external_sd vfat rw,dirsync,nosuid,nodev,noexec,noatime,nodiratime,uid=1000,gid=1015,fmask=0002,dmask=0002,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0<br />
/dev/block/vold/179:9 /mnt/secure/asec vfat rw,dirsync,nosuid,nodev,noexec,noatime,nodiratime,uid=1000,gid=1015,fmask=0002,dmask=0002,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0<br />
tmpfs /mnt/sdcard/external_sd/.android_secure tmpfs ro,relatime,size=0k,mode=000 0 0</div></div>
<p>The important bit here is <strong>/dev/block/stl9 /system rfs</strong> which is needed for the next step.</p>
<p>Remount the file system rw (replace rfs and /dev/block/stl9 with the values from the output of mount):</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"># mount -o remount,rw -t rfs /dev/block/stl9 /system</div></div>
<p>Next, in a separate terminal copy the sqlite3 binary to the phone (can be obtained from the Super One Click package http://www.shortfuse.org/):</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ adb push sqlite3 /sdcard/<br />
42 KB/s (24120 bytes in 0.557s)</div></div>
<p>Back in the original terminal, move the binary to /system/bin and set permissions:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"># cp /sdcard/sqlite3 /system/bin<br />
# chmod 4755 /system/bin/sqlite3</div></div>
<p>Finally, remount the /system filesystem read only again:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"># mount -o remount,ro -t rfs /dev/block/stl9 /system</div></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2011%2F04%2F08%2Finstalling-sqlite-on-a-rooted-android-phone%2F&amp;title=Installing%20sqlite%20on%20a%20rooted%20Android%20phone." id="wpa2a_2"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2011/04/08/installing-sqlite-on-a-rooted-android-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funny Google in-line search results</title>
		<link>http://www.philbayfield.com/2011/01/25/funny-google-in-line-search-results/</link>
		<comments>http://www.philbayfield.com/2011/01/25/funny-google-in-line-search-results/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 13:29:16 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=551</guid>
		<description><![CDATA[Here are a few amusing in-line searches on Google and Google images: Especially funny how several pictures of horses appear here. More horses! The internet obviously hold Sarah Jessica Parker in quite high regard!]]></description>
			<content:encoded><![CDATA[<p>Here are a few amusing in-line searches on Google and Google images:</p>
<p><a href="http://www.philbayfield.com/wp-content/uploads/2011/01/sjp1.png"><img src="http://www.philbayfield.com/wp-content/uploads/2011/01/sjp1-640x299.png" alt="" title="SJP1" width="640" height="299" class="alignleft size-large wp-image-552" /></a><br />
<br style="clear:both"/></p>
<p>Especially funny how several pictures of horses appear here.</p>
<p><a href="http://www.philbayfield.com/wp-content/uploads/2011/01/sjp2.png"><img src="http://www.philbayfield.com/wp-content/uploads/2011/01/sjp2-640x284.png" alt="" title="SJP2" width="640" height="284" class="alignleft size-large wp-image-553" /></a><br />
<br style="clear:both"/></p>
<p>More horses!</p>
<p><a href="http://www.philbayfield.com/wp-content/uploads/2011/01/sjp3.png"><img src="http://www.philbayfield.com/wp-content/uploads/2011/01/sjp3-640x284.png" alt="" title="SJP3" width="640" height="284" class="alignleft size-large wp-image-554" /></a><br />
<br style="clear:both"/></p>
<p>The internet obviously hold Sarah Jessica Parker in quite high regard! <img src='http://www.philbayfield.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2011%2F01%2F25%2Ffunny-google-in-line-search-results%2F&amp;title=Funny%20Google%20in-line%20search%20results" id="wpa2a_4"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2011/01/25/funny-google-in-line-search-results/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.10 &#8220;Maverick Meerkat&#8221; goes final, download now and avoid the queues!</title>
		<link>http://www.philbayfield.com/2010/10/08/ubuntu-10-10-maverick-meerkat-goes-final-download-now-and-avoid-the-queues/</link>
		<comments>http://www.philbayfield.com/2010/10/08/ubuntu-10-10-maverick-meerkat-goes-final-download-now-and-avoid-the-queues/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 09:12:58 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[maverick]]></category>
		<category><![CDATA[meerkat]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=534</guid>
		<description><![CDATA[Last night a base-files update for Ubuntu 10.10-RC went live which removes all the development branding and essentially takes you to the release build. With the last few releases the download rates on release day have been incredibly slow, so avoid the wait and download now. I&#8217;ve been using the development build for around a [...]]]></description>
			<content:encoded><![CDATA[<p>Last night a base-files update for Ubuntu 10.10-RC went live which removes all the development branding and essentially takes you to the release build.</p>
<p>With the last few releases the download rates on release day have been incredibly slow, so avoid the wait and download now.</p>
<p>I&#8217;ve been using the development build for around a month without issue on 1 server and a couple of desktops, it seams solid and stable, worth updating right away.</p>
<p>What&#8217;s new (that I noticed)&#8230;.</p>
<p>For desktop: slightly tweaked UI, Gnome 2.32, brand new software centre which also unifies the .deb installation, probably lots more (see ubuntu.com).</p>
<p>For server: PHP is now version 5.3.3, MySQL updated to 5.1.49, Apache updated to 2.2.16.</p>
<p>For all: Kernel updated to 2.6.35</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F10%2F08%2Fubuntu-10-10-maverick-meerkat-goes-final-download-now-and-avoid-the-queues%2F&amp;title=Ubuntu%2010.10%20%26%238220%3BMaverick%20Meerkat%26%238221%3B%20goes%20final%2C%20download%20now%20and%20avoid%20the%20queues%21" id="wpa2a_6"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/10/08/ubuntu-10-10-maverick-meerkat-goes-final-download-now-and-avoid-the-queues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4 vs HTC Evo</title>
		<link>http://www.philbayfield.com/2010/07/03/iphone-4-vs-htc-evo/</link>
		<comments>http://www.philbayfield.com/2010/07/03/iphone-4-vs-htc-evo/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 12:23:23 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=452</guid>
		<description><![CDATA[Great video!]]></description>
			<content:encoded><![CDATA[<p>Great video!<br />
<p><a href="http://www.philbayfield.com/2010/07/03/iphone-4-vs-htc-evo/"><em>Click here to view the embedded video.</em></a></p></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F07%2F03%2Fiphone-4-vs-htc-evo%2F&amp;title=iPhone%204%20vs%20HTC%20Evo" id="wpa2a_8"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/07/03/iphone-4-vs-htc-evo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This is really clever!</title>
		<link>http://www.philbayfield.com/2010/06/09/this-is-really-clever/</link>
		<comments>http://www.philbayfield.com/2010/06/09/this-is-really-clever/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 08:41:27 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=444</guid>
		<description><![CDATA[Apple iPad ads in San Francisco have been replaced all over the city, very cleverly done! You have to pause and read the content!]]></description>
			<content:encoded><![CDATA[<p>Apple iPad ads in San Francisco have been replaced all over the city, very cleverly done! You have to pause and read the content!</p>
<p><a href="http://www.philbayfield.com/2010/06/09/this-is-really-clever/"><em>Click here to view the embedded video.</em></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F06%2F09%2Fthis-is-really-clever%2F&amp;title=This%20is%20really%20clever%21" id="wpa2a_10"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/06/09/this-is-really-clever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awesome Windows 7 Ad!</title>
		<link>http://www.philbayfield.com/2010/05/06/awesome-windows-7-ad/</link>
		<comments>http://www.philbayfield.com/2010/05/06/awesome-windows-7-ad/#comments</comments>
		<pubDate>Thu, 06 May 2010 10:42:59 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=435</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.philbayfield.com/2010/05/06/awesome-windows-7-ad/"><em>Click here to view the embedded video.</em></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F05%2F06%2Fawesome-windows-7-ad%2F&amp;title=Awesome%20Windows%207%20Ad%21" id="wpa2a_12"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/05/06/awesome-windows-7-ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 demo on the iPad</title>
		<link>http://www.philbayfield.com/2010/05/05/html-5-demo-on-the-ipad/</link>
		<comments>http://www.philbayfield.com/2010/05/05/html-5-demo-on-the-ipad/#comments</comments>
		<pubDate>Wed, 05 May 2010 09:53:13 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=425</guid>
		<description><![CDATA[Here is an amusing demo of HTML 5 on the iPad, no need for Flash says Jobs!]]></description>
			<content:encoded><![CDATA[<p>Here is an amusing demo of HTML 5 on the iPad, no need for Flash says Jobs!</p>
<p><a href="http://www.philbayfield.com/2010/05/05/html-5-demo-on-the-ipad/"><em>Click here to view the embedded video.</em></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F05%2F05%2Fhtml-5-demo-on-the-ipad%2F&amp;title=HTML%205%20demo%20on%20the%20iPad" id="wpa2a_14"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/05/05/html-5-demo-on-the-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTTC coming to Sittingbourne this year!</title>
		<link>http://www.philbayfield.com/2010/04/29/fttc-coming-to-sittingbourne-this-year/</link>
		<comments>http://www.philbayfield.com/2010/04/29/fttc-coming-to-sittingbourne-this-year/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 23:37:39 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=408</guid>
		<description><![CDATA[I&#8217;ve just noticed that the FTTC rollout is coming to Sittingbourne, expected to be available by the end of the summer. This is great news as we struggle to get 2Mbit where we live currently! It&#8217;s a nice surprise that they have chosen Sittingbourne so early in the rollout as we were one of the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just noticed that the FTTC rollout is coming to Sittingbourne, expected to be available by the end of the summer.<br />
This is great news as we struggle to get 2Mbit where we live currently!</p>
<p>It&#8217;s a nice surprise that they have chosen Sittingbourne so early in the rollout as we were one of the last places to even get the 21CN. They&#8217;ve obviously realised how many of us live in new houses almost on the distance limit for ADSL, well done BT <img src='http://www.philbayfield.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>A list of the exchanges that will get FTTC in the current rollout phase can be found here: <div style="float: left; text-align: center">
			    <a href="http://www.thinkbroadband.com/news/i/4123.html" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=http://www.thinkbroadband.com/news/i/4123.html" /></a><br /><a href="http://www.thinkbroadband.com/news/i/4123.html" target="_blank">http://www.thinkbroadband.com/news/i/...</a></div><br style="clear: both" /></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F04%2F29%2Ffttc-coming-to-sittingbourne-this-year%2F&amp;title=FTTC%20coming%20to%20Sittingbourne%20this%20year%21" id="wpa2a_16"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/04/29/fttc-coming-to-sittingbourne-this-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to print from your iPad!</title>
		<link>http://www.philbayfield.com/2010/04/15/how-to-print-from-your-ipad/</link>
		<comments>http://www.philbayfield.com/2010/04/15/how-to-print-from-your-ipad/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 14:41:44 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=379</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.philbayfield.com/wp-content/uploads/2010/04/blog_ipad_printing.jpg"><img src="http://www.philbayfield.com/wp-content/uploads/2010/04/blog_ipad_printing.jpg" alt="" title="How to print from an iPad" width="400" height="300" class="aligncenter size-full wp-image-378" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F04%2F15%2Fhow-to-print-from-your-ipad%2F&amp;title=How%20to%20print%20from%20your%20iPad%21" id="wpa2a_18"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/04/15/how-to-print-from-your-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing your website on the iPad</title>
		<link>http://www.philbayfield.com/2010/04/14/testing-your-website-on-the-ipad/</link>
		<comments>http://www.philbayfield.com/2010/04/14/testing-your-website-on-the-ipad/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 09:42:46 +0000</pubDate>
		<dc:creator>Phil</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.philbayfield.com/?p=376</guid>
		<description><![CDATA[Here is a great site for iPad site testing! http://www.bradcolbow.com/archive.php...]]></description>
			<content:encoded><![CDATA[<p>Here is a great site for iPad site testing!</p>
<p><div style="float: left; text-align: center">
			    <a href="http://www.bradcolbow.com/archive.php/?p=221" target="_blank"><img src="http://simple.thumbshots.com/image.aspx?cid=1508&v=1&w=200&h=150&url=http://www.bradcolbow.com/archive.php/?p=221" /></a><br /><a href="http://www.bradcolbow.com/archive.php/?p=221" target="_blank">http://www.bradcolbow.com/archive.php...</a></div><br style="clear: both" /></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.philbayfield.com%2F2010%2F04%2F14%2Ftesting-your-website-on-the-ipad%2F&amp;title=Testing%20your%20website%20on%20the%20iPad" id="wpa2a_20"><img src="http://www.philbayfield.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.philbayfield.com/2010/04/14/testing-your-website-on-the-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

