<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for My Life IN/OF Pictures</title>
	<atom:link href="http://scottjarvie.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://scottjarvie.wordpress.com</link>
	<description>Not my professional pictures... but just as cool.</description>
	<pubDate>Fri, 25 Jul 2008 18:51:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on I think I have a death wish by srjarvie</title>
		<link>http://scottjarvie.wordpress.com/2008/07/24/i-think-i-have-a-death-wish/#comment-858</link>
		<dc:creator>srjarvie</dc:creator>
		<pubDate>Fri, 25 Jul 2008 13:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=291#comment-858</guid>
		<description>ha ha well atleast I know you will be there for me when I get married!</description>
		<content:encoded><![CDATA[<p>ha ha well atleast I know you will be there for me when I get married!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I think I have a death wish by vcpcreations</title>
		<link>http://scottjarvie.wordpress.com/2008/07/24/i-think-i-have-a-death-wish/#comment-854</link>
		<dc:creator>vcpcreations</dc:creator>
		<pubDate>Thu, 24 Jul 2008 19:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=291#comment-854</guid>
		<description>lol... good luck!</description>
		<content:encoded><![CDATA[<p>lol&#8230; good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DB puzzle&#8230; care to take a crack? by Joseph</title>
		<link>http://scottjarvie.wordpress.com/2008/07/06/db-puzzle-care-to-take-a-crack/#comment-852</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Tue, 15 Jul 2008 09:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=278#comment-852</guid>
		<description>please excuse my missing closing tag on that last link.</description>
		<content:encoded><![CDATA[<p>please excuse my missing closing tag on that last link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DB puzzle&#8230; care to take a crack? by Joseph</title>
		<link>http://scottjarvie.wordpress.com/2008/07/06/db-puzzle-care-to-take-a-crack/#comment-851</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Tue, 15 Jul 2008 09:36:18 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=278#comment-851</guid>
		<description>Hey, you know who I am.  Anyway, just thought I'd drop you a line and see if you're still in need of my help.  A good way to set up a database for this sort of thing might be to take a look at &lt;a href="http://www.mediawiki.org/" title="mediawiki.org" rel="nofollow"&gt; to see how they set up their database.

Another thing to take a look at is image repository sites like &lt;a href="http://www.meme-archive.org/post/list" title="motivational images (NSFW?)" rel="nofollow"&gt; which has images, and images have tags, you can search on these meta tags, etc.  People can edit tags create new tags, add, remove, etc etc.  A more professional webpage that is not interactive is &lt;a href="http://www.jupiterimages.com/" title="jupiterimages.org" rel="nofollow"&gt;.  Similar concept except they beg for money.

As for the database, I would suggest something like this
table images
 int `index` auto_increment primary key ''gives you ~4billion indexs
 text `path` ''path to file
 varchar(40) `hash` ''md5 has of file for unicity (thus you dont get double uploads)
 text `tags` ''holds the tags
 int `poster` ''holds user id of poster
 int `date` ''date image is submitted
 int `status` ''a status variable? flagged? approved? deleted? archived? etc.
 ''add what ever you want.. etc.

table tags
 int `index` auto_increment primary key
 varchar(120) `tag`
 int `count` ''counts instances of tags, (this table is for quick access of amounts w/o massive searching

table comments
 int `index` auto_increment primary key
 int `image` ''images index that the comment belongs to
 text `comment`

table logs, query_cache, preview_images, etc  (lots can be done to speed up the queries at the expense of memory and harddrive space)


For those of you who are quite versed in sql, please feel free to correct me.  I'm sure there is something I could be doing better (like using blobs instead of text fields)!

Hope this helps
Joseph</description>
		<content:encoded><![CDATA[<p>Hey, you know who I am.  Anyway, just thought I&#8217;d drop you a line and see if you&#8217;re still in need of my help.  A good way to set up a database for this sort of thing might be to take a look at <a href="http://www.mediawiki.org/" title="mediawiki.org" rel="nofollow"> to see how they set up their database.</p>
<p>Another thing to take a look at is image repository sites like </a><a href="http://www.meme-archive.org/post/list" title="motivational images (NSFW?)" rel="nofollow"> which has images, and images have tags, you can search on these meta tags, etc.  People can edit tags create new tags, add, remove, etc etc.  A more professional webpage that is not interactive is </a><a href="http://www.jupiterimages.com/" title="jupiterimages.org" rel="nofollow">.  Similar concept except they beg for money.</p>
<p>As for the database, I would suggest something like this<br />
table images<br />
 int `index` auto_increment primary key &#8221;gives you ~4billion indexs<br />
 text `path` &#8221;path to file<br />
 varchar(40) `hash` &#8221;md5 has of file for unicity (thus you dont get double uploads)<br />
 text `tags` &#8221;holds the tags<br />
 int `poster` &#8221;holds user id of poster<br />
 int `date` &#8221;date image is submitted<br />
 int `status` &#8221;a status variable? flagged? approved? deleted? archived? etc.<br />
 &#8221;add what ever you want.. etc.</p>
<p>table tags<br />
 int `index` auto_increment primary key<br />
 varchar(120) `tag`<br />
 int `count` &#8221;counts instances of tags, (this table is for quick access of amounts w/o massive searching</p>
<p>table comments<br />
 int `index` auto_increment primary key<br />
 int `image` &#8221;images index that the comment belongs to<br />
 text `comment`</p>
<p>table logs, query_cache, preview_images, etc  (lots can be done to speed up the queries at the expense of memory and harddrive space)</p>
<p>For those of you who are quite versed in sql, please feel free to correct me.  I&#8217;m sure there is something I could be doing better (like using blobs instead of text fields)!</p>
<p>Hope this helps<br />
Joseph</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Favorite Albums of All Time Top 12 by donstuff</title>
		<link>http://scottjarvie.wordpress.com/2008/07/10/favorite-albums-of-all-time-top-12/#comment-842</link>
		<dc:creator>donstuff</dc:creator>
		<pubDate>Thu, 10 Jul 2008 23:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=288#comment-842</guid>
		<description>Good stuff.</description>
		<content:encoded><![CDATA[<p>Good stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DB puzzle&#8230; care to take a crack? by Val</title>
		<link>http://scottjarvie.wordpress.com/2008/07/06/db-puzzle-care-to-take-a-crack/#comment-840</link>
		<dc:creator>Val</dc:creator>
		<pubDate>Wed, 09 Jul 2008 03:00:36 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=278#comment-840</guid>
		<description>Hi, my name's Val. I'm a rising sophomore at Princeton University, you can find my 6 months out of date resume at http://www.princeton.edu/~vkarpov/resume.pdf . Currently I'm working as lead developer for a startup in Philadelphia, but the development is slowly winding down so I'm starting to get more free time. But basically, I have a ton of experience with SQL, the startup I'm working with involves me designing and managing a 30+ table MySQL database and interacting with it through PHP and Python with Javascript on the front end. I've also done a few side projects with MySQL, such as a plugin for NASA's WorldWind software for plotting the location of visitors to your website on a 3D model of the Earth based on their IP addresses and a course selection web tool for Princeton University. I'm interested to discuss what you're considering, shoot me an email at vkarpov (at) princeton.edu.</description>
		<content:encoded><![CDATA[<p>Hi, my name&#8217;s Val. I&#8217;m a rising sophomore at Princeton University, you can find my 6 months out of date resume at <a href="http://www.princeton.edu/~vkarpov/resume.pdf" rel="nofollow">http://www.princeton.edu/~vkarpov/resume.pdf</a> . Currently I&#8217;m working as lead developer for a startup in Philadelphia, but the development is slowly winding down so I&#8217;m starting to get more free time. But basically, I have a ton of experience with SQL, the startup I&#8217;m working with involves me designing and managing a 30+ table MySQL database and interacting with it through PHP and Python with Javascript on the front end. I&#8217;ve also done a few side projects with MySQL, such as a plugin for NASA&#8217;s WorldWind software for plotting the location of visitors to your website on a 3D model of the Earth based on their IP addresses and a course selection web tool for Princeton University. I&#8217;m interested to discuss what you&#8217;re considering, shoot me an email at vkarpov (at) princeton.edu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DB puzzle&#8230; care to take a crack? by scottjarvie</title>
		<link>http://scottjarvie.wordpress.com/2008/07/06/db-puzzle-care-to-take-a-crack/#comment-839</link>
		<dc:creator>scottjarvie</dc:creator>
		<pubDate>Tue, 08 Jul 2008 05:08:42 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=278#comment-839</guid>
		<description>Mitch: I don't use AIM but you can contact me through my email jarvie (at) jarviedigital.com</description>
		<content:encoded><![CDATA[<p>Mitch: I don&#8217;t use AIM but you can contact me through my email jarvie (at) jarviedigital.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DB puzzle&#8230; care to take a crack? by Mitch</title>
		<link>http://scottjarvie.wordpress.com/2008/07/06/db-puzzle-care-to-take-a-crack/#comment-838</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Tue, 08 Jul 2008 03:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=278#comment-838</guid>
		<description>I'm the webmaster of my college radio station...I used it as an excuse to learn php and mysql. I also manage all of the sql databases and did my senior design project using mysql databases and network anomaly detection. I'm interested in whatever you got going, let me know.

AIM: eadaionx</description>
		<content:encoded><![CDATA[<p>I&#8217;m the webmaster of my college radio station&#8230;I used it as an excuse to learn php and mysql. I also manage all of the sql databases and did my senior design project using mysql databases and network anomaly detection. I&#8217;m interested in whatever you got going, let me know.</p>
<p>AIM: eadaionx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The &#8220;Don&#8217;t spam twitter&#8221; debate is off track by Tim Rueb</title>
		<link>http://scottjarvie.wordpress.com/2008/06/20/the-dont-spam-twitter-debate-is-off-track/#comment-830</link>
		<dc:creator>Tim Rueb</dc:creator>
		<pubDate>Fri, 20 Jun 2008 16:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=273#comment-830</guid>
		<description>I've decide to switch most of my work over to Google Apps, so Google Reader is my choice at this time.  It helps control the clutter for me.  Twitter and clutter control are not easy.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve decide to switch most of my work over to Google Apps, so Google Reader is my choice at this time.  It helps control the clutter for me.  Twitter and clutter control are not easy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The &#8220;Don&#8217;t spam twitter&#8221; debate is off track by scottjarvie</title>
		<link>http://scottjarvie.wordpress.com/2008/06/20/the-dont-spam-twitter-debate-is-off-track/#comment-829</link>
		<dc:creator>scottjarvie</dc:creator>
		<pubDate>Fri, 20 Jun 2008 15:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=273#comment-829</guid>
		<description>I'm not really totally familiar with the whole debate to be honest.
I've just been following this discussion 
http://www.income.com/blog/2008/06/20/dont-spam-twitter-or-you-will-die-a-horrible-death/#comment-84990

I've heard the phrase "Don't Spam Twitter" and I suppose i'm just wondering what it's all about.

Part of my problem is I haven't really fallen in love with a reader and added everyone. 
I've tried a couple.
For now it's when most people find their posts good enough to twitter about that I read them.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not really totally familiar with the whole debate to be honest.<br />
I&#8217;ve just been following this discussion<br />
<a href="http://www.income.com/blog/2008/06/20/dont-spam-twitter-or-you-will-die-a-horrible-death/#comment-84990" rel="nofollow">http://www.income.com/blog/2008/06/20/dont-spam-twitter-or-you-will-die-a-horrible-death/#comment-84990</a></p>
<p>I&#8217;ve heard the phrase &#8220;Don&#8217;t Spam Twitter&#8221; and I suppose i&#8217;m just wondering what it&#8217;s all about.</p>
<p>Part of my problem is I haven&#8217;t really fallen in love with a reader and added everyone.<br />
I&#8217;ve tried a couple.<br />
For now it&#8217;s when most people find their posts good enough to twitter about that I read them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The &#8220;Don&#8217;t spam twitter&#8221; debate is off track by Tim Rueb</title>
		<link>http://scottjarvie.wordpress.com/2008/06/20/the-dont-spam-twitter-debate-is-off-track/#comment-828</link>
		<dc:creator>Tim Rueb</dc:creator>
		<pubDate>Fri, 20 Jun 2008 15:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=273#comment-828</guid>
		<description>I don't think the 'just updated my blog/podcast' is the issue.  It's the 'just took a sip of coke' posts that most people I've read are fuming about.  Or the, 'back at my desk from the bathroom' tweets.

I'm with you, if I follow someone because I liked their blog or podcasts, I am curious what they are working on next.  But I also have a reader to tell me when something is newly posted also,I don't need twitter for that.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think the &#8216;just updated my blog/podcast&#8217; is the issue.  It&#8217;s the &#8216;just took a sip of coke&#8217; posts that most people I&#8217;ve read are fuming about.  Or the, &#8216;back at my desk from the bathroom&#8217; tweets.</p>
<p>I&#8217;m with you, if I follow someone because I liked their blog or podcasts, I am curious what they are working on next.  But I also have a reader to tell me when something is newly posted also,I don&#8217;t need twitter for that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugins by Vijay</title>
		<link>http://scottjarvie.wordpress.com/2008/06/18/wordpress-plugins/#comment-827</link>
		<dc:creator>Vijay</dc:creator>
		<pubDate>Fri, 20 Jun 2008 07:08:58 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=271#comment-827</guid>
		<description>Hi. I am new to wordpress can you please help me in customizing my wordpress i had to add an extra link as you have added photo events next to home and about..please help me..</description>
		<content:encoded><![CDATA[<p>Hi. I am new to wordpress can you please help me in customizing my wordpress i had to add an extra link as you have added photo events next to home and about..please help me..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on No Effect by Embarrassed</title>
		<link>http://scottjarvie.wordpress.com/2008/05/02/no-effect/#comment-826</link>
		<dc:creator>Embarrassed</dc:creator>
		<pubDate>Thu, 19 Jun 2008 01:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=266#comment-826</guid>
		<description>Somehow i missed the point. Probably lost in translation :) Anyway ... nice blog to visit.

cheers, Embarrassed.</description>
		<content:encoded><![CDATA[<p>Somehow i missed the point. Probably lost in translation <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Anyway &#8230; nice blog to visit.</p>
<p>cheers, Embarrassed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Photographer Tips #1 by scottjarvie</title>
		<link>http://scottjarvie.wordpress.com/2008/06/16/new-photographer-tips-1/#comment-823</link>
		<dc:creator>scottjarvie</dc:creator>
		<pubDate>Mon, 16 Jun 2008 19:15:03 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=270#comment-823</guid>
		<description>Oh yeah I think I was probably just touching the surface of ways to show off your pictures.
Flickr is also another free way.

I still think that for an aspiring pro photographer a blog is a good way to go. People are beginning to expect photographers to have a blog and people enjoy and used to looking at photographers blogs (that's important)
there are tons of options it's good to pick something that the majority of people are accustomed to doing. And that supports the status you're aiming for.
Though a lot of people use flickr it doesn't really scream professional (or trying to be) if that's all you have. Granted a lot of photographers use flickr... in conjuction (not only)

I on the other hand use smugmug.
with a pro account they give me UNLIMITED storage (up to 100GB so far)
and they let me sell pictures to other people (which I don't really try doing anyway)

scott</description>
		<content:encoded><![CDATA[<p>Oh yeah I think I was probably just touching the surface of ways to show off your pictures.<br />
Flickr is also another free way.</p>
<p>I still think that for an aspiring pro photographer a blog is a good way to go. People are beginning to expect photographers to have a blog and people enjoy and used to looking at photographers blogs (that&#8217;s important)<br />
there are tons of options it&#8217;s good to pick something that the majority of people are accustomed to doing. And that supports the status you&#8217;re aiming for.<br />
Though a lot of people use flickr it doesn&#8217;t really scream professional (or trying to be) if that&#8217;s all you have. Granted a lot of photographers use flickr&#8230; in conjuction (not only)</p>
<p>I on the other hand use smugmug.<br />
with a pro account they give me UNLIMITED storage (up to 100GB so far)<br />
and they let me sell pictures to other people (which I don&#8217;t really try doing anyway)</p>
<p>scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Photographer Tips #1 by papa_rod</title>
		<link>http://scottjarvie.wordpress.com/2008/06/16/new-photographer-tips-1/#comment-822</link>
		<dc:creator>papa_rod</dc:creator>
		<pubDate>Mon, 16 Jun 2008 18:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=270#comment-822</guid>
		<description>You forgot to mention picasaweb. You get almost a gig of free storage .

http://picasaweb.google.com/</description>
		<content:encoded><![CDATA[<p>You forgot to mention picasaweb. You get almost a gig of free storage .</p>
<p><a href="http://picasaweb.google.com/" rel="nofollow">http://picasaweb.google.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on No Effect by David S.</title>
		<link>http://scottjarvie.wordpress.com/2008/05/02/no-effect/#comment-815</link>
		<dc:creator>David S.</dc:creator>
		<pubDate>Sun, 04 May 2008 07:16:39 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=266#comment-815</guid>
		<description>I've had problems with sleepiness behind the wheel.  I even wrecked a car once by falling asleep, so I'm especially vigilant about this now.  Energy drinks have some effect, but not as much as one might hope.  I've found it helpful to have something on hand that I can eat almost continuously, like Skittles or Starburst.

Sadly, I just haven't found any foolproof cure, so on long trips I'll usually just pull over somewhere and sleep for half an hour or more.

Surprisingly, this hasn't been much of a problem for me recently.  I have an hour-long drive from work in the wee hours of the morning, and yet I've had very little trouble.  I guess it's partly a result of successfully adjusting my sleep pattern and getting a good quantity of sleep daily, and partly due to my preemptive action--like I said, I have candy on hand, and I drink fizzy things (I find that, for purposes of maintaining wakefulness, as opposed to physical energy, regular soft drinks can usually function about as well as energy drinks).

So, I guess my advice, in summary, is: eat stuff.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve had problems with sleepiness behind the wheel.  I even wrecked a car once by falling asleep, so I&#8217;m especially vigilant about this now.  Energy drinks have some effect, but not as much as one might hope.  I&#8217;ve found it helpful to have something on hand that I can eat almost continuously, like Skittles or Starburst.</p>
<p>Sadly, I just haven&#8217;t found any foolproof cure, so on long trips I&#8217;ll usually just pull over somewhere and sleep for half an hour or more.</p>
<p>Surprisingly, this hasn&#8217;t been much of a problem for me recently.  I have an hour-long drive from work in the wee hours of the morning, and yet I&#8217;ve had very little trouble.  I guess it&#8217;s partly a result of successfully adjusting my sleep pattern and getting a good quantity of sleep daily, and partly due to my preemptive action&#8211;like I said, I have candy on hand, and I drink fizzy things (I find that, for purposes of maintaining wakefulness, as opposed to physical energy, regular soft drinks can usually function about as well as energy drinks).</p>
<p>So, I guess my advice, in summary, is: eat stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on This blogging thing by melissa</title>
		<link>http://scottjarvie.wordpress.com/2008/04/29/this-blogging-thing/#comment-812</link>
		<dc:creator>melissa</dc:creator>
		<pubDate>Tue, 29 Apr 2008 14:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=265#comment-812</guid>
		<description>So, about that previous quote... let's implement that here. I just realized this is the "old blog" with an updated scheme. You are, in fact, NOT a poophead, as previously commented.</description>
		<content:encoded><![CDATA[<p>So, about that previous quote&#8230; let&#8217;s implement that here. I just realized this is the &#8220;old blog&#8221; with an updated scheme. You are, in fact, NOT a poophead, as previously commented.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on This blogging thing by melissa</title>
		<link>http://scottjarvie.wordpress.com/2008/04/29/this-blogging-thing/#comment-811</link>
		<dc:creator>melissa</dc:creator>
		<pubDate>Tue, 29 Apr 2008 13:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=265#comment-811</guid>
		<description>Yeah you poophead! I kept checking your old blog only to find NO updates!</description>
		<content:encoded><![CDATA[<p>Yeah you poophead! I kept checking your old blog only to find NO updates!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on With the breath of Kindness by melissa</title>
		<link>http://scottjarvie.wordpress.com/2008/04/29/with-the-breath-of-kindness/#comment-810</link>
		<dc:creator>melissa</dc:creator>
		<pubDate>Tue, 29 Apr 2008 13:58:24 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=264#comment-810</guid>
		<description>Can I ever relate! I have a tendency to embarrass myself with words on a regular basis. I always say too much and it always gets awkward or deadly silent afterwards. So that quote is a lifesaver for me, and I plan on memorizing it.</description>
		<content:encoded><![CDATA[<p>Can I ever relate! I have a tendency to embarrass myself with words on a regular basis. I always say too much and it always gets awkward or deadly silent afterwards. So that quote is a lifesaver for me, and I plan on memorizing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Memories: Pictures, Writing&#8230; and who I met yesterday! by melissa</title>
		<link>http://scottjarvie.wordpress.com/2008/04/27/memories-pictures-writing-and-who-i-met-yesterday/#comment-809</link>
		<dc:creator>melissa</dc:creator>
		<pubDate>Tue, 29 Apr 2008 13:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://scottjarvie.wordpress.com/?p=263#comment-809</guid>
		<description>First of all, being tagged is when I fill out a survey of some sort, and then I "tag" someone to also fill it out. So when David fills his out, he will tag you and you will have to post the same post with your own answers.

Secondly, I hope she is the girl for you. You are such a kind, giving, attractive (that's right David, I said attractive), and compassionate person. You deserve to fulfill your dream of having a family. 

Also, I always read the long posts. They tend to be more interesting. I mean, clearly whoever is writing it has something important to say or it wouldn't be so long.</description>
		<content:encoded><![CDATA[<p>First of all, being tagged is when I fill out a survey of some sort, and then I &#8220;tag&#8221; someone to also fill it out. So when David fills his out, he will tag you and you will have to post the same post with your own answers.</p>
<p>Secondly, I hope she is the girl for you. You are such a kind, giving, attractive (that&#8217;s right David, I said attractive), and compassionate person. You deserve to fulfill your dream of having a family. </p>
<p>Also, I always read the long posts. They tend to be more interesting. I mean, clearly whoever is writing it has something important to say or it wouldn&#8217;t be so long.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
