<?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>Be the signal &#187; WordPress</title>
	<atom:link href="http://bethesignal.org/blog/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://bethesignal.org</link>
	<description>where we&#039;re going, we don&#039;t need roads...</description>
	<lastBuildDate>Thu, 26 Jan 2012 05:52:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<atom:link rel='hub' href='http://bethesignal.org/?pushpress=hub'/>
		<item>
		<title>WordPress and Drizzle</title>
		<link>http://bethesignal.org/blog/2009/07/08/wordpress-and-drizzle/</link>
		<comments>http://bethesignal.org/blog/2009/07/08/wordpress-and-drizzle/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 19:15:39 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Drizzle]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1538</guid>
		<description><![CDATA[So, for amusement, education and a desire to put Drizzle through its paces with a real-world application, I built a Drizzle database adapter for WordPress. Rather than completely dumping the native wpdb class (as most WordPress database adapters appear to &#8230; <a href="http://bethesignal.org/blog/2009/07/08/wordpress-and-drizzle/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So, for amusement, education and a desire to put Drizzle through its paces with a real-world application, I built a <a href="http://wordpress.org/extend/plugins/drizzle/">Drizzle database adapter</a> for <a href="http://wordpress.org/">WordPress</a>.</p>
<p>Rather than completely dumping the native <tt>wpdb</tt> class (as most WordPress database adapters appear to do), I have subclassed it, replacing only the methods which use <tt>mysql_</tt> functions.</p>
<p>This way, it&#8217;s easier to maintain, and more likely to work with plugins and future versions of WordPress. I have also written a cheesy, retroactive test suite for <tt>wpdb</tt>&#8230; I haven&#8217;t done a lot of <a href="http://en.wikipedia.org/wiki/Test_driven_development">TDD</a>, so I have no idea if it&#8217;s any good, but it was helpful during development. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-wink.png' alt=';-)' class='wp-smiley' /> </p>
<p>Because <a href="http://drizzle.org/">Drizzle</a> has removed column types and various bits of syntax that WordPress (and heaps of  plugins) rely on, the adapter does a tiny bit of query munging along the way. For now, the only filters required are for CREATE, ALTER and friends.</p>
<p>Here&#8217;s a screenshot of WordPress running on Drizzle. Note that in the sidebar, I&#8217;m showing off two plugins which maintain their own tables &#8212; <a href="http://wordpress.org/extend/plugins/wp-postratings/">WP-PostRatings</a> and <a href="http://wordpress.org/extend/plugins/twitter-tools/">Twitter Tools</a>.</p>
<p style="text-align: center;"><a href="/wp-content/uploads/2009/07/wpnd-aktt-postratings-20090618.idx.png"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter" title="WordPress on Drizzle" src="/wp-content/uploads/2009/07/wpnd-aktt-postratings-20090618.idx-320x525.png" alt="WordPress on Drizzle" width="320" height="525" /></a></p>
<p>To test this bad boy out &#8212; because it&#8217;s absolutely <em>not</em> for production blogs! &#8212; you&#8217;ll need the <a href="http://drizzle.org/">Drizzle server</a> (and its dependencies, naturally), the <a href="http://pecl.php.net/package/drizzle">Drizzle PHP extension</a>, <a href="http://wordpress.org/">WordPress 2.8</a> and my <a href="http://wordpress.org/extend/plugins/drizzle/">adapter</a>. Note that I have yet to test it with WordPress MU, but it shouldn&#8217;t require many changes if it doesn&#8217;t work already.</p>
<p>If you use Ubuntu and want an easier time of it, you can get almost everything from the following PPAs. The Drizzle server isn&#8217;t packaged, but it&#8217;s incredibly easy to build and changes so quickly that you&#8217;ll probably find you want to keep it up to date from the source anyway.</p>
<pre>deb http://ppa.launchpad.net/drizzle-developers/ppa/ubuntu hardy main
deb http://ppa.launchpad.net/jdub/devel/ubuntu hardy main</pre>
<p>(I have only built my packages for Ubuntu 8.04, hardy, but you can always just grab the source packages and build them for whatever you&#8217;re using.)</p>
<p>Make sure you install the database adapter <em>before</em> you go through the WordPress install process. In every other respect, your test blog should operate in a completely unsurprising manner. Except when Drizzle crashes&#8230; but that&#8217;s precisely why you&#8217;re testing it, right? <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-wink.png' alt=';-)' class='wp-smiley' /> </p>
<h2>On Drizzle</h2>
<p>I am incredibly impressed with the Drizzle project. It&#8217;s a living case study of Open Source innovation and project renewal.</p>
<p>In response to what could be regarded as the unadventurous maturity of the MySQL project, the Drizzle developers have not simply chosen a new goal and forked the code &#8212; they have crafted a mission based on an insightful reading of current and future needs, questioned everything about MySQL without throwing away what they had learned, and thoroughly redefined their expectations and model for community collaboration.</p>
<p>It&#8217;s the perfect application of Software Freedom&#8217;s most functional of permissions: the freedom to fork. Like other forks built on both technical <em>and</em> social foundations &#8212; such as Firefox and, coincidentally, WordPress &#8212; I think it will eclipse its predecessor. Yes, even the mighty MySQL. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>I hope that what the Drizzle developers have done will teach and inspire other projects to look beyond their own horizon.</p>
<p>Here&#8217;s a rocktastic presentation by Brian Aker, &#8220;Drizzle: Rethinking MySQL for the Web&#8221;, from the recent <a href="http://opensourcebridge.org/">Open Source Bridge</a> conference:</p>
<script type='text/javascript' src='http://blip.tv/syndication/write_player?skin=js&posts_id=2312282&cross_post_destination=-1&view=full_js'></script>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2009/07/08/wordpress-and-drizzle/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 released!</title>
		<link>http://bethesignal.org/blog/2008/12/11/wordpress-27-released/</link>
		<comments>http://bethesignal.org/blog/2008/12/11/wordpress-27-released/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 02:47:18 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[blogs.gnome.org]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[wordcampau]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress 2.7]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1368</guid>
		<description><![CDATA[WordPress 2.7 is an awesome release. The revision of the admin backend, despite being so soon after the changes in 2.5, is fantastic&#8230; particularly for &#8220;real users&#8221;. I enjoyed putting forward my blunt perspective on the issue while Matt and &#8230; <a href="http://bethesignal.org/blog/2008/12/11/wordpress-27-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://wordpress.org/development/2008/12/coltrane/"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-1367" title="WordPress 2.7" src="http://bethesignal.org/wp-content/uploads/2008/12/wordpress-27.png" alt="WordPress 2.7" width="650" height="126" /></a></p>
<p><a href="http://wordpress.org/development/2008/12/coltrane/">WordPress 2.7</a> is an awesome release. The revision of the admin backend, despite being so soon after the changes in 2.5, is fantastic&#8230; particularly for &#8220;real users&#8221;. I enjoyed putting forward my blunt perspective on the issue while <a href="http://ma.tt/">Matt</a> and <a href="http://jane.wordpress.com/">Jane</a> were in the crowd at <a href="http://wordcamp.org.au/wordcamp-australia-2008/">WordCamp Australia</a>. Developers and contributors don&#8217;t hear &#8220;you&#8217;re doing the right thing&#8221; and &#8220;thank you&#8221; often enough. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>So, <em>thank you</em> WordPress hackers for another great release! (And thanks to Donncha for already working on the big merge for WordPress MU 2.7&#8230; I&#8217;m really looking forward to deploying it on <a href="http://blogs.gnome.org/">GNOME Blogs</a>.)</p>
<p>Plus, make sure you check out the <em>in-yo-face</em> <a href="http://wordpress.org/download/counter/">download counter</a>.</p>
<div id="attachment_1369" class="wp-caption aligncenter" style="width: 510px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://flickr.com/photos/halans/3067634912/"><img class="size-full wp-image-1369" title="Shit-hot for human beings." src="http://bethesignal.org/wp-content/uploads/2008/12/wordpress-27-shit-hot.jpg" alt="&quot;Wordpress 2.7 is shit-hot&quot; by Halans" width="500" height="375" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">&quot;Wordpress 2.7 is shit-hot&quot; by Halans</p></div>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/12/11/wordpress-27-released/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Intriguing sessions at WordCamp Australia&#8230;</title>
		<link>http://bethesignal.org/blog/2008/11/28/intriguing-sessions-at-wordcamp-australia/</link>
		<comments>http://bethesignal.org/blog/2008/11/28/intriguing-sessions-at-wordcamp-australia/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 09:41:45 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[automattic]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[Crikey]]></category>
		<category><![CDATA[Crikey Blogs]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[wordcampau]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1261</guid>
		<description><![CDATA[If you&#8217;re missing out on WordCamp Australia this weekend, you might really be missing out! A bunch of sessions that will be of particular interest to WordPress fans (and fans of all things new and groovy) have snuck their way &#8230; <a href="http://bethesignal.org/blog/2008/11/28/intriguing-sessions-at-wordcamp-australia/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re missing out on <a href="http://wordcamp.com.au/wordcamp-australia-2008/">WordCamp Australia</a> this weekend, you might <em>really</em> be missing out! A bunch of sessions that will be of particular interest to WordPress fans (and fans of all things new and groovy) have snuck their way into the <a href="http://wordcamp.com.au/wordcamp-australia-2008/schedule/">published schedule</a>, including:</p>
<ul>
<li>&#8220;Launch: Prologue Groups&#8221; at 11:05 on Saturday, from Sam Bauers and Jane Wells</li>
<li>A &#8220;Special Presentation&#8221; at 13:30 on Saturday, from an undisclosed speaker</li>
<li>&#8220;Launch: Secret Product!&#8221; at 10:05 on Sunday, from Alex Shiels</li>
<li>Certain titles that may or may not suggest other project releases&#8230;</li>
</ul>
<p>Might we see a live WordPress 2.7 release? Perhaps we&#8217;ll see some of the goodies previewed in Ranaan Bar-Cohen&#8217;s <a href="http://www.slideshare.net/raanan/virtual-company-presentation">recent &#8220;Seven Tips for Virtual Collaboration&#8221;</a> presentation&#8230; of course, you&#8217;ll never-never know if you never-never go.</p>
<p>I will be there. Wearing green. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-wink.png' alt=';-)' class='wp-smiley' /> </p>
<p style="text-align: center;"><a href="http://wordcamp.com.au/wordcamp-australia-2008/"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-1253" title="WordCamp Australia 2008" src="http://bethesignal.org/wp-content/uploads/2008/11/wordcamp-australia.jpg" alt="" width="500" height="410" /></a></p>
<p><strong>Bonus:</strong> <a href="http://blogs.crikey.com.au/">Crikey Blogs</a> is <a href="http://wordpress.org/showcase/crikey-blogs/">now featured</a> on <a href="http://wordpress.org/showcase/">WordPress Showcase</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/11/28/intriguing-sessions-at-wordcamp-australia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordCamp Australia 2008</title>
		<link>http://bethesignal.org/blog/2008/11/10/wordcamp-australia-2008/</link>
		<comments>http://bethesignal.org/blog/2008/11/10/wordcamp-australia-2008/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 07:08:16 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[Crikey]]></category>
		<category><![CDATA[Crikey Blogs]]></category>
		<category><![CDATA[jane wells]]></category>
		<category><![CDATA[matt mullenweg]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1252</guid>
		<description><![CDATA[WordCamp Australia 2008 will be held in Sydney at the end of the month, right before OSDC&#8230; and I intend to celebrate my first WordCamp by giving a talk! Yes, I will dimly glow next to such bright stars in &#8230; <a href="http://bethesignal.org/blog/2008/11/10/wordcamp-australia-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordcamp.com.au/wordcamp-australia-2008/"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-1253" title="WordCamp Australia 2008" src="http://bethesignal.org/wp-content/uploads/2008/11/wordcamp-australia.jpg" alt="" width="500" height="410" /></a></p>
<p><a href="http://wordcamp.com.au/wordcamp-australia-2008/">WordCamp Australia 2008</a> will be held in Sydney at the end of the month, right before <a href="http://www.osdc.com.au/2008/index.html">OSDC</a>&#8230; and I intend to celebrate my first WordCamp by giving a talk!</p>
<p>Yes, I will dimly glow next to such <a href="http://wordcamp.com.au/wordcamp-australia-2008/speakers/">bright stars in the universe of WordPress</a> as Matt Mullenweg and Jane Wells (who is kicking butt with the WordPress 2.7 admin redesign), as I present an <em>exclusive, behind-the-scenes look</em> at the recently launched Australian über-blog-network, <a href="http://blogs.crikey.com.au/">Crikey Blogs</a>. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>WordPress lovers and the blog-curious should come along and join the fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/11/10/wordcamp-australia-2008/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flickr Photo Album</title>
		<link>http://bethesignal.org/blog/2008/07/29/flickr-photo-album/</link>
		<comments>http://bethesignal.org/blog/2008/07/29/flickr-photo-album/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 07:19:50 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[photo album]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1162</guid>
		<description><![CDATA[I forgot to mention one WordPress plugin I enjoy using in my previous post, because I wasn&#8217;t sure if it was still being maintained. Turns out the maintainer, Joe Tan, just did a release today, bringing it up to speed &#8230; <a href="http://bethesignal.org/blog/2008/07/29/flickr-photo-album/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I forgot to mention one WordPress plugin I enjoy using in my <a href="http://bethesignal.org/blog/2008/07/26/projects-that-make-my-wordpress-rock/">previous post</a>, because I wasn&#8217;t sure if it was still being maintained. Turns out the maintainer, Joe Tan, just did a release today, bringing it up to speed with WordPress 2.6&#8230;</p>
<p><a href="http://tantannoodles.com/toolkit/photo-album/">Flickr Photo Album</a> makes it easy to use Flickr images in your blog, and the latest version integrates really nicely with the new &#8220;add media&#8221; user experience in WordPress 2.6 &#8212; it adds a Flickr icon to the toolbar, and pops up a great user interface for finding images to use (from your stream, from albums, from search results against those and all CC-BY images, etc).</p>
<p>Now for some celebratory Flickr-inspired imagery as tribute&#8230; <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
<div class="wp-caption aligncenter" style="width: 364px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a class="tt-flickr tt-flickr-Medium" href="http://www.flickr.com/photos/orphanjones/434805091/"><img title="Balloons" src="http://farm1.static.flickr.com/146/434805091_623f94f48c.jpg" border="0" alt="balloons" width="354" height="500" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Balloons by orphanjones</p></div>
<p><strong>Update:</strong> Boh, looks like the caption shortcode is not working. That&#8217;s Balloons by orphanjones (linked), and hopefully the caption will make this comment redundant soon. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/07/29/flickr-photo-album/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Projects that make my WordPress rock!</title>
		<link>http://bethesignal.org/blog/2008/07/26/projects-that-make-my-wordpress-rock/</link>
		<comments>http://bethesignal.org/blog/2008/07/26/projects-that-make-my-wordpress-rock/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 05:53:48 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[bad behavior]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[opensearch]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[sandbox]]></category>
		<category><![CDATA[tango]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1134</guid>
		<description><![CDATA[Here are some of the projects that I enjoy using with WordPress&#8230; Perhaps you&#8217;ll find them as useful as I have. WordPress and WordPress MU (multi-user) It&#8217;s hard to make recommendations related to WordPress without mentioning the project itself, and &#8230; <a href="http://bethesignal.org/blog/2008/07/26/projects-that-make-my-wordpress-rock/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here are some of the projects that I enjoy using with WordPress&#8230; Perhaps you&#8217;ll find them as useful as I have.</p>
<ul>
<li>
<p><strong><a href="http://wordpress.org/">WordPress</a> and <a href="http://mu.wordpress.org/">WordPress <span class="caps">MU</span></a> (multi-user)</strong></p>
<p>It&#8217;s hard to make recommendations related to WordPress without mentioning the project itself, and its twisted sister, WordPress MU. Both are improving in leaps and bounds, and it&#8217;s a pleasure finding all the cool new things as I track their development trunks. WordPress 2.6 is the latest major release, with lots of cool new goodies&#8230; <a title="Holy Shmoly!" href="http://ocaoimh.ie/">Donncha</a> is rapidly catching up to those changes with WordPress MU. I wrote nice things about them on my <a href="http://bethesignal.org/blog/2008/01/14/projects-that-make-gnome-rock/">Projects that make GNOME rock!</a> post, too.</p>
</li>
<li>
<p><a href="http://www.plaintxt.org/themes/sandbox/"><strong>Sandbox</strong></a></p>
<p>I am a minimalist at heart, but with a fondness for cleverly expressive minimalism, so the Sandbox theme blows my mind. If you just look at the theme on the surface, it seems like a very boring, no-frills blob of unstyled HTML. But the genius lays waiting beneath the surface, in the highly evolved markup. Cunningly generated classes deliver extraordinary flexibility to a designer working with CSS. Just look at the body and div.post tags to get a good idea of what you can do. <a href="http://bethesignal.org/">Be the signal</a> is 100% Sandbox + custom CSS, with no added ingredients&#8230; and it changes colour every hour! <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-wink.png' alt=';-)' class='wp-smiley' /> </p>
</li>
<li>
<p><strong><a href="http://akismet.com/">Akismet</a> &amp; <a href="http://www.bad-behavior.ioerror.us/">Bad Behavior</a></strong></p>
<p>The one-two punch in my anti-blog-spam regime. Bad Behavior protects against abusive hosts and patterns of use, while Akismet does content filtering. As such, with an MTA analogy, they&#8217;re like a great combo of solid Postfix policy as front-line defense, plus DSPAM content filtering. Like my mailservers, I might not run both in every situation, but it&#8217;s great that they&#8217;re both available to protect the innocent. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
</li>
<li>
<p><a href="http://alexking.org/projects/wordpress"><strong>Twitter Tools</strong></a></p>
<p>Keeps my tweeps up to date with my blog, and lets my blog readers (bleeps?) know that I use Twitter and what I&#8217;m up to. I don&#8217;t use the daily blog archive feature, but lots of people enjoy that&#8230; despite it being one of the latest controversial content issues on Planets. I really ought to add <a href="http://identi.ca/">identi.ca</a> (or most likely &#8220;generic Twitter-style API&#8221;) support and see if Alex accepts the patch&#8230;</p>
</li>
<li>
<p><a href="http://wordpress.org/extend/plugins/openid"><strong>OpenID</strong></a></p>
<p>It&#8217;s great that companies and sites like Sun, AOL and MySpace are becoming OpenID providers, but the web really needs more consumers. So pretty much every WordPress blog I set up has Will Norris&#8217; WP-OpenID plugin installed. A while back I hacked it up to work with WordPress MU (always on, in mu-plugins), which was great for <a href="http://blogs.gnome.org/">GNOME Blogs</a>. I need to update that to the latest versions and see if Will might accept a nicer patch than the last one. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-wink.png' alt=';-)' class='wp-smiley' /> </p>
</li>
<li>
<p><a href="http://wordpress.org/extend/plugins/wp-typogrify/"><strong>Typogrify</strong></a></p>
<p>As a card-carrying Font Fascist, it delights me that so many folks are working hard to improve typography on the web. I know that sounds a bit like &#8220;folks are working hard to improve oxygen on the moon&#8221;, but we&#8217;ll get there. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' />  Typogrify filters your posts to provide some cute ways of draining your own swamp, such as adding helpful markup to improve styleability of things like allcaps words, initial quotes, etc.</p>
</li>
<li>
<p><strong>My own cheesy plugins</strong></p>
<p>I&#8217;ve only managed to upload a few of my custom plugins to the WordPress Extend repository (which is a fantastic way to manage plugins for a widely-used platform, by the way), and thus far they&#8217;re kinda simple and cheesy.</p>
<ul>
<li><strong><a href="http://wordpress.org/extend/plugins/at-reply/">@reply</a></strong> automagically adds Twitter-style replying to your comments.</li>
<li><strong><a href="http://wordpress.org/extend/plugins/bug-links/">Bug Links</a></strong> adds stylish links to common FOSS bug tracking systems &#8212; this was mainly written for <a href="http://blogs.gnome.org/">GNOME Blogs</a>, so I&#8217;m particularly happy that Thomas uses it regularly for his very cool <a href="http://blogs.gnome.org/metacity/">metacity blog</a>.</li>
<li><strong><a href="http://wordpress.org/extend/plugins/opensearch/">OpenSearch</a><span title="Might not be available yet... check back soon!">*</span></strong> adds OpenSearch discovery to your WordPress site, so users can add your site to their search dropdown (in, say, Firefox). I need to improve it further to support the whole OpenSearch specification.</li>
<li><strong><span title="Might not be available yet... check back soon!"><a href="http://wordpress.org/extend/plugins/tango-smilies/">Tango Smilies</a></span></strong> makes your emoticons not look like arse!</li>
</ul>
</li>
</ul>
<p>Thanks, of course, to all of the developers and contributors to these projects. <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/07/26/projects-that-make-my-wordpress-rock/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WordPress Party! Sydney Style.</title>
		<link>http://bethesignal.org/blog/2008/05/25/wordpress-party-sydney-style/</link>
		<comments>http://bethesignal.org/blog/2008/05/25/wordpress-party-sydney-style/#comments</comments>
		<pubDate>Sun, 25 May 2008 07:29:22 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[party]]></category>
		<category><![CDATA[sydney]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://bethesignal.org/?p=1063</guid>
		<description><![CDATA[Matt announced a 5th birthday party for WordPress in San Francisco, and welcomed birthday events around the world. So here&#8217;s a response from the other side of the Pacific&#8230; Join the WordPress 5th birthday celebrations in Sydney this Tuesday, 7pm &#8230; <a href="http://bethesignal.org/blog/2008/05/25/wordpress-party-sydney-style/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Matt announced a <a href="http://ma.tt/2008/05/wordpress-party-2/">5th birthday party</a> for WordPress in San Francisco, and <a href="http://wordpress.org/development/2008/05/birthday-party/">welcomed birthday events</a> around the world. So here&#8217;s a response from the other side of the Pacific&#8230; Join the <a href="http://www.facebook.com/event.php?eid=13815594694">WordPress 5th birthday celebrations in Sydney</a> this Tuesday, 7pm at the <a href="http://www.jamessquirebrewhouse.net/">James Squire Brewhouse</a>! Here&#8217;s a <a href="http://www.facebook.com/event.php?eid=13815594694">Facebook</a> event for RSVPs. See you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/05/25/wordpress-party-sydney-style/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Projects that make GNOME rock!</title>
		<link>http://bethesignal.org/blog/2008/01/14/projects-that-make-gnome-rock/</link>
		<comments>http://bethesignal.org/blog/2008/01/14/projects-that-make-gnome-rock/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 13:59:51 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[bugzilla]]></category>
		<category><![CDATA[cairo]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[olpc]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://perkypants.org/blog/2008/01/14/projects-that-make-gnome-rock/</guid>
		<description><![CDATA[James Maguire at Datamation published an article late last year about the favourite projects of FLOSS industry and community leaders. Uh huh, I&#8217;m still catching up with 2007! With my GNOME Foundation hat on I thought that, rather than taking &#8230; <a href="http://bethesignal.org/blog/2008/01/14/projects-that-make-gnome-rock/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>James Maguire at Datamation published an article late last year about the <a href="http://itmanagement.earthweb.com/entdev/article.php/11070_3717066_1">favourite projects</a> of FLOSS industry and community leaders. Uh huh, I&#8217;m still catching up with 2007! <img width='16' height='16' src='http://bethesignal.org/wp-content/plugins/tango-smilies/tango/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
<p>With my GNOME Foundation hat on I thought that, rather than taking the easy way out by plugging a bunch of our rocking applications, it might be cool to show off some of the projects that make GNOME rock:</p>
<ul>
<li><b><a href="http://wordpress.org/">WordPress</a> and <a href="http://mu.wordpress.org/">WordPress MU</a> (multi-user)</b>
<p>Blogs and planet sites have had a huge impact on communication in the FLOSS world. GNOME and WordPress share many of the same philosophies about usability and development, so it&#8217;s not surprising that heaps of GNOME contributors use WordPress &#8212; and we&#8217;ve recently deployed WordPress MU on <a href="http://blogs.gnome.org/">blogs.gnome.org</a>. WordPress rocks.</p>
</li>
<li><b><a href="http://www.bugzilla.org/">Bugzilla</a></b>
<p>Perpetually overlooked as one of the most important FLOSS apps, even though it is absolutely crucial to the development of so many: Mozilla, GNOME, Apache, Eclipse, OpenOffice.org&#8230; the list goes on &#8212; even NASA uses it! Bugzilla makes GNOME rock harder.</p>
</li>
<li><b><a href="http://laptop.org/">One Laptop Per Child</a></b>
<p>Using GNOME technologies throughout, the OLPC project has created an amazing user interface for kids, and contributed some great technologies to the FLOSS world along the way &#8212; coming soon to GNOME! The best bit is that OLPC will take Software Freedom to millions, if not billions of kids around the world.</p>
</li>
<li><b><a href="http://cairographics.org/">Cairo</a></b>
<p>One of the classic &#8216;behind the scenes&#8217; projects that has contributed to so many advances throughout the FLOSS world. It lies deep in the core of GNOME&#8217;s rendering technologies, not only delivering beautiful graphics, but a totally delicious API for software developers as well.</p>
</li>
<li><b><a href="http://www.gnome.org/projects/evolution/">Evolution</a></b>
<p>Okay, okay, I have to plug at least one GNOME application! Evo might not be the newest or sexiest GNOME app, but it is indispensible as one of our core communications tools, and its features help many users shift to FLOSS platforms &#8211; particularly in corporate environments. The next release will even have Google Calendar and Exchange MAPI support &#8212; sweet!</p>
</li>
</ul>
<p>Check out the article for plenty of <a href="http://itmanagement.earthweb.com/entdev/article.php/11070_3717066_1"> rocking Open Source projects</a> suggested by other FLOSS industry and community folks.</p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/01/14/projects-that-make-gnome-rock/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress MU + OpenID</title>
		<link>http://bethesignal.org/blog/2008/01/10/wordpress-mu-openid/</link>
		<comments>http://bethesignal.org/blog/2008/01/10/wordpress-mu-openid/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 07:41:52 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://perkypants.org/blog/2008/01/10/wordpress-mu-openid/</guid>
		<description><![CDATA[After quite a bit of work, WP-OpenID is now ready for WPMU! Always wanted your WPMU install to consume OpenID for logins and comments? Now it can! I am already running this modified version on blogs.gnome.org and perkypants.org (WPMU and &#8230; <a href="http://bethesignal.org/blog/2008/01/10/wordpress-mu-openid/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p align="center" class="center"><img src='http://perkypants.org/blog/wp-content/uploads/2008/01/wpmu-openid.png' alt='WordPress MU + Open ID' /></p>
<p>After <a href="http://perkypants.org/blog/2008/01/10/wordpress-mu-wp-openid-almost-done/">quite a bit of work</a>, <a href="http://wordpress.org/extend/plugins/openid/">WP-OpenID</a> is now ready for <a href="http://mu.wordpress.org/">WPMU</a>! Always wanted your WPMU install to consume OpenID for logins and comments? Now it can!</p>
<p>I am already running this modified version on <a href="http://blogs.gnome.org/">blogs.gnome.org</a> and <a href="http://perkypants.org/">perkypants.org</a> (WPMU and WPSO respectively), in order to test the changes in both environments.</p>
<p>To try it out, download the <a href="http://wordpress.org/extend/plugins/openid/">WP-OpenID plugin</a>, and follow the directions in the <a href="http://dev.wp-plugins.org/ticket/732">bug^Wpatch report</a>. It&#8217;s a work-in-progress, but definitely ready to test.</p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/01/10/wordpress-mu-openid/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>WordPress MU + WP-OpenID almost done</title>
		<link>http://bethesignal.org/blog/2008/01/10/wordpress-mu-wp-openid-almost-done/</link>
		<comments>http://bethesignal.org/blog/2008/01/10/wordpress-mu-wp-openid-almost-done/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 15:24:27 +0000</pubDate>
		<dc:creator>Jeff Waugh</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[blogo]]></category>
		<category><![CDATA[blogs.gnome.org]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://perkypants.org/blog/2008/01/10/wordpress-mu-wp-openid-almost-done/</guid>
		<description><![CDATA[I have almost kicked enough WordPress MU and WP-OpenID arse to enable global OpenID consumption for logins and comments. That&#8217;s mu-plugins style, WPMU lovers &#8212; yeah! Once GNOME bug #446524 is fixed for Blogo, I&#8217;ll try to push the changes &#8230; <a href="http://bethesignal.org/blog/2008/01/10/wordpress-mu-wp-openid-almost-done/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have almost kicked enough <a href="http://mu.wordpress.org/">WordPress MU</a> and <a href="http://wordpress.org/extend/plugins/openid/">WP-OpenID</a> arse to enable global OpenID consumption for logins and comments. That&#8217;s <em>mu-plugins style</em>, WPMU lovers &#8212; <em>yeah!</em></p>
<p align="center" class="center"><a href="http://mu.wordpress.org/"><img src='http://perkypants.org/blog/wp-content/uploads/2008/01/wordpress-mu.png' alt='WordPress MU' /></a></p>
<p>Once GNOME bug #446524 is fixed for <a href="http://blogs.gnome.org/">Blogo</a>, I&#8217;ll try to push the changes upstream. <a href="http://openid.net/">OpenID</a> is for everybody, including WPMU admins and users!</p>
<p align="center" class="center"><img src='http://perkypants.org/blog/wp-content/uploads/2007/06/gnome-loves-wordpress.png' alt='GNOME Loves WordPress' /></p>
]]></content:encoded>
			<wfw:commentRss>http://bethesignal.org/blog/2008/01/10/wordpress-mu-wp-openid-almost-done/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

