<?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>The Wooley Swamp</title>
	<atom:link href="http://thewooleyswamp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thewooleyswamp.wordpress.com</link>
	<description>Way back in booger woods</description>
	<lastBuildDate>Mon, 25 Oct 2010 15:36:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='thewooleyswamp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Wooley Swamp</title>
		<link>http://thewooleyswamp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://thewooleyswamp.wordpress.com/osd.xml" title="The Wooley Swamp" />
	<atom:link rel='hub' href='http://thewooleyswamp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Pipes and Exit Status in BASH</title>
		<link>http://thewooleyswamp.wordpress.com/2010/10/25/pipes-and-exit-status-in-bash/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/10/25/pipes-and-exit-status-in-bash/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 15:35:28 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/2010/10/25/pipes-and-exit-status-in-bash/</guid>
		<description><![CDATA[In bash the simple way to detect errors in piped commands is to use &#8220;set -o pipefail&#8221; at the top of our bash script. This means that $? will now return any non zero exit status in the pipe. In the event of multiple non zero exits which one you get can be ambigous. This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2293&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In bash the simple way to detect errors in piped commands is to use &#8220;set -o pipefail&#8221; at the top of our bash script.   This means that $? will now return any non zero exit status in the pipe.   In the event of multiple non zero exits which one you get can be ambigous.   This is however great for making sure all commands in your pipe succeeded with a zero exit status.</p>
<p>If you wish to look at a specific exit status for a piped command you can use the $PIPESTATUS array which is the exit codes for each command in your pipe indexed by the position of the command in your pipe.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2293&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/10/25/pipes-and-exit-status-in-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>Color Theme Selectors</title>
		<link>http://thewooleyswamp.wordpress.com/2010/07/15/color-theme-selectors/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/07/15/color-theme-selectors/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 13:54:22 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2285</guid>
		<description><![CDATA[Picking coordinated colors is not something I excel at, ask my wife or take a look at my wardrobe selection&#8230;   Thankfully Albert invented the internet. http://colorschemedesigner.com/ The above is great for picking coordinating colors.   You can adjust the overall brightness or saturation of the theme, the degree of contrast in the light or dark areas, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2285&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Picking coordinated colors is not something I excel at, ask my wife or take a look at my wardrobe selection&#8230;   Thankfully Albert invented the internet.</p>
<blockquote><p><a href="http://colorschemedesigner.com/">http://colorschemedesigner.com/</a></p></blockquote>
<p>The above is great for picking coordinating colors.   You can adjust the overall brightness or saturation of the theme, the degree of contrast in the light or dark areas, whether you want monochromatic or coordinating colors etc.</p>
<p>It is a little heavy or sluggish but I still am a big fan of this implementation.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2285&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/07/15/color-theme-selectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>Ramping Up</title>
		<link>http://thewooleyswamp.wordpress.com/2010/07/14/ramping-up/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/07/14/ramping-up/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 02:21:13 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Postgres]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2283</guid>
		<description><![CDATA[During the day I play a DBA and one of my recent projects is a challenging one. We are setting up a proprietary database to house a national database of transactions. I am not permitted to mention the particular technology we are using since we are under a strict NDA.  This repository will be a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2283&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During the day I play a DBA and one of my recent projects is a challenging one.   We are setting up a proprietary database to house a national database of transactions.   I am not permitted to mention the particular technology we are using since we are under a strict NDA.  This repository will be a largely read only environment, refreshed at some interval with a full replace.   The user account, transaction records for billing, contract setup etc. will all be housed in a Postgres 8.1 database.</p>
<p>The total transaction volume we are anticipating for this is about 60 million transactions a year with an average response time, including all application overhead of 0.6 seconds.</p>
<p>We have built that.   Now its on to phase two.   We need to add redundancy.  We are scoping out a second identical environment at a physically separate facility.    To do that I will need to focus on replication of postgres.   The large proprietary read only store can be manually refreshed and kept in synch easily.  Postgres is the challenge.   Not because of limitations in postgres but just because that is the db where all our changes will be made.  If we go live on both sites simultaneously with load balancing I&#8217;ll have to configure and support bidirectional replication in some cases.</p>
<p>Can we do it ?  Yes we can.   But it will be fun to figure out how it all fits together.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2283&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/07/14/ramping-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>Uninitialized constant User::Authentication&#8230;</title>
		<link>http://thewooleyswamp.wordpress.com/2010/07/14/uninitialized-constant-userauthentication/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/07/14/uninitialized-constant-userauthentication/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 01:18:24 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2280</guid>
		<description><![CDATA[Ruby/Rails has some strange ways to present error messages.   It requires learning to divine the true error behind the error.   Take the following error I encountered tonight setting up a RESTful Authentication in a new rails environment. Running rake db:migrate produced the following lucias@blackwater:~/src/rails/testauth$ rake db:migrate (in /home/lucias/src/rails/testauth) rake aborted! uninitialized constant User::Authentication [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2280&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ruby/Rails has some strange ways to present error messages.   It requires learning to divine the true error behind the error.   Take the following error I encountered tonight setting up a RESTful Authentication in a new rails environment.    Running rake db:migrate produced the following</p>
<pre>lucias@blackwater:~/src/rails/testauth$ rake db:migrate
(in /home/lucias/src/rails/testauth)
rake aborted!
uninitialized constant User::Authentication

(See full trace by running task with --trace)
lucias@blackwater:~/src/rails/testauth$</pre>
<p>What did all the above mean ?   Well the long and the short is that &#8220;include Authentication&#8221; in a module named &#8230;. was failing.   It needed to have the plugin installed and, for reasons of simple human error, I&#8217;d skipped that step.   To install the plugin I cc&#8217;d to the vendor/plugins/ directory and ran :</p>
<pre>lucias@blackwater:~/src/rails/testauth/vendor/plugins$ git clone git://github.com/technoweenie/restful-authentication.git restful_authentication
Initialized empty Git repository in /home/lucias/src/rails/testauth/vendor/plugins/restful_authentication/.git/
remote: Counting objects: 1773, done.
remote: Compressing objects: 100% (617/617), done.
remote: Total 1773 (delta 1030), reused 1636 (delta 957)
Receiving objects: 100% (1773/1773), 738.50 KiB | 176 KiB/s, done.
Resolving deltas: 100% (1030/1030), done.
lucias@blackwater:~/src/rails/testauth/vendor/plugins$</pre>
<p>Which installed the plugin, note I used an underscore and not a hyphen in the name I used locally.   That is important as on occasion the hyphen in the name can cause problems.</p>
<p>Anyway now all it works as follows.</p>
<pre>lucias@blackwater:~/src/rails/testauth$ rake db:migrate
(in /home/lucias/src/rails/testauth)
==  CreateUsers: migrating ====================================================
-- create_table(:users, {:force=&gt;true})
   -&gt; 0.0191s
-- add_index(:users, :login, {:unique=&gt;true})
   -&gt; 0.0060s
==  CreateUsers: migrated (0.0253s) ===========================================

lucias@blackwater:~/src/rails/testauth$</pre>
<p>All is well.  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2280&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/07/14/uninitialized-constant-userauthentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>EULA Print Cartridges</title>
		<link>http://thewooleyswamp.wordpress.com/2010/07/05/eula-print-cartridges/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/07/05/eula-print-cartridges/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 13:23:18 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Swamp Sludge]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2271</guid>
		<description><![CDATA[Ever read the fine print on your printer ink cartridge ?    Lexmark, bless their souls, has apparently decided to license your ink cartridge instead of selling your ink cartridge.   Reading from the box : Opening this package or using the print cartridge inside confirms your acceptance of the following license/agreement.  The patented print [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2271&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever read the fine print on your printer ink cartridge ?    Lexmark, bless their souls, has apparently decided to license your ink cartridge instead of selling your ink cartridge.   Reading from the box :</p>
<blockquote><p>Opening this package or using the print cartridge inside confirms your acceptance of the following license/agreement.  The patented print cartridge and its contents inside this package are licensed for a single use only.  After this single use the license to use the print cartridge terminates, and the used cartridge must be returned only to Lexmark for remanufacturing, refilling or recycling.  Visit www.lexmark.com/recycle for return information.  IF YOU DO NOT ACCEPT THESE TERMS, RETURN THE UNOPENED PACKAGE TO YOUR POINT OF PURCHASE.  A replacement cartridge sold without these terms is available through www.lexmark.com</p></blockquote>
<p>This is right up there with the licensed plants I saw at the nursery a while back which prohibited you from propagating them.</p>
<p>I&#8217;m speechless so I&#8217;ll not say anything other than &#8220;WOW&#8221;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2271/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2271&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/07/05/eula-print-cartridges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>Subversion</title>
		<link>http://thewooleyswamp.wordpress.com/2010/07/04/subversion/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/07/04/subversion/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 01:32:53 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Source Code Control]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2267</guid>
		<description><![CDATA[I&#8217;m always for subversion.   In this case the subversion code control system. I decided to install subversion on a new linux box I recently migrated to at home.  As with anything in Ubuntu its a simple install. sudo apt-get subversion And follow the bouncing ball which installs the following ( and other supporting ) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2267&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always for subversion.   In this case the subversion code control system.</p>
<p>I decided to install subversion on a new linux box I recently migrated to at home.  As with anything in Ubuntu its a simple install.</p>
<blockquote><p>sudo apt-get subversion</p></blockquote>
<p>And follow the bouncing ball which installs the following ( and other supporting ) package :</p>
<blockquote><p>subversion                                 1.6.6dfsg-2ubuntu1                              Advanced version control system</p></blockquote>
<p>In my case I decided to setup a simple repository as follows<br />
svnadmin create /home/lucias/lib/SVN</p>
<p>That created the repository in the SVN directory.</p>
<p>Then I created a simple test to validate and imported a rails application tree I have in the source directory</p>
<blockquote><p>svn import isbn_google file:///home/lucias/lib/SVN -m &#8220;Initial import of code&#8221;</p></blockquote>
<p>That worked fine.   To validate I renamed the directory I had just checked in and then checked it back out from subversion.</p>
<blockquote><p>svn checkout file:///home/lucias/lib/SVN isbn_google</p></blockquote>
<p>Which laid the files down correctly for my working copy.   Then I modified a file and validated that svn was aware my working copy was revised</p>
<blockquote><p>svn status</p></blockquote>
<p>Next I checked to see if anyone else had revised the file while I had it checked out with</p>
<blockquote><p>svn update</p></blockquote>
<p>Since I am the only user no one had made revisions <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />    So with that taken care of I then</p>
<blockquote><p>svn commit -m &#8220;Fallback to text_field to create working code&#8221;</p></blockquote>
<p>Some quick validations showed the logs of changes were there</p>
<blockquote><p>svn log</p></blockquote>
<p>This was run on various files and directories.</p>
<p>In short thats the core of Subversion, naturally much more to it but that was enough for my quick validation the install was working fine.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2267/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2267/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2267&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/07/04/subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>Connecting Rails To Postgres</title>
		<link>http://thewooleyswamp.wordpress.com/2010/07/01/connecting-rails-to-postgres/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/07/01/connecting-rails-to-postgres/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 03:53:49 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Postgres]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2263</guid>
		<description><![CDATA[By default Rails uses SQLite.   While handy sometimes you want a bigger or more robust database behind your Rails environment.   In this case I wanted a Postgres 8.1 database for my backend. First install the pg gem.   I installed pg 0.9.0. gem install pg You may need to install some other gems [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2263&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By default Rails uses SQLite.   While handy sometimes you want a bigger or more robust database behind your Rails environment.   In this case I wanted a Postgres 8.1 database for my backend.</p>
<p>First install the pg gem.   I installed pg 0.9.0.</p>
<blockquote><p>gem install pg</p></blockquote>
<p>You may need to install some other gems as prerequisites or and an extra package or two at the Linux OS level.   Once done you then simply edit your config/database.yml file in your rails application directory.   Here is how I setup my development environment to use Postgres :</p>
<pre>development:
  adapter: postgresql
  database: railsdb
  user: railstest
  password: *****
  host: localhost
  port: 5432</pre>
<p>Obviously **** isn&#8217;t my password but you get the idea.<br />
Now when you run a rake db:migrate the changes are made in Postgres.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2263&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/07/01/connecting-rails-to-postgres/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>Java Connection to DB2</title>
		<link>http://thewooleyswamp.wordpress.com/2010/07/01/java-connection-to-db2/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/07/01/java-connection-to-db2/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 15:26:31 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[Eclipse IDE]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2261</guid>
		<description><![CDATA[Today I setup a new MyEclipse 8.5 installation and validated our ability to connect to a db2 database instance.   Here&#8217;s how I did it&#8230;. There are many ways to do this.   In this method I use the DB2 drivers and depend on the fact that we have already cataloged the location of the database name, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2261&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I setup a new MyEclipse 8.5 installation and validated our ability to connect to a db2 database instance.   Here&#8217;s how I did it&#8230;.</p>
<p>There are many ways to do this.   In this method I use the DB2 drivers and depend on the fact that we have already cataloged the location of the database name, thus mapping to a specific IP/Port/Database name.  </p>
<p>First you need to add the DB2 drivers to your referenced libraries.   Right click on the &#8220;Referenced Libraries&#8221; under your project then select &#8220;Build path-&gt;Configure Build Path&#8221;.     Select Add External Jars on the Libraries tab of the dialog.   My file was in C:\Program Files\IBM\Sqllib\java\db2java.zip.</p>
<p>Then I ran the following java program ( formatting didn&#8217;t paste correctly due to tab issues ):</p>
<pre>import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class DB2ConnectTest {

	public static void main(String[] args) {

		Connection con1;
		String theSql;
		String dbName;
		String userName;
		String userPassword;
		PreparedStatement schemaQuery1;
		PromptUser prompt = new PromptUser();

		// Get the input
		dbName = prompt.GetInput("Database Name");
		userName = prompt.GetInput("User Name");
		userPassword = prompt.GetInput("User Password");

		String url1="jdbc:db2:"+dbName;     	     

		try{

			Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");

	       	con1 = DriverManager.getConnection ( url1, userName, userPassword ) ;
	       	theSql = "select distinct tabschema from syscat.tables order by tabschema";
	       	schemaQuery1 = con1.prepareStatement(theSql) ;
	       	System.out.print("It worked");

	       	// We don't do anything with prepared statement
	       	// We just validate we can connect and prepare ok.

	    } catch (SQLException e) {

	       	e.printStackTrace();

	    }catch ( java.lang.ClassNotFoundException e ){

	      	System.err.println("Exception "+e.getMessage() );

	    }
	}
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2261/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2261/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2261/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2261&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/07/01/java-connection-to-db2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting Up Development Environment</title>
		<link>http://thewooleyswamp.wordpress.com/2010/06/30/setting-up-development-environment/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/06/30/setting-up-development-environment/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 01:38:16 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Swamp Sludge]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2269</guid>
		<description><![CDATA[I recently switched from my older laptop to an even older, but still more powerful desktop Ubuntu environment.   I am having to redo a lot of setup on this environment that I had previously done on my laptop. I am not really able to blog about the administration and coding I perform at work due to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2269&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently switched from my older laptop to an even older, but still more powerful desktop Ubuntu environment.   I am having to redo a lot of setup on this environment that I had previously done on my laptop.</p>
<p>I am not really able to blog about the administration and coding I perform at work due to restrictions.   But I am able to blog about what I do in my spare time relative to development, so that I will.</p>
<p>IT isn&#8217;t the only thing I do in life, but it is the main thing I will blog about here.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2269/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2269&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/06/30/setting-up-development-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
		<item>
		<title>On Safari</title>
		<link>http://thewooleyswamp.wordpress.com/2010/06/30/on-safari/</link>
		<comments>http://thewooleyswamp.wordpress.com/2010/06/30/on-safari/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 20:20:27 +0000</pubDate>
		<dc:creator>luciasclay</dc:creator>
				<category><![CDATA[Swamp Sludge]]></category>

		<guid isPermaLink="false">http://thewooleyswamp.wordpress.com/?p=2259</guid>
		<description><![CDATA[A while back I took a part of my annual bonus and put it into career development.  I bought a subscription to Safari Books Online.   It seems pricy at $250 or so.   On the other hand with the price of technical books these days if one reads 5 books a year one has broken even.   I&#8217;ve already [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2259&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A while back I took a part of my annual bonus and put it into career development.  I bought a subscription to <a href="http://www.safaribooksonline.com/" target="_blank">Safari Books Online</a>.   It seems pricy at $250 or so.   On the other hand with the price of technical books these days if one reads 5 books a year one has broken even.   I&#8217;ve already broken even this year.</p>
<p>Technical books are not the sort of thing one keeps around.  They are obsolete pretty quickly.    You don&#8217;t tend to reread them either.  Once you have learned what they have to say I find myself using google to find specific answers.   But while one learns a topic I find a well presented book the best way to learn.</p>
<p>I am very partial to Oreilly books.   In fact if there is an Oreilly book on the topic I almost never buy a different one.   They are far more than a giant tome of all the documenation.   They present the matter in a way that I understand quickly.   No I&#8217;m not on comission for them.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewooleyswamp.wordpress.com/2259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewooleyswamp.wordpress.com/2259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewooleyswamp.wordpress.com/2259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewooleyswamp.wordpress.com/2259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewooleyswamp.wordpress.com/2259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewooleyswamp.wordpress.com/2259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewooleyswamp.wordpress.com/2259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewooleyswamp.wordpress.com/2259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewooleyswamp.wordpress.com/2259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewooleyswamp.wordpress.com/2259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewooleyswamp.wordpress.com/2259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewooleyswamp.wordpress.com/2259/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewooleyswamp.wordpress.com/2259/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewooleyswamp.wordpress.com/2259/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewooleyswamp.wordpress.com&amp;blog=5297483&amp;post=2259&amp;subd=thewooleyswamp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewooleyswamp.wordpress.com/2010/06/30/on-safari/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e81b48fe390e89e540e5c77a13d60b70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">testing321123</media:title>
		</media:content>
	</item>
	</channel>
</rss>
