<?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>AJ Online</title>
	<atom:link href="http://antonyjepson.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonyjepson.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 01:58:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='antonyjepson.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>AJ Online</title>
		<link>http://antonyjepson.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://antonyjepson.wordpress.com/osd.xml" title="AJ Online" />
	<atom:link rel='hub' href='http://antonyjepson.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Quickly Attaching USB Devices to VirtualBox Guests using VBoxManage</title>
		<link>http://antonyjepson.wordpress.com/2012/01/26/quickly-attaching-usb-devices-to-virtualbox-guests-using-vboxmanage/</link>
		<comments>http://antonyjepson.wordpress.com/2012/01/26/quickly-attaching-usb-devices-to-virtualbox-guests-using-vboxmanage/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 05:59:14 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=396</guid>
		<description><![CDATA[I frequently develop inside VBox guests because I to ensure that my development environment is consistent across machines and operating systems. Sometimes, I will need to connect a USB device plugged into the host computer to the guest VM. Because I start most VMs in headless mode, I would rather not launch the VM manager [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=396&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I frequently develop inside VBox guests because I to ensure that my development environment is consistent across machines and operating systems.</p>
<p>Sometimes, I will need to connect a USB device plugged into the host computer to the guest VM. Because I start most VMs in headless mode, I would rather not launch the VM manager just to attach the USB device. Using VBoxManage, you can also mitigate this issue.</p>
<p>First (if you do not remember), find the name of the VM.<br />
<code>$ VBoxManage list vms<br />
"archlinux" {3daf7395-3866-2348-bc54-947445b5e626}<br />
[truncated]</code></p>
<p>List the USB devices attached to the host.<br />
<code>$ VBoxManage list usbhost<br />
UUID:               e2d15ede-83f1-45ad-98d5-1efa46b810eb<br />
VendorId:           0x06c2 (06C2)<br />
ProductId:          0x0033 (0033)<br />
Revision:           1.0 (0100)<br />
Manufacturer:       Phidgets Inc.<br />
Product:            PhidgetSpatial<br />
SerialNumber:       166112<br />
Address:            p=0x0033;v=0x06c2;s=0x000064bfc79cb786;l=0x06200000<br />
Current State:      Captured</code><br />
Note that if the Current State is Captured, then you should make sure that the host has not already locked the device. In this case, it was already captured by the guest.</p>
<p>Connect the USB device to the guest, using the given UUID.<br />
<code>$ VBoxManage controlvm archlinux usbattach e2d15ede-83f1-456d-98d5-1efa46b810eb</code></p>
<p>You can also make this attachment permanent by creating a USB filter.</p>
<p>List the filters for the VM. Note the index.<br />
<code>$ VBoxManage showvminfo archlinux<br />
USB Device Filters:</p>
<p>Index:            0<br />
Active:           yes<br />
Name:             Phidgets Inc. PhidgetSpatial [0100]<br />
VendorId:         06c2<br />
ProductId:        0033<br />
Revision:         0100<br />
Manufacturer:     Phidgets Inc.<br />
Product:          PhidgetSpatial<br />
Remote:           0<br />
Serial Number:    166112</code></p>
<p>Place the filter after the last index. You can grab the VendorId and the ProductId from the previous usbhost output.<br />
<code>$ VBoxManage usbfilter add 1 --target archlinux --name Phidget --vendorid 0x06C2 --productid 0x0033</code></p>
<p>If you have problems setting the filter, first ensure that there are no existing global filters.<br />
<code>$ VBoxManage list usbfilters</code></p>
<p>You can later remove the filter by using a similar incarnation.<br />
<code>$ VBoxManage usbfilter remove 1 --target archlinux</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/396/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=396&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2012/01/26/quickly-attaching-usb-devices-to-virtualbox-guests-using-vboxmanage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>Predictions for iOS 5</title>
		<link>http://antonyjepson.wordpress.com/2011/06/02/predictions-for-ios-5/</link>
		<comments>http://antonyjepson.wordpress.com/2011/06/02/predictions-for-ios-5/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 05:48:13 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=389</guid>
		<description><![CDATA[Here is a short list of the things that I think will be present in iOS 5. The correct featureset will be announced at the 2011 WWDC. Improved notification infrastructure, i.e., like the jumping dock present in Mac OS. Storage of contacts/documents/mail/calender events/books/purchased songs and videos on the cloud with no intervention and no limit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=389&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a short list of the things that I think will be present in iOS 5. The correct featureset will be announced at the <a href="http://developer.apple.com/wwdc/about/" title="Apple's WWDC" target="_blank">2011 WWDC</a>.</p>
<ol>
<li>Improved notification infrastructure, i.e., like the jumping dock present in Mac OS.</li>
<li>Storage of contacts/documents/mail/calender events/books/purchased songs and videos on the cloud with no intervention and no limit</li>
<li>Improved support for exchange and corporate infrastructure</li>
<li>Group messaging</li>
<li>Dynamic homescreen tiles</li>
<li>Universal search</li>
<li>New animations for common actions</li>
<li>Support for at least 10 more languages (I would say 20 new languages)</li>
<li>Improved iTunes/iPod experience</li>
<li>Improved lock screen</li>
<li>Font/kerning updates</li>
<li>Improved accessibility</li>
<li>Maps improvement</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=389&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2011/06/02/predictions-for-ios-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>HP Veer</title>
		<link>http://antonyjepson.wordpress.com/2011/02/10/hp-veer/</link>
		<comments>http://antonyjepson.wordpress.com/2011/02/10/hp-veer/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 05:12:14 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=385</guid>
		<description><![CDATA[I have been thinking about a phone with a small but usable form factor for a long time. Microsoft nailed it with the Kin but unfortunately the target audience was not applicable to me. I&#8217;m really excited about the HP Veer which is supposed to be shipping in the spring. The deciding factor is the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=385&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been thinking about a phone with a small but usable form factor for a long time. Microsoft nailed it with the Kin but unfortunately the target audience was not applicable to me. I&#8217;m really excited about the HP Veer which is supposed to be shipping in the spring.</p>
<p>The deciding factor is the answer to the question: how much for an unlocked phone? It is only running a Snapdragon 800Mhz CPU and given that the screen is a little over 2 inches, I don&#8217;t see why it would cost much more than $399.</p>
<p>Time will tell.</p>
<p>Link: &#8220;HP Veer, first hands-on! (updated with video!)&#8221; [http://www.engadget.com/2011/02/09/hp-veer-first-hands-on/]</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=385&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2011/02/10/hp-veer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Started with Symbian Development</title>
		<link>http://antonyjepson.wordpress.com/2010/05/01/getting-started-with-symbian-development/</link>
		<comments>http://antonyjepson.wordpress.com/2010/05/01/getting-started-with-symbian-development/#comments</comments>
		<pubDate>Sat, 01 May 2010 20:25:48 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=378</guid>
		<description><![CDATA[The world has gone app-crazy and I want to become a part of it. I&#8217;ve decided to see if I can horne my C++ skills by creating a Symbian application. Getting prepared for Symbian development isn&#8217;t a straightforward process. Here&#8217;s how I set up my development environment: Download and install ActivePerl (current version is 5.10.1). [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=378&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The world has gone app-crazy and I want to become a part of it. I&#8217;ve decided to see if I can horne my C++ skills by creating a Symbian application.</p>
<p>Getting prepared for Symbian development isn&#8217;t a straightforward process. Here&#8217;s how I set up my development environment:</p>
<p>Download and install <a href="http://www.activestate.com/activeperl/">ActivePerl</a> (current version is 5.10.1).</p>
<p>I&#8217;m developing for the Symbian S60v3 FP1 platform so I needed to apply the <a href="http://wiki.forum.nokia.com/index.php/KIS001302_-_Compiling_context-sensitive_help_fails_with_latest_version_of_Perl">context sensitive patch</a>.</p>
<p>Download and install the <a href="http://java.sun.com/javase/downloads/index.jsp">JDK</a> (current version 6u20).</p>
<p>Download and install the <a href="http://www.forum.nokia.com/Tools_Docs_and_Code/Tools/IDEs/Carbide.c++/">Carbine.c++</a> development environment (current version 2.3).</p>
<p>For Windows XP SP3 (and probably SP2) users, add the epoc.exe binary to the allowed DEP. You can do this by going to Start -&gt; right click on My Computer -&gt; click on Properties -&gt; click on the Advanced tab -&gt; click on Settings in the Performance category -&gt; click on the Data Execution Prevention tab -&gt; select the &#8220;Turn on DEP for all programs and services except those I select:&#8221; radio button -&gt; click Add -&gt; Navigate to C:\Symbian\9.2\S60_3rd_FP1\Epoc32\release\winscw\udeb and select epoc.exe (location is dependent on installation path).</p>
<p>Finally, install the <a href="http://www.forum.nokia.com/info/sw.nokia.com/id/4a7149a5-95a5-4726-913a-3c6f21eb65a5/S60-SDK-0616-3.0-mr.html">S60 Platform SDK</a>. I selected 3rd Edition, FP 1.</p>
<p>Further instructions are available at the <a href="http://library.forum.nokia.com">Forum Nokia Library</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/378/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/378/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=378&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2010/05/01/getting-started-with-symbian-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>Printing to a remote printer</title>
		<link>http://antonyjepson.wordpress.com/2009/11/02/printing-to-a-remote-printer/</link>
		<comments>http://antonyjepson.wordpress.com/2009/11/02/printing-to-a-remote-printer/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:31:34 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=373</guid>
		<description><![CDATA[Every now and then I&#8217;ll enter the computer lab only to find that all the computers are being used &#8211; this usually happens when I urgently need to print something before I miss the bus. Thankfully, the system admins have allowed me the wonders of ssh access. So, printing is relatively simple: Copy the file [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=373&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Every now and then I&#8217;ll enter the computer lab only to find that all the computers are being used &#8211; this usually happens when I urgently need to print something before I miss the bus.</p>
<p>Thankfully, the system admins have allowed me the wonders of ssh access. So, printing is relatively simple:</p>
<p>Copy the file to be printed to the server.</p>
<p>scp filename.pdf username@server:.</p>
<p>List all available printers.<br />
lpstat -a</p>
<p>Send your document to the printer.<br />
lpr -Pprinter filename.pdf</p>
<p>Optionally, to save paper, you may print multiple pdf pages on one sheet.<br />
The process is simple: convert the pdf to ps (postscript), use the psnup utility to increase the number of pages placed on each sheet, then convert the pdf to ps.</p>
<p>pdf2ps filename.pdf<br />
psnup -n2 filename.ps (or 2up filename.ps to get two pages per sheet)<br />
ps2pdf filename.ps</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=373&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2009/11/02/printing-to-a-remote-printer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>KDE DPI Issue</title>
		<link>http://antonyjepson.wordpress.com/2009/09/10/kde-dpi-issue/</link>
		<comments>http://antonyjepson.wordpress.com/2009/09/10/kde-dpi-issue/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 15:13:16 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dpi]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[xorg]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=369</guid>
		<description><![CDATA[Simple fix: in /usr/share/config/kdm/kdmrc Add the &#8220;-dpi &#8221; argument to ServerArgsLocal in [X-:*-Core]. Not sure what this does to dual monitor setups.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=369&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Simple fix:</p>
<p>in /usr/share/config/kdm/kdmrc</p>
<p>Add the &#8220;-dpi &#8221; argument to ServerArgsLocal in [X-:*-Core].</p>
<p>Not sure what this does to dual monitor setups.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=369&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2009/09/10/kde-dpi-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>Sony NWZ-E438F + Video</title>
		<link>http://antonyjepson.wordpress.com/2009/08/22/sony-nwz-e438f-video/</link>
		<comments>http://antonyjepson.wordpress.com/2009/08/22/sony-nwz-e438f-video/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 16:16:58 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sony nwz-e438f walkman handbrake video]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/2009/08/22/sony-nwz-e438f-video/</guid>
		<description><![CDATA[I recently purchases a Song Walkman which has great video capabilities &#8211; provided you know how to encode the video. It&#8217;s not very hard, simply chuck the video into handbrake and let it churn out a Sony Walkman compatible video: handbrake -i $input_name -o $output_name.mp4 -f mp4 -e ffmpeg -E faac -w 320 -l 240 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=365&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently purchases a Song Walkman which has great video capabilities &#8211; provided you know how to encode the video.</p>
<p>It&#8217;s not very hard, simply chuck the video into handbrake and let it churn out a Sony Walkman compatible video:<br />
<code>handbrake -i $input_name -o $output_name.mp4 -f mp4 -e ffmpeg -E faac -w 320 -l 240 -b 500</code></p>
<p>If you don&#8217;t have this program, use the following options in any video converter program:<br />
width: 320px<br />
height: 240px<br />
audio encoder: faac<br />
video encoder: ffmpeg<br />
output format: mp4<br />
video bitrate: 500 kb/s</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/365/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/365/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/365/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=365&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2009/08/22/sony-nwz-e438f-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>Movies for August 2009</title>
		<link>http://antonyjepson.wordpress.com/2009/08/11/movies-for-august-2009/</link>
		<comments>http://antonyjepson.wordpress.com/2009/08/11/movies-for-august-2009/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 20:56:25 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[august 2009 movies]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=361</guid>
		<description><![CDATA[District 9 I like the science fiction premisis but I don&#8217;t like what the trailers hint at: it&#8217;s gonna be a long movie (&#62; 2h). Time Traveler&#8217;s Wife I think it&#8217;s time to give in and watch a sci-fi(ish) romance for a change. The Final Destination Final Destination™ movies have always been fun to watch [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=361&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>District 9</li>
<p>      I like the science fiction premisis but I don&#8217;t like what the trailers hint at: it&#8217;s gonna be a long movie (&gt; 2h).</p>
<li>Time Traveler&#8217;s Wife</li>
<p>      I think it&#8217;s time to give in and watch a sci-fi(ish) romance for a change.</p>
<li>The Final Destination</li>
<p>      Final Destination™ movies have always been fun to watch (if not a bit cliche+silly).</p>
<li>Inglourius Basterds</li>
<p>      No particular reason apart from that it looks like a good action flick (with good acting [hopefully]).</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=361&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2009/08/11/movies-for-august-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>Readline</title>
		<link>http://antonyjepson.wordpress.com/2009/07/26/readline/</link>
		<comments>http://antonyjepson.wordpress.com/2009/07/26/readline/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 19:14:08 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[readline]]></category>
		<category><![CDATA[vi]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=356</guid>
		<description><![CDATA[Just a quick post but the readline library keybindings are very interesting - you just don&#8217;t need the home&#124;end keys anymore. For the uninformed, here&#8217;s the excerpt I&#8217;m talking about (man readline): Emacs Mode Emacs Standard bindings &#8220;C-@&#8221; set-mark &#8220;C-A&#8221; beginning-of-line &#8220;C-B&#8221; backward-char &#8220;C-D&#8221; delete-char &#8220;C-E&#8221; end-of-line &#8220;C-F&#8221; forward-char &#8220;C-G&#8221; abort &#8220;C-H&#8221; backward-delete-char &#8220;C-I&#8221; complete [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=356&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just a quick post but the readline library keybindings are very interesting -<br />
you just don&#8217;t need the home|end keys anymore.  For the uninformed, here&#8217;s the<br />
excerpt I&#8217;m talking about (man readline):</p>
<p>Emacs Mode<br />
 Emacs Standard bindings</p>
<p> &#8220;C-@&#8221;  set-mark<br />
 &#8220;C-A&#8221;  beginning-of-line<br />
 &#8220;C-B&#8221;  backward-char<br />
 &#8220;C-D&#8221;  delete-char<br />
 &#8220;C-E&#8221;  end-of-line<br />
 &#8220;C-F&#8221;  forward-char<br />
 &#8220;C-G&#8221;  abort<br />
 &#8220;C-H&#8221;  backward-delete-char<br />
 &#8220;C-I&#8221;  complete<br />
 &#8220;C-J&#8221;  accept-line<br />
 &#8220;C-K&#8221;  kill-line<br />
 &#8220;C-L&#8221;  clear-screen<br />
 &#8220;C-M&#8221;  accept-line<br />
 &#8220;C-N&#8221;  next-history<br />
 &#8220;C-P&#8221;  previous-history<br />
 &#8220;C-Q&#8221;  quoted-insert<br />
 &#8220;C-R&#8221;  reverse-search-history<br />
 &#8220;C-S&#8221;  forward-search-history<br />
 &#8220;C-T&#8221;  transpose-chars<br />
 &#8220;C-U&#8221;  unix-line-discard<br />
 &#8220;C-V&#8221;  quoted-insert<br />
 &#8220;C-W&#8221;  unix-word-rubout<br />
 &#8220;C-Y&#8221;  yank<br />
 &#8220;C-]&#8221;  character-search<br />
 &#8220;C-_&#8221;  undo<br />
 &#8221; &#8221; to &#8220;/&#8221;  self-insert<br />
 &#8220;0&#8243;  to &#8220;9&#8243;  self-insert<br />
 &#8220;:&#8221;  to &#8220;~&#8221;  self-insert<br />
 &#8220;C-?&#8221;  backward-delete-char</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=356&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2009/07/26/readline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Windows XP in VirtualBox</title>
		<link>http://antonyjepson.wordpress.com/2009/07/18/installing-windows-xp-in-virtualbox/</link>
		<comments>http://antonyjepson.wordpress.com/2009/07/18/installing-windows-xp-in-virtualbox/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 12:20:19 +0000</pubDate>
		<dc:creator>antonyjepson</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Operating System]]></category>

		<guid isPermaLink="false">http://antonyjepson.wordpress.com/?p=347</guid>
		<description><![CDATA[Not too difficult, here are a few tips to make sure that your experience is flawless. When configuring the virtual machine, make sure that you enable APIC and ACPI in Settings &#8211;&#62; System. create a fixed sized harddisk to improve disk I/O speeds. After installing Windows XP, make sure that you download the driver for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=347&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Not too difficult, here are a few tips to make sure that your experience is flawless.</p>
<h3>When configuring the virtual machine, make sure that you</h3>
<ul>
<li>enable APIC and ACPI in Settings &#8211;&gt; System.</li>
<li>create a fixed sized harddisk to improve disk I/O speeds.</li>
</ul>
<h3>After installing Windows XP, make sure that you</h3>
<ul>
<li>download the driver for the Intel Pro 1000 network adapater and change the default adapter from PCNet to Intel Pro 1000 in Settings &#8211;&gt; Network. For me, this improved network access speed and reduced DNS lookup delays.</li>
<li>install VirtualBox Guest Editions which enables seamless mouse integration and experimental Direct3D support by mounting the Guest Editions ISO.</li>
<li>if, in the event that Windows Update fails to work, register the Wups2.dll as outlined in the Microsoft Knowledge Base &lt;http://support.microsoft.com/kb/943144&gt;</li>
</ul>
<p>I extend my thanks to the VirtualBox team for making this so effortless.  By the way, anything between 5G &#8211; 10G is a good size for your virtual harddisc.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/antonyjepson.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/antonyjepson.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/antonyjepson.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/antonyjepson.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/antonyjepson.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/antonyjepson.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/antonyjepson.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/antonyjepson.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/antonyjepson.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/antonyjepson.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/antonyjepson.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/antonyjepson.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/antonyjepson.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/antonyjepson.wordpress.com/347/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=antonyjepson.wordpress.com&amp;blog=4064674&amp;post=347&amp;subd=antonyjepson&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://antonyjepson.wordpress.com/2009/07/18/installing-windows-xp-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/68789eb7987d156c1b3a38c03627dab1?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">antonyjepson</media:title>
		</media:content>
	</item>
	</channel>
</rss>
