<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>And Slaters Go Plop &#187; blog</title>
	<atom:link href="http://damian.peterson.net.nz/tag/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://damian.peterson.net.nz</link>
	<description>The Bloggery of Damian Peterson</description>
	<lastBuildDate>Mon, 19 Jul 2010 21:01:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Calculate Your Blogging ROI</title>
		<link>http://damian.peterson.net.nz/2008/05/09/calculate-your-blogging-roi/</link>
		<comments>http://damian.peterson.net.nz/2008/05/09/calculate-your-blogging-roi/#comments</comments>
		<pubDate>Fri, 09 May 2008 09:24:47 +0000</pubDate>
		<dc:creator>Damian</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tired-and-bored]]></category>

		<guid isPermaLink="false">http://damian.peterson.net.nz/?p=138</guid>
		<description><![CDATA[Ever wanted to know what blog posts you write require the least effort and get the most comments? No? Well I did and I threw together a bit of SQL to help me identify the areas I can improve upon if I&#8217;m to become a serious challenger for the title of the Laziest Blogger Ever&#8482;: [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to know what blog posts you write require the least effort and get the most comments? No? Well I did and I threw together a bit of SQL to help me identify the areas I can improve upon if I&#8217;m to become a serious challenger for the title of the Laziest Blogger Ever&trade;:</p>
<blockquote><p><span style="color: #0000ff;"><code>SELECT p.post_title, ROUND((SUM(LENGTH(w.comment_content))/LENGTH(p.post_content))*100) AS roi, LENGTH(p.post_content) AS post_length, SUM(LENGTH(w.comment_content)) AS comment_length FROM blog.wp_posts p INNER JOIN blog.wp_comments w ON w.comment_post_ID = p.ID GROUP BY p.ID ORDER BY roi DESC LIMIT 10</code></span></p></blockquote>
<p>It returns the top 10 blog posts ranked by the percentage return on a post measured by the number of characters invested in the opening post compared to the number of characters returned in the comments.</p>
<p>My top 3:</p>
<ol>
<li><a href="http://damian.peterson.net.nz/2008/03/06/free-will/">Free Will</a> (43,774% ROI)</li>
<li><a href="http://damian.peterson.net.nz/2008/01/07/last-western-heretic/">Last Western Heretic</a> (5,304% ROI)</li>
<li><a href="http://damian.peterson.net.nz/2008/02/29/the-location-of-jesus/">The Location of Jesus</a> (5,223% ROI)</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://damian.peterson.net.nz/2008/05/09/calculate-your-blogging-roi/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>
