<?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>Nightgunner5 on bbPress</title>
	<atom:link href="http://nightgunner5.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nightgunner5.wordpress.com</link>
	<description>All bbPress, all the time</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:03:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nightgunner5.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/fb5a5df0ec08c8924a629eb486813800?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Nightgunner5 on bbPress</title>
		<link>http://nightgunner5.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nightgunner5.wordpress.com/osd.xml" title="Nightgunner5 on bbPress" />
	<atom:link rel='hub' href='http://nightgunner5.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Why it&#8217;s really hard to make plugins sometimes</title>
		<link>http://nightgunner5.wordpress.com/2011/04/23/why-its-really-hard-to-make-plugins-sometimes/</link>
		<comments>http://nightgunner5.wordpress.com/2011/04/23/why-its-really-hard-to-make-plugins-sometimes/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 16:43:09 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/?p=324</guid>
		<description><![CDATA[Let&#8217;s assume you&#8217;re a plugin author and you want to write a plugin that checks important data for spam. Let&#8217;s also assume that the important data is handled by this function: You have absolutely no way (short of hooking the database&#8217;s insert function somehow) to modify the status before the important data goes into the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=324&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s assume you&#8217;re a plugin author and you want to write a plugin that checks important data for spam. Let&#8217;s also assume that the important data is handled by this function:</p>
<p><pre class="brush: php; first-line: 9001;">
    // WEAPON LOCKED
}
function insert_some_important_data( $title, $content = '' ) {
    global $database;

    return $database-&gt;insert( $database-&gt;important_data_table, array(
        'title'   =&gt; $title,
        'content' =&gt; $content,
        'status'  =&gt; 'not-spam'
    ) );
}</pre></p>
<p>You have absolutely no way (short of hooking the database&#8217;s insert function somehow) to modify the status before the important data goes into the database. It would also be very difficult to find out when the data is inserted into the database. The logical next step is to complain until something like this is added:</p>
<p><pre class="brush: php; first-line: 9001;">
    // WEAPON LOCKED
}
function insert_some_important_data( $title, $content = '' ) {
    global $database;

    return $database-&gt;insert( $database-&gt;important_data_table, array(
        'title'   =&gt; apply_filters( 'important_data_title',   $title,     $title, $content ),
        'content' =&gt; apply_filters( 'important_data_content', $content,   $title, $content ),
        'status'  =&gt; apply_filters( 'important_data_status',  'not-spam', $title, $content ),
    ) );
}</pre></p>
<p>Now, you can modify the data before it hits the database. But what if you want to stop it from going into the database in the first place? Cue another complaining session:</p>
<p><pre class="brush: php; first-line: 9001;">
    // WEAPON LOCKED
}
function insert_some_important_data( $title, $content = '' ) {
    global $database;

    if ( !apply_filters( 'important_data_should_insert', true, $title, $content ) )
            return false;
    return $database-&gt;insert( $database-&gt;important_data_table, array(
        'title'   =&gt; apply_filters( 'important_data_title',   $title,     $title, $content ),
        'content' =&gt; apply_filters( 'important_data_content', $content,   $title, $content ),
        'status'  =&gt; apply_filters( 'important_data_status',  'not-spam', $title, $content ),
    ) );
}</pre></p>
<p>Now you can cancel the data from hitting the database. However, there&#8217;s still no notification <em>after</em> the data is sent to the database. This cycle can go on forever if you&#8217;re not careful. Your function will eventually end up being eight million lines long.</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/324/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=324&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/04/23/why-its-really-hard-to-make-plugins-sometimes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>
	</item>
		<item>
		<title>Now you&#8217;re not required to lose your data</title>
		<link>http://nightgunner5.wordpress.com/2011/04/22/now-youre-not-required-to-lose-your-data/</link>
		<comments>http://nightgunner5.wordpress.com/2011/04/22/now-youre-not-required-to-lose-your-data/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 19:08:54 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[link]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/2011/04/22/now-youre-not-required-to-lose-your-data/</guid>
		<description><![CDATA[Now, you&#8217;re not required to lose your data!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=323&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bbpress.org/forums/topic/bbpress-standalone-to-plugin-converter-beta-2">Now, you&#8217;re not required to lose your data!</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/323/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=323&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/04/22/now-youre-not-required-to-lose-your-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>
	</item>
		<item>
		<title>How I feel after developing during intermittent power outages</title>
		<link>http://nightgunner5.wordpress.com/2011/04/03/how-i-feel-after-developing-during-intermittent-power-outages/</link>
		<comments>http://nightgunner5.wordpress.com/2011/04/03/how-i-feel-after-developing-during-intermittent-power-outages/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 16:59:26 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[AutoRank]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/?p=320</guid>
		<description><![CDATA[Oh yeah, AutoRank is coming soon as a plugin plugin Tagged: AutoRank<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=320&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://nightgunner5.files.wordpress.com/2011/04/autorank-plugin-plugin.png"><img class="aligncenter size-large wp-image-321" title="AutoRank Plugin Plugin" src="http://nightgunner5.files.wordpress.com/2011/04/autorank-plugin-plugin.png?w=648&#038;h=558" alt="AutoRank Plugin Plugin" width="648" height="558" /></a></p>
<p>Oh yeah, AutoRank is coming soon as a plugin plugin</p><br /> Tagged: <a href='http://nightgunner5.wordpress.com/tag/autorank/'>AutoRank</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/320/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=320&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/04/03/how-i-feel-after-developing-during-intermittent-power-outages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>

		<media:content url="http://nightgunner5.files.wordpress.com/2011/04/autorank-plugin-plugin.png?w=648" medium="image">
			<media:title type="html">AutoRank Plugin Plugin</media:title>
		</media:content>
	</item>
		<item>
		<title>Guess what just happened.</title>
		<link>http://nightgunner5.wordpress.com/2011/03/12/guess-what-just-happened/</link>
		<comments>http://nightgunner5.wordpress.com/2011/03/12/guess-what-just-happened/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 23:02:27 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[status]]></category>
		<category><![CDATA[Delete All Bozos]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/?p=318</guid>
		<description><![CDATA[On a forum with over 700 users that didn&#8217;t have Bozo Users activated, Delete All Bozos can&#8217;t wasn&#8217;t previously able to help. Guess what just happened. Tagged: Delete All Bozos<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=318&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On a forum with over 700 users that didn&#8217;t have Bozo Users activated, Delete All Bozos <del>can&#8217;t</del> <em>wasn&#8217;t previously able to</em> help.</p>
<p><a href="http://nightgunner5.files.wordpress.com/2011/03/delete-all-bozos-0001.png"><img class="alignnone size-large wp-image-317" title="Delete All Bozos" src="http://nightgunner5.files.wordpress.com/2011/03/delete-all-bozos-0001.png?w=648&#038;h=446" alt="Delete All Bozos" width="648" height="446" /></a></p>
<p>Guess what just happened.</p><br /> Tagged: <a href='http://nightgunner5.wordpress.com/tag/delete-all-bozos/'>Delete All Bozos</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=318&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/03/12/guess-what-just-happened/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>

		<media:content url="http://nightgunner5.files.wordpress.com/2011/03/delete-all-bozos-0001.png?w=648" medium="image">
			<media:title type="html">Delete All Bozos</media:title>
		</media:content>
	</item>
		<item>
		<title>bbPM Plugin Plugin</title>
		<link>http://nightgunner5.wordpress.com/2011/03/12/bbpm-plugin-plugin/</link>
		<comments>http://nightgunner5.wordpress.com/2011/03/12/bbpm-plugin-plugin/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 18:00:15 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[bbPM]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/?p=314</guid>
		<description><![CDATA[bbPM is the first plugin I will convert from bbPress Standalone to bbPress Plugin. This makes bbPM the first Plugin Plugin I&#8217;ve made. The screenshot above is unedited, and it shows my current progress in rewriting bbPM from the ground up. PM threads are available only to the users specified when the PM is created. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=314&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://nightgunner5.files.wordpress.com/2011/03/bbpm-plugin-plugin-0001.png"><img class="alignnone size-large wp-image-313" title="bbPM Plugin Plugin" src="http://nightgunner5.files.wordpress.com/2011/03/bbpm-plugin-plugin-0001.png?w=648&#038;h=750" alt="bbPM Plugin Plugin" width="648" height="750" /></a></p>
<p>bbPM is the first plugin I will convert from bbPress Standalone to bbPress Plugin. This makes bbPM the first Plugin Plugin I&#8217;ve made.</p>
<p>The screenshot above is unedited, and it shows my current progress in rewriting bbPM from the ground up. PM threads are available only to the users specified when the PM is created. I will add the ability to add users to a thread after its creation soon.</p><br /> Tagged: <a href='http://nightgunner5.wordpress.com/tag/bbpm/'>bbPM</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=314&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/03/12/bbpm-plugin-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>

		<media:content url="http://nightgunner5.files.wordpress.com/2011/03/bbpm-plugin-plugin-0001.png?w=648" medium="image">
			<media:title type="html">bbPM Plugin Plugin</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s bbPress Not bb press BBpress or bb&#8230;</title>
		<link>http://nightgunner5.wordpress.com/2011/03/12/its-bbpress-not-bb-press-bbpress-or-bb/</link>
		<comments>http://nightgunner5.wordpress.com/2011/03/12/its-bbpress-not-bb-press-bbpress-or-bb/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 15:06:53 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/2011/03/12/its-bbpress-not-bb-press-bbpress-or-bb/</guid>
		<description><![CDATA[It&#8217;s bbPress. Not bb_press, BBpress, or bb &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; Press. Same goes for my username. It&#8217;s Nightgunner5, not Nightgunner, NightGunner, or NIGHT GUNNER FIVE.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=309&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s bbPress. Not bb_press, BBpress, or bb &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Press.<br />
Same goes for my username. It&#8217;s Nightgunner5, not Nightgunner, NightGunner, or NIGHT GUNNER FIVE.</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/309/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/309/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/309/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=309&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/03/12/its-bbpress-not-bb-press-bbpress-or-bb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>
	</item>
		<item>
		<title>bbPress Plugin Repository: The Movie</title>
		<link>http://nightgunner5.wordpress.com/2011/03/11/bbpress-plugin-repository-the-movie/</link>
		<comments>http://nightgunner5.wordpress.com/2011/03/11/bbpress-plugin-repository-the-movie/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 19:58:36 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/?p=306</guid>
		<description><![CDATA[See also: http://joncave.co.uk/2011/02/road-to-wordpress-3-1/ http://blog.ashfame.com/2011/03/bbpress-development-visual-roadmap/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=306&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><object width="632" height="381"><param name="movie" value="http://www.youtube.com/e/-7PAYcZqcLk"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/e/-7PAYcZqcLk" type="application/x-shockwave-flash" width="632" height="381" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>See also:</p>
<p><a href="http://joncave.co.uk/2011/02/road-to-wordpress-3-1/">http://joncave.co.uk/2011/02/road-to-wordpress-3-1/</a></p>
<p><a href="http://blog.ashfame.com/2011/03/bbpress-development-visual-roadmap/">http://blog.ashfame.com/2011/03/bbpress-development-visual-roadmap/</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/306/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=306&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/03/11/bbpress-plugin-repository-the-movie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m programming one #bbPress and supporting another Yay&#8230;</title>
		<link>http://nightgunner5.wordpress.com/2011/02/20/im-programming-one-bbpress-and-supporting-another-yay/</link>
		<comments>http://nightgunner5.wordpress.com/2011/02/20/im-programming-one-bbpress-and-supporting-another-yay/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 20:18:25 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[quote]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/2011/02/20/im-programming-one-bbpress-and-supporting-another-yay/</guid>
		<description><![CDATA[I&#8217;m programming one #bbPress and supporting another. Yay? http://twitter.com/Nightgunner5/status/39418464284323842<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=303&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m programming one #<a href="http://trac.bbpress.org/browser/branches/plugin">bbPress</a> and supporting another. Yay?</p>
<p><cite><a href="http://twitter.com/Nightgunner5/status/39418464284323842" rel="nofollow">http://twitter.com/Nightgunner5/status/39418464284323842</a></cite></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=303&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/02/20/im-programming-one-bbpress-and-supporting-another-yay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>
	</item>
		<item>
		<title>*Brushes dust and cobwebs away* It&#8217;s been a&#8230;</title>
		<link>http://nightgunner5.wordpress.com/2011/02/18/brushes-dust-and-cobwebs-away-its-been-a/</link>
		<comments>http://nightgunner5.wordpress.com/2011/02/18/brushes-dust-and-cobwebs-away-its-been-a/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 22:40:38 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/2011/02/18/brushes-dust-and-cobwebs-away-its-been-a/</guid>
		<description><![CDATA[*Brushes dust and cobwebs away* It&#8217;s been a long time.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=302&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>*Brushes dust and cobwebs away*</p>
<p><a href="http://www.youtube.com/watch?v=tax4e4hBBZc">It&#8217;s been a long time.</a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/302/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/302/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=302&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2011/02/18/brushes-dust-and-cobwebs-away-its-been-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>
	</item>
		<item>
		<title>Ben&#8217;s plugin is awsome! I think we coul&#8230;</title>
		<link>http://nightgunner5.wordpress.com/2010/07/28/bens-plugin-is-awsome-i-think-we-coul/</link>
		<comments>http://nightgunner5.wordpress.com/2010/07/28/bens-plugin-is-awsome-i-think-we-coul/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 13:49:17 +0000</pubDate>
		<dc:creator>Ben L.</dc:creator>
				<category><![CDATA[quote]]></category>
		<category><![CDATA[Role Manager]]></category>

		<guid isPermaLink="false">http://nightgunner5.wordpress.com/2010/07/28/bens-plugin-is-awsome-i-think-we-coul/</guid>
		<description><![CDATA[Ben&#8217;s plugin is awsome! I think we could merge his plugin (and this ticket) into #538. mr_pelle on basic role management in bbPress Tagged: Role Manager<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=296&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ben&#8217;s plugin is awsome! I think we could merge his plugin (and this ticket) into #538.</p>
<p><cite><a href="http://nightgunner5.is-a-geek.net:1337/glotpress/users/mr_pelle">mr_pelle</a> on <a href="http://trac.bbpress.org/ticket/632#comment:3">basic role management in bbPress</a></cite></p><br /> Tagged: <a href='http://nightgunner5.wordpress.com/tag/role-manager/'>Role Manager</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nightgunner5.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nightgunner5.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nightgunner5.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nightgunner5.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nightgunner5.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nightgunner5.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nightgunner5.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nightgunner5.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nightgunner5.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nightgunner5.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nightgunner5.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nightgunner5.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nightgunner5.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nightgunner5.wordpress.com/296/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nightgunner5.wordpress.com&amp;blog=7572624&amp;post=296&amp;subd=nightgunner5&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nightgunner5.wordpress.com/2010/07/28/bens-plugin-is-awsome-i-think-we-coul/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/622f42754a4087d66334c6fb72674525?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Nightgunner5</media:title>
		</media:content>
	</item>
	</channel>
</rss>
