<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Purposefully</title>
	<atom:link href="http://purposefully.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://purposefully.wordpress.com</link>
	<description>Yet another WordPress.com weblog</description>
	<lastBuildDate>Wed, 05 Oct 2011 12:23:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='purposefully.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Purposefully</title>
		<link>http://purposefully.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://purposefully.wordpress.com/osd.xml" title="Purposefully" />
	<atom:link rel='hub' href='http://purposefully.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Adding the Solr extension to Zend Server Community Edition on Mac OS X Lion</title>
		<link>http://purposefully.wordpress.com/2011/09/13/adding-the-solr-extension-to-zend-server-community-edition-on-mac-os-x-lion/</link>
		<comments>http://purposefully.wordpress.com/2011/09/13/adding-the-solr-extension-to-zend-server-community-edition-on-mac-os-x-lion/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 13:33:12 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Solr]]></category>
		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=48</guid>
		<description><![CDATA[Installing the Solr extension This turned out to be more complex than I expected. Solr is a PECL extension so , in theory, all you need is: sudo /usr/local/zend/bin/pecl install solr If you don&#8217;t use admin privileges you get Cannot write to temp directory or Warning: lstat(): Lstat failed I have listed the error messages [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=48&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Installing the Solr extension</h2>
<p>This turned out to be more complex than I expected. Solr is a PECL extension so , in theory, all you need is:</p>
<p><code>sudo /usr/local/zend/bin/pecl install solr</code></p>
<p>If you don&#8217;t use admin privileges you get <code>Cannot write to temp directory</code> or <code>Warning: lstat(): Lstat failed</code></p>
<p>I have listed the error messages and what I needed to do to solve them, in attempt to help anyone having the same issues that I did.</p>
<h2>Install Xcode First</h2>
<p>If you haven&#8217;t installed xcode then you&#8217;ll see something like this:</p>
<p><code>Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable is set correctly and then rerun this script.</code></p>
<p>The easiest way to get all the tools needed for building software on your Mac is to install <a href="http://itunes.apple.com/gb/app/xcode/id448457090?mt=12">Xcode </a>, free from the Mac App Store.</p>
<h2>Missing curl</h2>
<p>The first proper error I got was:<br />
<code>pecl/solr requires PHP extension "curl"</code></p>
<p>Add -n to the pecl install command so that will ignore dependencies, otherwise as it doesn&#8217;t load shared modules it won&#8217;t detect curl. See the last comment on <a href="http://pecl.php.net/bugs/bug.php?id=17012">PECL Bug 17012</a>.</p>
<h2>Missing header file</h2>
<p>Now it at least started building but then ended with this error:<br />
<code>/private/tmp/pear/temp/solr/php_solr.h:87:31: error: ext/json/php_json.h: No such file or directory</code></p>
<p>So, I&#8217;m missing a file called &#8216;php_json.h&#8217;. Where to get it from? Well there are two options the quick way and the &#8216;proper&#8217; way. We could just copy the header file from MacOS X&#8217;s built in version of PHP &#8211; however the versions might not be the same.</p>
<ul>
<li><code>/usr/bin/php -v</code> PHP 5.3.6</li>
<li><code>/usr/local/zend/bin/php -v</code> PHP 5.3.5</li>
</ul>
<p>I decided to get the matching version of the file from the PHP source. This is quite easy — just go to <a href="http://php.net/releases/index.php">php.net/releases</a> and download the same version as your Zend Server Community Edition.</p>
<p>Once we have the file we need a directory in the ext folder:</p>
<p><code>sudo mkdir /usr/local/zend/include/php/ext/json</code></p>
<p>Now copy our new version into the folder — change the source path to wherever your new header file lives:</p>
<p><code>sudo cp /Users/myname/Downloads/php-5.3.5/ext/json/php_json.h /usr/local/zend/include/php/ext/json/<br />
</code></p>
<p>At this point I thought i was done, ran the pecl install command (<strong>don&#8217;t do this yet</strong>) , enabled the extension in php.ini and restarted PHP.</p>
<h2>Wrong Architecture</h2>
<p><code>PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/zend/lib/php_extensions/solr.so' - dlopen(/usr/local/zend/lib/php_extensions/solr.so, 9): no suitable image found. Did find: /usr/local/zend/lib/php_extensions/solr.so: mach-o, but wrong architecture in Unknown on line 0<br />
</code></p>
<p>Pecl is creating a a dynamic module for a different architecture than php is using.</p>
<p>You can check which architecture your php is built for using:</p>
<p><code>lipo -info /usr/local/zend/bin/php</code></p>
<p><em>Non-fat file: /usr/local/zend/bin/php is architecture: i386</em></p>
<p>Compare this to the file that the pecl installer created</p>
<p><code>lipo -info /usr/local/zend/lib/php_extensions/solr.so</code></p>
<p><em>Non-fat file: solr.so is architecture: x86_64</em></p>
<p>My Mac is an Intel Core i7 so pecl created an x86_64 dynamic library. However Zend Server Community Edition (as of September 2011) is compiled for i386!</p>
<p>OK so how do we fix this? We need to tell the compiler which architecture to build for using the CFLAGS environment variable.</p>
<p>Note: If you have already tried to install and it built for the wrong architecture just add -f to the pecl install command to fore a rebuild</p>
<h2>The Code</h2>
<p><code>sudo CFLAGS="-arch i386" /usr/local/zend/bin/pecl install -n solr</code></p>
<p>Now just enable the module using the <a href="http://localhost:10081/ZendServer/">ZendServer control panel</a></p>
<h2>Summary</h2>
<ol>
<li>Install <a href="http://itunes.apple.com/gb/app/xcode/id448457090?mt=12">Xcode </a>, free from the Mac App Store</li>
<li>Download the PHP source from <a href="http://php.net/releases/index.php">php.net/releases</a></li>
<li>copy <code>php_json.h</code> from PHP source to <code>/usr/local/zend/include/php/ext/json/</code></li>
<li>sudo CFLAGS=&#8221;-arch i386&#8243; /usr/local/zend/bin/pecl install -n solr</li>
<li>enable the module using the <a href="http://localhost:10081/ZendServer/">ZendServer control panel</a> or editing the php.ini file.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=48&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2011/09/13/adding-the-solr-extension-to-zend-server-community-edition-on-mac-os-x-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>
	</item>
		<item>
		<title>Starving Monkey</title>
		<link>http://purposefully.wordpress.com/2009/07/21/starving-monkey/</link>
		<comments>http://purposefully.wordpress.com/2009/07/21/starving-monkey/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 01:55:26 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[iPhone Applications]]></category>
		<category><![CDATA[iPhone game]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/2009/07/21/starving-monkey/</guid>
		<description><![CDATA[Found this app when the app store auto completed &#8216;star&#8217; when i was looking for an astronomy app. It is a simple accelerometer based game &#8211; tilt to move a monkey to get a banana which appears at a random location on screen while avoiding being shot by a hunter. The sound effects are very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=38&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Found this app when the app store auto completed &#8216;star&#8217; when i was looking for an astronomy app. It is a simple accelerometer based game &#8211; tilt to move a monkey to get a banana which appears at a random location on screen while avoiding being shot by a hunter.<br />
The sound effects are very cool and make it imposible not to  smile while playing.<br />
The only down side so far is the high score table seems a bit clunky but that doesn&#8217;t stop Starving Monkey from being an excellent game especially for the bargain price of £0.59</p>
<p>Highly recommended: 4 stars</p>
<p>http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=322525608&#038;mt=8</p>
<p><a href="http://purposefully.files.wordpress.com/2009/07/l_100_100_f5838ffb-83f2-4b8f-980f-880c61b4288f.jpeg"><img src="http://purposefully.files.wordpress.com/2009/07/l_100_100_f5838ffb-83f2-4b8f-980f-880c61b4288f.jpeg?w=450" alt=""   class="alignnone size-full wp-image-364" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=38&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2009/07/21/starving-monkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>

		<media:content url="http://purposefully.files.wordpress.com/2009/07/l_100_100_f5838ffb-83f2-4b8f-980f-880c61b4288f.jpeg" medium="image" />
	</item>
		<item>
		<title>iPhone Tutorial Roundup</title>
		<link>http://purposefully.wordpress.com/2009/05/12/iphone-tutorial-roundup/</link>
		<comments>http://purposefully.wordpress.com/2009/05/12/iphone-tutorial-roundup/#comments</comments>
		<pubDate>Tue, 12 May 2009 13:29:06 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[localization]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=32</guid>
		<description><![CDATA[Links to tutorial on localising iPhone applications.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=32&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Found a pair of excellent iPhone tutorials by <a href="http://adeem.me/">Adeem M Basraa</a>.</p>
<p>The first tutorial <a href="http://adeem.me/blog/2009/05/09/tutorial-iphone-localization-in-xib-nib-files/">iPhone Localization in Xib (Nib) Files</a> is a simple step-by-step walkthrough creating a view based iPhone Application which is localised for English and French.</p>
<p>In <a href="http://adeem.me/blog/2009/05/10/tutorial-part-2-localizing-your-iphone-application/">Localizing your iPhone application part 2</a> Adeem covers the use of NSLocalizedString and the cli command `genstrings` to generate .strings files for your application and then use them in code.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=32&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2009/05/12/iphone-tutorial-roundup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>
	</item>
		<item>
		<title>My first iPhone App (I)</title>
		<link>http://purposefully.wordpress.com/2009/03/28/my-first-iphone-app-i/</link>
		<comments>http://purposefully.wordpress.com/2009/03/28/my-first-iphone-app-i/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 20:47:52 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=25</guid>
		<description><![CDATA[Why my first iPhone app is Perfect and has a long pedigree.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=25&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, after a trip to the USA last week i signed up for the iPhone App Developer program as an individual.</p>
<p>When i first learnt BASIC one of the first apps i wrote from scratch (as opposed to typing in listings from a book) was a program to find if a number was Perfect.</p>
<p>A perfect number is defined as a positive integer where the sum of it&#8217;s proper divisors is equal to the number itself.</p>
<p>The first perfect number is 6. The proper divisors as 1,2,3. 1+2+3=6</p>
<p>Simple.</p>
<p>Loop round finding all factors of a number a sum them.</p>
<p>I have written this app in every language i have played with from BASIC through Pascal, C, LISP, Java,PHP &amp;c.</p>
<p>I have never really got into Mac application development &#8211; never had the need. Pretty much every problem i come across can be solved with using a bit of code in one (or all!) of AppleScript, shell, PHP and a probably a database for good measure. Side not he first web site i built was a Hotel search system built using Applescript and FileMaker Pro, long before the days of PHP  &amp; MySQL.)</p>
<p>So now the iPhone, this time i can&#8217;t bodge my way through gluing other things together. If i want an iPHone app i will need to learn Objective C and Cocoa Touch,</p>
<p>My first app is, unsurprisingly, Perfect. That&#8217;s the name &#8211; not a description.</p>
<p>Needs a text box to hold a number, a button to start the calculation, and a text box to hold the result.</p>
<p>OK. So i had a look at some of the &#8216;Hello,world!&#8217; on-line tutorials.</p>
<p>One rather conveniently had a text box to type a message and a button to display it.<br />
<A href="http://www.iphonesdkarticles.com/2008/07/first-iphone-application.html"><br />
SO now i had an app with a text box, a button and a label.</p>
<p>Part II coming soon…</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=25&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2009/03/28/my-first-iphone-app-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>
	</item>
		<item>
		<title>Audio Balance Setting for iPhone</title>
		<link>http://purposefully.wordpress.com/2008/11/20/audio-balance-setting-for-iphone/</link>
		<comments>http://purposefully.wordpress.com/2008/11/20/audio-balance-setting-for-iphone/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 13:41:15 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Balance]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Otosclerosis]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=22</guid>
		<description><![CDATA[UPDATE: iOS 5 has audio balance Looks like enough people sent in feedback. Thank you. I love my iPhone but have recently been diagnosed with a hearing disorder know as Otosclerosis ,sadly this is degenerative and is much worse in one ear than the other. At the moment there is no way to adjust the audio [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=22&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>UPDATE: iOS 5 has audio balance</h2>
<p>Looks like enough people sent in feedback. Thank you.</p>
<p>I love my iPhone but have recently been diagnosed with a hearing disorder know as Otosclerosis ,sadly this is degenerative and is much worse in one ear than the other.</p>
<p>At the moment there is no way to adjust the audio balance on the iPhone which means i have to either have it too loud in one ear or not hear it in the other.</p>
<div>If you too could benefit from a balance control on the iPhone then please consider sending apple an &#8216;Enhancement request&#8217; using the form at <a title="Apple iPhone feedback form" href="http://www.apple.com/feedback/iphone.html">http://www.apple.com/feedback/iphone.html</a> with a subject line of <strong>Audio Balance Setting</strong>.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=22&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2008/11/20/audio-balance-setting-for-iphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>
	</item>
		<item>
		<title>Word 2004 Mac Find paragraph mark with wildcards</title>
		<link>http://purposefully.wordpress.com/2008/09/22/word-2004-mac-find-paragraph-mark-with-wildcards/</link>
		<comments>http://purposefully.wordpress.com/2008/09/22/word-2004-mac-find-paragraph-mark-with-wildcards/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 12:02:45 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=18</guid>
		<description><![CDATA[UPDATE RESOLVED: You can use [\^013] to search for paragraph marks when wildcards are active! There is a bug in Microsoft Word 2004 that will not let you search for a paragraph mark ^p when wildcard support switched on in the find dialog. The ^13 substitution suggested on some of Microsoft’s support pages also doesn’t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=18&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE</strong><br />
RESOLVED:<br />
You can use <code>[\^013]</code> to search for paragraph marks when wildcards are active!</p>
<p>There is a bug in Microsoft Word 2004 that will not let you search for a paragraph mark <code>^p</code> when wildcard support switched on in the find dialog.</p>
<p><img src="http://purposefully.files.wordpress.com/2008/09/wordscreensnapz002.png?w=442&#038;h=142" alt="^p Search error" border="0" width="442" height="142" /></p>
<p>The <code>^13</code> substitution suggested on some of Microsoft’s support pages also doesn’t work as the mac version seems to internally translate <code>^13</code> into <code>^p</code></p>
<p>The only obvious work around is to replace <code>^p</code> with something else NOT present in your document!.<br />
 e.g. replace <code>^p</code> with <code>§</code> with wildcards turned off then do your wildcard search/replace. When done just find/replace <code>§</code> with <code>^p</code></p>
<p>Note: You will probably want to <strong>disable track changes</strong> while swapping the paragraphs round.</p>
<p>Kludge? Yes</p>
<p>Does it work? Yes</p>
<p>According to a <a href="http://www.microsoft.com/mac/developers/default.mspx?CTT=PageView&amp;clr=99-21-0&amp;target=ed342e65-687d-440e-89a7-42e0da6ed4441033&amp;srcid=41bbd0b6-7524-4bd5-a521-b1549ba95df01033&amp;ep=7">Microsoft support article</a> this bug also applies to Find/repalce executed through VBA and AppleScript</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=18&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2008/09/22/word-2004-mac-find-paragraph-mark-with-wildcards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>

		<media:content url="http://purposefully.files.wordpress.com/2008/09/wordscreensnapz002.png" medium="image">
			<media:title type="html">^p Search error</media:title>
		</media:content>
	</item>
		<item>
		<title>Florence day 3</title>
		<link>http://purposefully.wordpress.com/2008/09/16/florence-day-3/</link>
		<comments>http://purposefully.wordpress.com/2008/09/16/florence-day-3/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:31:18 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Holiday]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=14</guid>
		<description><![CDATA[Breakfast from Robilio&#8217;s before walking to the bus station to go to Siena The cathedral was supposed to be the largest in all Christendom but they ran out of money and so there is a wall which should have been the long side of the cross but is literally just a wall you can climb [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=14&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Breakfast from Robilio&#8217;s before walking to the bus station to go to Siena</p>
<p>The cathedral was supposed to be the largest in all Christendom but they ran out of money and so there is a wall which should have been the long side of the cross but is literally just a wall you can climb up and get a pretty good view of Siena<br />
Stopped to look at the Miesta on the way out</p>
<p>Visited the Crypt ( which I don&#8217;t think was open last time I came) it is about 30 ft under the Cathedral but they have excaveted even further down &#8211; the fluted columns streetch down anoth 100+ ft</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/purposefully.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/purposefully.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=14&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2008/09/16/florence-day-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>
	</item>
		<item>
		<title>Florence day 2</title>
		<link>http://purposefully.wordpress.com/2008/09/16/florence-day-2/</link>
		<comments>http://purposefully.wordpress.com/2008/09/16/florence-day-2/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:30:25 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Holiday]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=12</guid>
		<description><![CDATA[Met for lunch at Pitti Gola E Cantina @ 1 o&#8217;clock Piazza Pitti, 16 Go over ponte Vecchio and go down via Guicciardini After lunch went back to the hotel and had a drink on the teras We went to the Uffizi at 4 and spent a while going round, sadly they now allow tour [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=12&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Met for lunch at Pitti Gola E Cantina @ 1 o&#8217;clock<br />
Piazza Pitti, 16</p>
<p>Go over ponte Vecchio and go down via Guicciardini</p>
<p>After lunch went back to the hotel and had a drink on the teras </p>
<p>We went to the Uffizi at 4 and spent a while going round, sadly they now allow tour guide in the galleries which means there is the incessant noise of the guides giving their spiel. One particulary obnoxious one stood onfront of Leonardo&#8217;s Annunication for about ten minutes with her group of 15+ people while she described all the paintings in the room!<br />
As this ( and Caravagio&#8217;s mediasa) are my favourite paintings in the whole of the Uffizi I was just a little annoyed </p>
<p>We were going to the Yellow Bar for dinner but it was closed so instead we went to Gusto ( Leo the Lion ) just across the street. Not as good as YB but nothing really wrong with it ;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/purposefully.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/purposefully.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=12&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2008/09/16/florence-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>
	</item>
		<item>
		<title>Florence day 1</title>
		<link>http://purposefully.wordpress.com/2008/09/16/florence-day-1/</link>
		<comments>http://purposefully.wordpress.com/2008/09/16/florence-day-1/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 09:28:41 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Holiday]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/?p=10</guid>
		<description><![CDATA[Had to get up at 4:30 to get to the airport in time for 8 o&#8217;clock flight I know you get what you pay for but I would be willing to pay a bit more just so Ryan Air could afford a better tanoy system! Got the bus from Pisa airport to Florence which took [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=10&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Had to get up at 4:30 to get to the airport in time for 8 o&#8217;clock flight</p>
<p>I know you get what you pay for but I would be willing to pay a bit more just so Ryan Air could afford a better tanoy system!</p>
<p>Got the bus from Pisa airport to Florence which took about an hour and a half.</p>
<p>Checked into the hotel and changed into shorts as the weather here is soo warm.</p>
<p>Wandered round for a bit and had some lunch in Plazza della Signoria</p>
<p>Had an ok capriciosa pizza &#8211; the toping was fine but the base was a little under cooked. Sadly I don&#8217;t think they had a proper pizza oven.</p>
<p>Walked round the Duomo area then went up to the Cuppola it takes a while and the stairs are pretty steep but the view is well worth the effort.</p>
<p>Walking round the circumference you realize quite how huge an achievment it was for Brunelleschi (obviously not on his own!) to build it in 1418<br />
( over 100 years after work on the cathedral was started)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/purposefully.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/purposefully.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=10&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2008/09/16/florence-day-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>
	</item>
		<item>
		<title>Remote Desktop ScreenSnap</title>
		<link>http://purposefully.wordpress.com/2008/08/13/remote-desktop-screensnap/</link>
		<comments>http://purposefully.wordpress.com/2008/08/13/remote-desktop-screensnap/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 15:19:37 +0000</pubDate>
		<dc:creator>netboy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://purposefully.wordpress.com/2008/08/13/remote-desktop-screensnap/</guid>
		<description><![CDATA[Remote DesktopScreenSnapz002 Originally uploaded by markysparky628 While testing my VPN setup Remote Desktop got a little confused and let me connect to itself! Creating this rather nice &#8216;hall of mirrors&#8217; effect<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=9&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin-left:10px;margin-bottom:10px;">
<a href="http://www.flickr.com/photos/58049354@N00/2759384011/" title="photo sharing"><img src="http://farm4.static.flickr.com/3270/2759384011_78fbb79daa_m.jpg" alt="" style="border:solid 2px #000000;" /></a><br />
<br />
<span style="font-size:0.9em;margin-top:0;"><br />
<a href="http://www.flickr.com/photos/58049354@N00/2759384011/">Remote DesktopScreenSnapz002</a><br />
<br />
Originally uploaded by <a href="http://www.flickr.com/people/58049354@N00/">markysparky628</a><br />
</span>
</div>
<p>While testing my VPN setup Remote Desktop got a little confused and let me connect to itself!</p>
<p>Creating this rather nice &#8216;hall of mirrors&#8217; effect<br /></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/purposefully.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/purposefully.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/purposefully.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/purposefully.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/purposefully.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/purposefully.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/purposefully.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/purposefully.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/purposefully.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/purposefully.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/purposefully.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/purposefully.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/purposefully.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/purposefully.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/purposefully.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/purposefully.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=purposefully.wordpress.com&amp;blog=4359747&amp;post=9&amp;subd=purposefully&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://purposefully.wordpress.com/2008/08/13/remote-desktop-screensnap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">netboy</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3270/2759384011_78fbb79daa_m.jpg" medium="image" />
	</item>
	</channel>
</rss>
