<?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>Jeremy Heslop &#187; howto</title>
	<atom:link href="http://jheslop.com/category/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://jheslop.com</link>
	<description>Christian, Husband, Father, Geek, Entrepreneur, Photographer</description>
	<lastBuildDate>Wed, 11 Nov 2009 21:14:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Adding pdftk to 1and1 shared hosting</title>
		<link>http://jheslop.com/2009/11/11/adding-pdftk-to-1and1-shared-hosting/</link>
		<comments>http://jheslop.com/2009/11/11/adding-pdftk-to-1and1-shared-hosting/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 21:12:47 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[1&1]]></category>
		<category><![CDATA[1and1]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[pdf toolkit]]></category>
		<category><![CDATA[pdftk]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://jheslop.com/?p=412</guid>
		<description><![CDATA[There are some cases where you might need a powerful pdf toolkit to use with php. 1and1 does not come with any built in pdf processors or pdf libraries built into php. Here is the process I used to integrate phptk into my 1and1 shared hosting account. Requirements: 1and1 shared plan that has ssh support [...]]]></description>
			<content:encoded><![CDATA[<p>There are some cases where you might need a powerful pdf toolkit to use with <a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>. <a href=http://jheslop.com/hosting/1and1 target=_blank>1and1</a> does not come with any built in pdf processors or pdf libraries built into <a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>. Here is the process I used to integrate <a href="http://www.pdfhacks.com/pdftk/">phptk</a> into my <a href=http://jheslop.com/hosting/1and1 target=_blank>1and1</a> shared <a href="http://jheslop.com/tag/hosting/" class="st_tag internal_tag" rel="tag" title="Posts tagged with hosting">hosting</a> account.</p>
<p>Requirements: <a href=http://jheslop.com/hosting/1and1 target=_blank>1and1</a> shared plan that has ssh support</p>
<p>- Download <a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a> deb file for debian etch (http://packages.debian.org/etch/i386/<a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a>/download):</p>
<p><code><a href="http://jheslop.com/tag/wget/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wget">wget</a> http://ftp.us.debian.org/debian/pool/main/l/<a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a>/pdftk_1.40-2_i386.deb</code></p>
<p>- Extract the <a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a> deb file:</p>
<p><code>ar xv pdftk_1.40-2_i386.deb</code></p>
<p>- Extract the data.tar.gz file:</p>
<p><code>tar xvzf data.tar.gz</code></p>
<p>- Download libgcj deb file for debian etc (http://packages.debian.org/etch/i386/libgcj7-0/download):</p>
<p><code><a href="http://jheslop.com/tag/wget/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wget">wget</a> http://ftp.us.debian.org/debian/pool/main/g/gcj-4.1/libgcj7-0_4.1.1-20_i386.deb</code></p>
<p>- Extract the libgcj deb file:</p>
<p><code>ar xv libgcj7-0_4.1.1-20_i386.deb</code></p>
<p>- Extract the data.tar.gz file:</p>
<p><code>tar xvzf data.tar.gz</code></p>
<p>- Create a script to link libgcj for <a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a> (use nano or vi):</p>
<p><code>#!/bin/bash</p>
<p>LD_LIBRARY_PATH="usr/lib:$LD_LIBRARY_PATH" usr/bin/<a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a> $*</code></p>
<p>- Chmod the <a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a> script so it can run:</p>
<p><code>chmod 755 <a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a></code></p>
<p>Now you can run <a href="http://jheslop.com/tag/pdftk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pdftk">pdftk</a> from your main directory and process files from <a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> or cronjobs.</p>
]]></content:encoded>
			<wfw:commentRss>http://jheslop.com/2009/11/11/adding-pdftk-to-1and1-shared-hosting/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adding PECL Uploadprogress to 1&amp;1 shared hosting for Drupal FileField</title>
		<link>http://jheslop.com/2009/05/27/adding-pecl-uploadprogress-to-11-shared-hosting-for-drupal-filefield/</link>
		<comments>http://jheslop.com/2009/05/27/adding-pecl-uploadprogress-to-11-shared-hosting-for-drupal-filefield/#comments</comments>
		<pubDate>Wed, 27 May 2009 20:25:46 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[1&1]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[PECL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[uploadprogress]]></category>

		<guid isPermaLink="false">http://jheslop.com/?p=371</guid>
		<description><![CDATA[Drupal 6.x is the platform we use to build great websites. There are modules FileField and ImageField 3.0 that allow the ability to update a progress meter when uploading a file. This requires installing a PECL extension to PHP called uploadprogress. Here is the process I used to get it working on a 1and1.com hosting [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://drupal.org">Drupal</a> 6.x is the platform we use to build great websites. There are modules <a href="http://drupal.org/project/filefield">FileField</a> and <a href="http://drupal.org/project/imagefield">ImageField</a> 3.0 that allow the ability to update a progress meter when uploading a file. This requires installing a PECL extension to <a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">PHP</a> called <a href="http://pecl.php.net/package/uploadprogress">uploadprogress</a>. Here is the process I used to get it working on a <a href="http://www.1and1.com/?k_id=6447276">1and1.com</a> <a href="http://jheslop.com/tag/hosting/" class="st_tag internal_tag" rel="tag" title="Posts tagged with hosting">hosting</a> package. You will need a <a href="http://jheslop.com/tag/hosting/" class="st_tag internal_tag" rel="tag" title="Posts tagged with hosting">hosting</a> package with ssh support currently the Business and Developer packages do.</p>
<ul>
<li>Download <a href="http://pecl.php.net/package/uploadprogress">PECL uploadaccess</a> to your 1&#038;1 account
</li>
<li>Extract the package<br />
<code>tar xvzf <a href="http://jheslop.com/tag/uploadprogress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with uploadprogress">uploadprogress</a>-1.0.0.tgz</code>
</li>
<li>Go into the directory<br />
<code>cd <a href="http://jheslop.com/tag/uploadprogress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with uploadprogress">uploadprogress</a>-1.0.0</code>
</li>
<li>Run phpize5<br />
<code>phpize5</code>
</li>
<li>Change <a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>-config to <a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>-config5 in configure script<br />
<code>sed -i 's/=<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>-config/=<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>-config5/g' configure</code>
</li>
<li>Change include directives in Makefile<br />
<code>sed -i 's#-I/usr/local/include/<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>#-I/usr/include/php5#g' Makefile</code>
</li>
<li>Run make and make test<br />
<code>make<br />
make test</code>
</li>
<li>Make new extensions folder for new extension to go in<br />
<code>mkdir ~/extensions</code>
</li>
<li>Copy <a href="http://jheslop.com/tag/uploadprogress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with uploadprogress">uploadprogress</a> extension to new folder<br />
<code>cp .libs/<a href="http://jheslop.com/tag/uploadprogress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with uploadprogress">uploadprogress</a>.so ~/extensions/</code>
</li>
<li>Create new <a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>.ini under your main folder (or under a single subfolder for just that application) to add new extension_dir then add this code to the file<br />
<code>extension_dir=/kunden/homepages/6/d87663654/htdocs/extensions/<br />
extension=<a href="http://jheslop.com/tag/uploadprogress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with uploadprogress">uploadprogress</a>.so</code>
</li>
</ul>
<p>That should be it. You should now be able to see the &#8220;Upload progress	Enabled (PECL <a href="http://jheslop.com/tag/uploadprogress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with uploadprogress">uploadprogress</a>)&#8221; on the admin/reports/status page in Drupal.</p>
<p>Links that helped me with the above info:</p>
<ul>
<li><a href="http://freestylesystems.co.uk/blog/installng-pecl-uploadprogress-extension-drupal-filefield-module">http://freestylesystems.co.uk/blog/installng-pecl-uploadprogress-extension-drupal-filefield-module</a>
</li>
<li><a href="http://www.outofcontrol.ca/2008/12/16/install-custom-pear-packages-on-1and1/">http://www.outofcontrol.ca/2008/12/16/install-custom-pear-packages-on-1and1/</a>
</li>
<li><a href="http://faq.1and1.com/scripting_languages_supported/php/14.html">http://faq.1and1.com/scripting_languages_supported/php/14.html</a>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jheslop.com/2009/05/27/adding-pecl-uploadprogress-to-11-shared-hosting-for-drupal-filefield/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Online Banking Setup for GnuCash 2.2.6 under Windows XP</title>
		<link>http://jheslop.com/2008/09/19/online-banking-setup-for-gnucash-under-windows-xp/</link>
		<comments>http://jheslop.com/2008/09/19/online-banking-setup-for-gnucash-under-windows-xp/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 15:23:50 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[gnucash]]></category>
		<category><![CDATA[ofx]]></category>
		<category><![CDATA[online banking]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://jheslop.com/?p=278</guid>
		<description><![CDATA[Since my linux raid decided to futz up (read I screwed it up) I&#8217;ve been using my Windows partition out of necessity until I have the time to rebuild my software raid 5 and gentoo. Until then we&#8217;ve been using GnuCash under Windows which has worked ok, but it is not as nice as the [...]]]></description>
			<content:encoded><![CDATA[<p><a class="" rel="" title="gnucash-logo" href="http://www.flickr.com/photos/48359494@N00/2416054704/"><img class="alignleft" style="float: left;" src="http://static.flickr.com/3120/2416054704_e1aee2e2f2_m.jpg" alt="gnucash-logo"/></a></p>
<p>Since my linux raid decided to futz up (read I screwed it up) I&#8217;ve been using my <a href="http://jheslop.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with windows">Windows</a> partition out of necessity until I have the time to rebuild my software raid 5 and <a href="http://gentoo.org">gentoo</a>. Until then we&#8217;ve been using <a href="http://gnucash.org">GnuCash</a> under <a href="http://jheslop.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with windows">Windows</a> which has worked ok, but it is not as nice as the linux version by far. We use <a href="http://jheslop.com/tag/gnucash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gnucash">GnuCash</a> for our business and it is critical that we have all the functions working in it. One of the things that I really missed was <a href="http://jheslop.com/tag/online-banking/" class="st_tag internal_tag" rel="tag" title="Posts tagged with online banking">online banking</a>. I could pull in all the transactions and clear them under <a href="http://jheslop.com/tag/gnucash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gnucash">GnuCash</a> as well as making reconciling alot easier. The reason that <a href="http://jheslop.com/tag/gnucash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gnucash">GnuCash</a> could not connect to my online bank was that the version of libofx it was saying it was an older version of Quicken and thus was denied from my bank. I read some more online and &#8230;<br />
<span id="more-278"></span><br />
found that you could compile libofx with a new APPVER or binary replace the version in the library file. So I took the easy way out and replaced the string in the .dll file. Here is how I did it:</p>
<ul>
<li>Downloaded <a href="http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm">xvi32 hex editor (free)</a></li>
<li>Opened &#8220;C:\Program Files\<a href="http://jheslop.com/tag/gnucash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gnucash">gnucash</a>\bin\libofx-3.dll&#8221; under XVi32</li>
<li>Searched for 1200 as a text string</li>
<li>Found the string that says APPVER right after it and clicked on the 2 of 1200 and hit 5 to make it 1500</li>
<li>Saved the file, started up <a href="http://jheslop.com/tag/gnucash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gnucash">GnuCash</a> and voila!</li>
</ul>
<p>In all this I am assuming you already know how to setup <a href="http://jheslop.com/tag/gnucash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gnucash">GnuCash</a> for <a href="http://jheslop.com/tag/online-banking/" class="st_tag internal_tag" rel="tag" title="Posts tagged with online banking">Online Banking</a>. If not you can check it out on their <a href="http://wiki.gnucash.org/wiki/Setting_up_OFXDirectConnect_in_GnuCash_2">ofx setup page</a>. That is it for now. Hope you find this useful as I&#8217;m sure I&#8217;ll have to come back to this at some point in time in the future!</p>
<p>And remember if you use <a href="http://jheslop.com/tag/gnucash/" class="st_tag internal_tag" rel="tag" title="Posts tagged with gnucash">GnuCash</a> for tracking your expenses and income make sure you have a backup off-site. I recommend Mozy for <a href="http://jheslop.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with windows">windows</a> and Mac, but any way you do it you&#8217;ll be thankful you did.</p>
]]></content:encoded>
			<wfw:commentRss>http://jheslop.com/2008/09/19/online-banking-setup-for-gnucash-under-windows-xp/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Setting up Azureus and SafePeer in Linux</title>
		<link>http://jheslop.com/2007/10/19/setting-up-azureus-and-safepeer-in-linux/</link>
		<comments>http://jheslop.com/2007/10/19/setting-up-azureus-and-safepeer-in-linux/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 13:32:30 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[azureus]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://jheslop.com/2007/10/19/setting-up-azureus-and-safepeer-in-linux/</guid>
		<description><![CDATA[So there are tons of utilities to keep the SafePeer plugin up-to-date in Windows (like BlueTack&#8217;s Blocklist Manager), but Linux and the Mac have been left out in the cold. We&#8217;ll I found a way to get those 190k+ ips blocked in azureus without having to use Peerguardian or MoBlock (MoBlock is still safer in [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://azureus.sourceforge.net/' title='azureus_splash.png'><img src='http://jheslop.com/wp-content/uploads/2007/10/azureus_splash.png' alt='azureus_splash.png' border="0" style="margin-right: 2px;" /></a> So there are tons of utilities to keep the <a href="http://azureus.sourceforge.net/plugin_details.php?plugin=safepeer">SafePeer plugin</a> up-to-date in <a href="http://jheslop.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with windows">Windows</a> (like <a href="http://www.bluetack.co.uk/forums/index.php?act=dscriptca&#038;CODE=viewcat&#038;cat_id=2">BlueTack&#8217;s Blocklist Manager</a>), but Linux and the Mac have been left out in the cold. We&#8217;ll I found a way to get those 190k+ ips blocked in azureus without having to use <a href="http://phoenixlabs.org/pg2/">Peerguardian</a> or <a href="http://moblock.berlios.de/">MoBlock</a> (MoBlock is still safer in my mind) in Linux. First we need to download the lists like we would for MoBlock. Here is the script I use:<br />
<span id="more-215"></span><br />
<code>#!/bin/bash</p>
<p>mkdir -p backup<br />
mv *.txt backup/<br />
rm *.7z</p>
<p><a href="http://jheslop.com/tag/wget/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wget">wget</a> http://peerguardian.sourceforge.net/lists/ads.<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> http://peerguardian.sourceforge.net/lists/edu.<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> http://peerguardian.sourceforge.net/lists/p2p.<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> http://peerguardian.sourceforge.net/lists/spy.<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> http://peerguardian.sourceforge.net/lists/gov.<a href="http://jheslop.com/tag/php/" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a></p>
<p>for list in `ls *.7z`; do<br />
        7z -y x $list<br />
done</p>
<p>cat *.txt > all.txt</code></p>
<p>This moves the old lists into a backup folder, removes the old downloaded files, re-downloads the lists (you can add or remove the lists you want that MoBlock can read), extracts then and then concats them all together to make a master all list. Then you need to setup Azureus&#8217;s SafePeer settings to find this new list.</p>
<p>Under SafePeer settings:<br />
- Uncheck Enable asynchronous loading<br />
- Uncheck Enable periodic update</p>
<p>Under Blocklist settings:<br />
- Clear out the Blocklist URL<br />
- Browser for the all.txt file to add as your Cache file</p>
<p>That is it. You should see the IPs number at the bottom of azureus be 197,000+ ips. If not make sure you selected the correct location of the all.txt file. Good Luck and happy downloading.</p>
]]></content:encoded>
			<wfw:commentRss>http://jheslop.com/2007/10/19/setting-up-azureus-and-safepeer-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Quit Facebook</title>
		<link>http://jheslop.com/2007/10/02/how-to-quit-facebook/</link>
		<comments>http://jheslop.com/2007/10/02/how-to-quit-facebook/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 23:26:23 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[diggs]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://jheslop.com/2007/10/02/how-to-quit-facebook-2/</guid>
		<description><![CDATA[So are you addicted to facebook? Do you find yourself aimlessly looking through everyones posts over and over again and trying out new apps in hopes your friends will to. Well it might be time to get a grip on reality, Check out &#8220;How to Quit Facebook&#8221; on wikiHow to find out how you can [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://jheslop.com/wp-content/uploads/2007/10/facebook-welcome-3.gif" align="left" />So are you addicted to facebook? Do you find yourself aimlessly looking through everyones posts over and over again and trying out new apps in hopes your friends will to. Well it might be time to get a grip on reality, Check out <a href="http://www.wikihow.com/Quit-Facebook">&#8220;How to Quit Facebook&#8221;</a> on wikiHow to find out how you can quit facebook.</p>
]]></content:encoded>
			<wfw:commentRss>http://jheslop.com/2007/10/02/how-to-quit-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
