<?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>One Weak Mind to Another</title>
	<atom:link href="http://oneweakmindtoanother.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://oneweakmindtoanother.wordpress.com</link>
	<description>A blog by Colin DeCarlo</description>
	<lastBuildDate>Thu, 19 Nov 2009 20:18:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='oneweakmindtoanother.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>One Weak Mind to Another</title>
		<link>http://oneweakmindtoanother.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://oneweakmindtoanother.wordpress.com/osd.xml" title="One Weak Mind to Another" />
	<atom:link rel='hub' href='http://oneweakmindtoanother.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Incremental XML DataSet for PHPUnit</title>
		<link>http://oneweakmindtoanother.wordpress.com/2009/11/19/incremental-xml-dataset-for-phpunit/</link>
		<comments>http://oneweakmindtoanother.wordpress.com/2009/11/19/incremental-xml-dataset-for-phpunit/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:10:03 +0000</pubDate>
		<dc:creator>cdecarlo</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://oneweakmindtoanother.wordpress.com/?p=23</guid>
		<description><![CDATA[I recently got started with proper database testing with PHPUnit and I was disappointed with my available options for fixture files. For those not familiar with the documented options, there are: Flat XML XML CSV From reading the documentation I got the impression that Flat XML is kind of like half-assing it, CSV is nice [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oneweakmindtoanother.wordpress.com&amp;blog=5610482&amp;post=23&amp;subd=oneweakmindtoanother&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently got started with proper database testing with PHPUnit and I was disappointed with my available options for fixture files.</p>
<p>For those not familiar with the documented options, there are:</p>
<ul>
<li><a href="http://www.phpunit.de/manual/current/en/database.html#database.datasets.flatxml">Flat XML</a></li>
<li><a href="http://www.phpunit.de/manual/current/en/database.html#database.datasets.xml">XML</a></li>
<li><a href="http://www.phpunit.de/manual/current/en/database.html#database.datasets.csv">CSV</a></li>
</ul>
<p>From reading the documentation I got the impression that Flat XML is kind of like half-assing it, CSV is nice but you lose control over null values and XML is the way you should probably do it.  I was OK with this, I not really crazy about half-assing my code (especially test cases), and I like verbosity, something that you get with XML and contrarily non-existent in CSV.  So I buckled down and started working on test cases and their associated XML fixture files.  I quickly came to realize a big disadvantage to using XML fixture files for my datasets and that&#8217;s that I was continuously repeating myself; I was wasting time cutting and pasting from one fixture to another.  This really bothered me, I thought it would be useful to be able to construct an XML dataset out of multiple XML &#8216;partials&#8217; so I set out to define a dataset class that would allow me to do just that.</p>
<p>I wrote a class called IncrementalXmlDataSet, it extends PHPUnit_Extensions_Database_DataSet_XmlDataSet and implements a fluid interface.  It&#8217;s not a lot of code but it gets the job done and I find it really useful.</p>
<pre>
&lt;?php

class IncrementalXmlDataSet extends PHPUnit_Extensions_Database_DataSet_XmlDataSet
{
  const XML_START = '&lt;?xml version="1.0" encoding="UTF-8" ?&gt;&lt;dataset&gt;';
  const XML_END = "&lt;/dataset&gt;";

  protected $_xmlFiles;
  protected $_xml;
  protected $_basePath;

  public function __construct(array $xmlFiles = array(), $basePath = null)
  {
    $this-&gt;_xmlFiles = $xmlFiles;
    $this-&gt;_basePath = !is_null($basePath) ? $this-&gt;setBasePath($basePath) : null;
    $this-&gt;_xml = null;
  }

  public function initDataSet()
  {
    if (is_null($this-&gt;_xml)) {
      $this-&gt;generateXML();
    }

    $this-&gt;xmlFileContents = @simplexml_load_string($this-&gt;_xml);

    if ($this-&gt;xmlFileContents === FALSE) {
      throw new InvalidArgumentException("String is not valid xml: {$this-&gt;_xml}");
    }

    $tableColumns = array();
    $tableValues = array();

    $this-&gt;getTableInfo($tableColumns, $tableValues);
    $this-&gt;createTables($tableColumns, $tableValues);

    return $this;
  }

  public function setBasePath($basePath)
  {
    /**
     * append the directory separator to the end of the base path if it's not
     * already there
    */
    if ($basePath[strlen($basePath)-1] !== DIRECTORY_SEPARATOR) {
      $basePath .= DIRECTORY_SEPARATOR;
    }

    $this-&gt;_basePath = $basePath;

    return $this;
  }

  public function addFile($xmlFile)
  {
    $xmlFile = $this-&gt;_basePath . $xmlFile;
    if (!is_file($xmlFile)) {
      throw new InvalidArgumentException("Could not find xml file: {$xmlFile}");
    }

    $this-&gt;_xmlFiles[] = $xmlFile;

    return $this;
  }

  public function generateXML()
  {
    $contents = array();
    foreach ($this-&gt;_xmlFiles as $fname) {
      $contents[] = file_get_contents($fname);
    }

    $this-&gt;_xml = self::XML_START . implode('',$contents) . self::XML_END;

    return $this;
  }

}
</pre>
<p>Using the class is really simple, here is an example:</p>
<pre>
protected function getDataSet()
{
    $ds = new IncrementalXmlDataSet()
      -&gt;setBasePath(TESTS_PATH . '/data/fixtures/partials')
      -&gt;addFile('payments.xml')
      -&gt;addFile('payments_by_credit_cards.xml')
      -&gt;initDataSet();

    return $ds;
}
</pre>
<p>And that&#8217;s it, now I&#8217;m able to create partial XML files with table data in them and glue them together as I please.</p>
<p>Yay.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oneweakmindtoanother.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oneweakmindtoanother.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oneweakmindtoanother.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oneweakmindtoanother.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oneweakmindtoanother.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oneweakmindtoanother.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oneweakmindtoanother.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oneweakmindtoanother.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oneweakmindtoanother.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oneweakmindtoanother.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oneweakmindtoanother.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oneweakmindtoanother.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oneweakmindtoanother.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oneweakmindtoanother.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oneweakmindtoanother.wordpress.com&amp;blog=5610482&amp;post=23&amp;subd=oneweakmindtoanother&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oneweakmindtoanother.wordpress.com/2009/11/19/incremental-xml-dataset-for-phpunit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f9d9e811fba91f697b10782a4c23e38?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cdecarlo</media:title>
		</media:content>
	</item>
		<item>
		<title>Join Table Inheritance With Doctrine</title>
		<link>http://oneweakmindtoanother.wordpress.com/2009/06/26/join-table-inheritance-with-doctrine/</link>
		<comments>http://oneweakmindtoanother.wordpress.com/2009/06/26/join-table-inheritance-with-doctrine/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 04:59:38 +0000</pubDate>
		<dc:creator>cdecarlo</dc:creator>
				<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Inheritance]]></category>
		<category><![CDATA[Join Table]]></category>
		<category><![CDATA[m2m]]></category>
		<category><![CDATA[many to many]]></category>
		<category><![CDATA[robot apocolyspe]]></category>

		<guid isPermaLink="false">http://oneweakmindtoanother.wordpress.com/?p=15</guid>
		<description><![CDATA[I&#8217;m sure I&#8217;m not alone when I say that besides my regular development job, I also have a few side projects that I like to work now and then. One such project I&#8217;m working on with a friend, it&#8217;s in the early stages of design/development so we&#8217;re still hashing the database schema. For this project [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oneweakmindtoanother.wordpress.com&amp;blog=5610482&amp;post=15&amp;subd=oneweakmindtoanother&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure I&#8217;m not alone when I say that besides my regular development job, I also have a few side projects that I like to work now and then.  One such project I&#8217;m working on with a friend, it&#8217;s in the early stages of design/development so we&#8217;re still hashing the database schema.  For this project we determined that it would be important to keep track of the emails that were sent by the system.</p>
<p>At first this problem seemed pretty mundane, to keep track of the emails I&#8217;d simply just map the pertinent email fields to columns in an email message table. However, after giving it more thought I found one serious weaknesses in this quick and dirty design.</p>
<ul>
<li>email messages generally have more than one recipient in the To:, Cc, and Bcc fields. Having a single column for each of fields is then problematic.
<ul>
<li> I&#8217;ll have to extend the size of the column to something irrational (a clob perhaps)</li>
<li>I&#8217;ll have to determine some method of delimiting the addresses</li>
<li>Searching for emails sent to various users becomes fairly complicated</li>
</ul>
</li>
</ul>
<p>Giving it further thought I decided it would be better to associate email messages to the users themselves.  That was a good idea but it sounded like I would have a lot of code duplication keeping track of the email recipients (To, Cc, Bcc) since they&#8217;re all very similar.  Then it dawned on me, what if the join table associating the email messages to the users used column aggregation inheritance? It sounded like a pretty good idea, almost too good.  I wasn&#8217;t sure  if would work &#8230; good news, it does.</p>
<p>Here&#8217;s what it looks like.</p>
<pre>// schema.yml
User:
  columns:
    id:
      type: integer
      autoincrement: true
      primary: true
    username:
      type: string(255)
    email:
      type: string(255)

EmailMessage:
  columns:
    id:
      type: integer
      autoincrement: true
      primary: true
    from_user_id:
      type: integer
      notnull: true
    subject:
      type: string(255)
    message:
      type: clob
  relations:
    Sender:
      type: one
      class: User
      local: from_user_id
      foreign: id
    Recipient:
      class: User
      local: recipient_id
      foreign: message_id
      refClass: EmailRecipient
    To:
      class: User
      local: recipient_id
      foreign: message_id
      refClass: ToRecipient
    Cc:
      class: User
      local: recipient_id
      foreign: message_id
      refClass: CcRecipient
    Bcc:
      class: User
      local: recipient_id
      foreign: message_id
      refClass: BccRecipient

EmailRecipient:
  columns:
   message_id:
     type: integer
   type:
     type: string(5)

ToRecipient:
  inheritance:
    extends: EmailRecipient
    type: column_aggregation
    keyField: type
    keyValue: to
  columns:
    recipient_id:
    type: integer

CcRecipient:
  inheritance:
    extends: EmailRecipient
    type: column_aggregation
    keyField: type
    keyValue: cc
  columns:
    recipient_id:
      type: integer

BccRecipient:
  inheritance:
    extends: EmailRecipient
    type: column_aggregation
    keyField: type
    keyValue: bcc
  columns:
    recipient_id:
    type: integer</pre>
<p>Now that the schema is taken care of, lets load some data.</p>
<pre>// fixtures.yml
User:
  user_1:
    username: cdecarlo
    email: cdecarlo@example.com
  user_2:
    username: bbuilder
    email: bbuilder@example.com
  user_3:
    username: wshatner
    email: wshatner@example.com
  user_4:
    username: ssnake
    email: snake@example.com

EmailMessage:
  message_1:
    Sender: user_1
    subject: This is an email
    message: This is the message body of the email.
    To: [user_2]
  message_2:
    Sender: user_1
    subject: This is another email
    message: Wow, two emails already! Better slow down.
    To: [user_3]
    Cc: [user_2]
  message_3:
    Sender: user_4
    subject: Party at my place
    message: Hey everyone, there is a party at my place tonight! Be there or be square!
    To: [user_4]
    Bcc: [user_1, user_2, user_3]</pre>
<p>Ok, now that the models are built and data is loaded it&#8217;s time to see how this works in practice.  Here are some sample queries to get you started.</p>
<pre>// find all the messages with there recipients grouped together (regardless of To, Cc, Bcc)
$ ./doctrine dql "from EmailMessage e, e.Recipients"
dql - executing: "from EmailMessage e, e.Recipients" ()
dql -   id: '1'
dql -   from_user_id: '1'
dql -   subject: 'This is an email'
dql -   message: 'This is the message body of the email.'
dql -   Recipients:
dql -     -
dql -       id: '2'
dql -       username: bbuilder
dql -       email: bbuilder@example.com
dql - -
dql -   id: '2'
dql -   from_user_id: '1'
dql -   subject: 'This is another email'
dql -   message: 'Wow, two emails already! Better slow down.'
dql -   Recipients:
dql -     -
dql -       id: '3'
dql -       username: wshatner
dql -       email: wshatner@example.com
dql -     -
dql -       id: '2'
dql -       username: bbuilder
dql -       email: bbuilder@example.com
dql - -
dql -   id: '3'
dql -   from_user_id: '4'
dql -   subject: 'Party at my place'
dql -   message: 'Hey everyone, there is a party at my place tonight! Be there or be square!'
dql -   Recipients:
dql -     -
dql -       id: '4'
dql -       username: ssnake
dql -       email: snake@example.com
dql -     -
dql -       id: '1'
dql -       username: cdecarlo
dql -       email: cdecarlo@example.com
dql -     -
dql -       id: '2'
dql -       username: bbuilder
dql -       email: bbuilder@example.com
dql -     -
dql -       id: '3'
dql -       username: wshatner
dql -       email: wshatner@example.com

// find email all the email messages with completely hydrated Sender, To, Cc, Bcc
$ ./doctrine dql "from EmailMessage e, e.Sender s, e.To to, e.Cc cc, e.Bcc bcc"
dql - executing: "from EmailMessage e, e.Sender s, e.To to, e.Cc cc, e.Bcc bcc" ()
dql -   id: '1'
dql -   from_user_id: '1'
dql -   subject: Thisisanemail
dql -   message: Thisisthemessagebodyoftheemail.
dql -   Sender:
dql -     id: '1'
dql -     username: cdecarlo
dql -     email: cdecarlo@example.com
dql -   To:
dql -     -
dql -       id: '2'
dql -       username: bbuilder
dql -       email: bbuilder@example.com
dql -   Cc: {  }
dql -   Bcc: {  }
dql - -
dql -   id: '2'
dql -   from_user_id: '1'
dql -   subject: Thisisanotheremail
dql -   message: 'Wow,twoemailsalready!Betterslowdown.'
dql -   Sender:
dql -     id: '1'
dql -     username: cdecarlo
dql -     email: cdecarlo@example.com
dql -   To:
dql -     -
dql -       id: '3'
dql -       username: wshatner
dql -       email: wshatner@example.com
dql -   Cc:
dql -     -
dql -       id: '2'
dql -       username: bbuilder
dql -       email: bbuilder@example.com
dql -   Bcc: {  }
dql - -
dql -   id: '3'
dql -   from_user_id: '4'
dql -   subject: Partyatmyplace
dql -   message: 'Heyeveryone,thereisapartyatmyplacetonight!Bethereorbesquare!'
dql -   Sender:
dql -     id: '4'
dql -     username: ssnake
dql -     email: snake@example.com
dql -   To:
dql -     -
dql -       id: '4'
dql -       username: ssnake
dql -       email: snake@example.com
dql -   Cc: {  }
dql -   Bcc:
dql -     -
dql -       id: '1'
dql -       username: cdecarlo
dql -       email: cdecarlo@example.com
dql -     -
dql -       id: '2'
dql -       username: bbuilder
dql -       email: bbuilder@example.com
dql -     -
dql -       id: '3'
dql -       username: wshatner
dql -       email: wshatner@example.com

// find messages where the sender and the To recipient are the same
$ ./doctrine dql "from EmailMessage e, e.Sender s, e.To t where s.username = t.username"
dql - executing: "from EmailMessage e, e.Sender s, e.To t where s.username = t.username" ()
dql -   id: '3'
dql -   from_user_id: '4'
dql -   subject: 'Party at my place'
dql -   message: 'Hey everyone, there is a party at my place tonight! Be there or be square!'
dql -   Sender:
dql -     id: '4'
dql -     username: ssnake
dql -     email: snake@example.com
dql -   To:
dql -     -
dql -       id: '4'
dql -       username: ssnake
dql -       email: snake@example.com</pre>
<p>That&#8217;s it.  The best thing is that Doctrine handles all the heavy lifting for you, no custom code.  It&#8217;s just a nice way to peice together some core behaviours.  What&#8217;s also great about this approach is that it&#8217;s easily generalised.  For instance instead of Email Messages you could be modeling:</p>
<ul>
<li>Forums and Users where users can be Administrators, Moderators, and General Users</li>
<li>Departments and Employees where employees can be Directors, Managers, and Grunts</li>
<li>Boxes and Shapes where shapes can be squares, triangles, and circles</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oneweakmindtoanother.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oneweakmindtoanother.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oneweakmindtoanother.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oneweakmindtoanother.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oneweakmindtoanother.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oneweakmindtoanother.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oneweakmindtoanother.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oneweakmindtoanother.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oneweakmindtoanother.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oneweakmindtoanother.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oneweakmindtoanother.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oneweakmindtoanother.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oneweakmindtoanother.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oneweakmindtoanother.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oneweakmindtoanother.wordpress.com&amp;blog=5610482&amp;post=15&amp;subd=oneweakmindtoanother&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oneweakmindtoanother.wordpress.com/2009/06/26/join-table-inheritance-with-doctrine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f9d9e811fba91f697b10782a4c23e38?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cdecarlo</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s getting drafty in here</title>
		<link>http://oneweakmindtoanother.wordpress.com/2008/11/22/its-getting-drafty-in-here/</link>
		<comments>http://oneweakmindtoanother.wordpress.com/2008/11/22/its-getting-drafty-in-here/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 22:43:36 +0000</pubDate>
		<dc:creator>cdecarlo</dc:creator>
				<category><![CDATA[Symfony Forms Framework]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[programmi]]></category>
		<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://oneweakmindtoanother.wordpress.com/?p=12</guid>
		<description><![CDATA[I just started work on a little project of mine. The overall goal is to figure out how Symfony Forms work, I&#8217;m writing it all down and by the end I hope to have a pretty thorough tutorial. I&#8217;m still trying to come up with a title, I was thinking maybe &#8220;Symfony Forms: What they [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oneweakmindtoanother.wordpress.com&amp;blog=5610482&amp;post=12&amp;subd=oneweakmindtoanother&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just started work on a little project of mine. The overall goal is to figure out how Symfony Forms work, I&#8217;m writing it all down and by the end I hope to have a pretty thorough tutorial.  I&#8217;m still trying to come up with a title, I was thinking maybe &#8220;Symfony Forms: What they wanted you to know but didn&#8217;t have the time to tell you&#8221;. It&#8217;s a little wordy, but I think it gets the point across.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oneweakmindtoanother.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oneweakmindtoanother.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oneweakmindtoanother.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oneweakmindtoanother.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oneweakmindtoanother.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oneweakmindtoanother.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oneweakmindtoanother.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oneweakmindtoanother.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oneweakmindtoanother.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oneweakmindtoanother.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oneweakmindtoanother.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oneweakmindtoanother.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oneweakmindtoanother.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oneweakmindtoanother.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oneweakmindtoanother.wordpress.com&amp;blog=5610482&amp;post=12&amp;subd=oneweakmindtoanother&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oneweakmindtoanother.wordpress.com/2008/11/22/its-getting-drafty-in-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5f9d9e811fba91f697b10782a4c23e38?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cdecarlo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
