<?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>sewmyheadon.com &#187; Open Source</title>
	<atom:link href="http://sewmyheadon.com/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://sewmyheadon.com</link>
	<description>Web Dev, Linux, WordPress &#38; More</description>
	<lastBuildDate>Fri, 27 May 2011 18:59:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>MySQL Search &amp; Replace Tool</title>
		<link>http://sewmyheadon.com/2009/mysql-search-replace-tool/</link>
		<comments>http://sewmyheadon.com/2009/mysql-search-replace-tool/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 23:58:01 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=520</guid>
		<description><![CDATA[This web-based tool written in PHP makes it easy to search and replace text strings in a MySQL database.]]></description>
			<content:encoded><![CDATA[<p><strong>This web-based tool written in PHP makes it easy to search and replace text strings in a MySQL database.</strong><br />
<span id="more-520"></span><br />
Usually, I develop WordPress sites on a local development server and, when they are ready to launch, I move them to a live web server.</p>
<div id="attachment_528" class="wp-caption alignright" style="width: 210px"><a href="http://sewmyheadon.com/wp-content/uploads/2009/11/mysql-replace.png"><img class="size-full wp-image-528" title="MySQL Search &amp; Replace" src="http://sewmyheadon.com/wp-content/uploads/2009/11/mysql-replace.png" alt="MySQL Search &amp; Replace" width="200" height="314" /></a><p class="wp-caption-text">MySQL Search &amp; Replace</p></div>
<p>For database-driven sites created with content management systems like WordPress, Drupal, and Joomla, this means moving any custom themes and plugins, and it often entails exporting data from the development server&#8217;s database and copying it to the live web server.</p>
<p>With small databases, your content management system&#8217;s built-in import/export functions might work, or you can even search and replace an exported <em>.sql</em> file using a simple text editor or IDE.</p>
<p>Unfortunately, this doesn&#8217;t always work with larger databases, which can often be unruly and cause programs to hang, crash, spit, choke, and curse.</p>
<p>I searched around and found this <a title="search and replace text mysql database" href="http://www.mjdigital.co.uk/blog/search-and-replace-text-in-whole-mysql-database/" target="_blank">PHP script by Mark Jackson</a> which makes it <em>much</em> faster and easier to search and replace data across an entire MySQL database.</p>
<h2>MySQL Search &amp; Replace Project is Born</h2>
<p>I created a quick little front end for Mark&#8217;s script using a little XHTML markup and CSS, tweaked a little PHP, and Mark and I decided to package up this tool and release it to the community under the <a title="General Public License" href="http://www.gnu.org/licenses/gpl.html">GPL</a> in hopes that it might help some other folks.</p>
<p>The <a title="MySQL Search &amp; Replace on LaunchPad" href="https://launchpad.net/mysql-search-replace" target="_blank">MySQL Search &amp; Replace</a> project is hosted on <a title="MySQL Search &amp; Replace on LaunchPad" href="https://launchpad.net/mysql-search-replace" target="_blank">LaunchPad</a>, where you can report bugs, request features, checkout the latest version, read FAQs, contribute, and collaborate.</p>
<h2>Using MySQL Search &amp; Replace with WordPress</h2>
<p><strong>Before attempting to search and replace, please make sure to backup your database.</strong></p>
<p>While this tool is easy to use, it&#8217;s also <em>quite powerful</em> and could easily cause harm to your database, if you&#8217;re not careful. Please make sure to read the included <em>readme.txt</em> file for more detailed instructions.</p>
<p>Since I develop WordPress sites on my local Ubuntu machines using a local <acronym title="Linux, Apache, MySQL, PHP/Perl/Python">LAMP</acronym> install, the URLs of my work-in-progress sites usually look like:</p>
<p><code>http://localhost/projects/sewmyheadon</code></p>
<p>Of course, once I move the site to the web, it&#8217;ll probably have an address more like:</p>
<p><code>http://sewmyheadon.com</code></p>
<p>Since these URLs usually occur many times in a WordPress database, search and replace can be an invaluable tool in making sure they&#8217;re all corrected before moving the database.</p>
<h3>Prepare a WordPress Database for a Move:</h3>
<p><strong>NOTE</strong>: Before running an actual <em>replace</em>, you can simply <em>search</em> to see how many times, and where, the string occurs in the database.</p>
<ol>
<li id="step1"><strong>Backup, backup, backup.</strong>  Use phpMyAdmin or a WordPress plugin, but make sure you have a backup. You can&#8217;t say I didn&#8217;t tell you.</li>
<li><a title="MySQL Search &amp; Replace PHP Script" href="http://sewmyheadon.com/wp-content/uploads/2009/11/mysql-replace.zip">Download</a> or <a title="MySQL Search &amp; Replace on LaunchPad" href="https://launchpad.net/mysql-search-replace">checkout</a> the latest version of MySQL Search &amp; Replace</li>
<li>Unzip the files, if necessary, and place the <em>mysql-replace</em> folder on your server.</li>
<li>Double-check that you covered <a href=#step1">Step #1</a></li>
<li>Visit the URL for the MySQL Search &amp; Replace Tool in your browser.  The URL might look something like: <em>http://localhost/mysql-replace/</em></li>
<li>Fill in the necessary fields and click <em>Start</em>.</li>
</ol>
<hr />
<h2>Get MySQL Search &amp; Replace</h2>
<ul>
<li><a title="MySQL Search &amp; Replace Tool" href="http://sewmyheadon.com/wp-content/uploads/2009/11/mysql-replace.zip">Download MySQL Search &amp; Replace Tool</a></li>
<li><a title="MySQL Search &amp; Replace on LaunchPad" href="https://launchpad.net/mysql-search-replace" target="_blank">MySQL Search &amp; Replace Tool Project on LaunchPad.net</a></li>
</ul>
<hr />
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2009/mysql-search-replace-tool/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Register for WordCamp Seattle 2009</title>
		<link>http://sewmyheadon.com/2009/register-for-wordcamp-seattle-2009/</link>
		<comments>http://sewmyheadon.com/2009/register-for-wordcamp-seattle-2009/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 00:29:33 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[seattle]]></category>
		<category><![CDATA[WordCamp]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=437</guid>
		<description><![CDATA[The first official WordCamp Seattle is now open for registration.]]></description>
			<content:encoded><![CDATA[<p><strong>The first official <a title="WordCamp Seattle" href="http://www.wordcampseattle.com">WordCamp Seattle</a> is now <a title="Register for WordCamp 2009" href="http://www.wordcampseattle.com/2009/08/registration-open-now/">open for registration</a> and you can save on registration fees before September 1, 2009.<br />
</strong></p>
<p><a href="http://www.wordcampseattle.com" class="alignright"><img src="https://sewmyheadon.com/wp-content/uploads/2009/08/speaker-badge.jpg" alt="WordCamp Seattle Speaker" title="WordCamp Seattle Speaker" width="150" height="112" class="alignright size-full wp-image-463" /></a></p>
<p>WordCamp Seattle is September 26th, 2009 and there&#8217;s already an impressive <a title="WordCamp Seattle Speakers" href="http://www.wordcampseattle.com/speakers/">line-up of speakers</a>.</p>
<blockquote><p>WordCamps are informal conferences where you can learn about the world&#8217;s most popular blogging platform, WordPress.- <cite><a href="http://www.wordcampseattle.com/">WordCamp Seattle</a></cite></p></blockquote>
<p>I&#8217;ve registered &#8211; if you&#8217;ll be there and want to connect, <a title="Contact Me" href="/contact/">contact me</a>.</p>
<p><em>More details at <a title="WordCamp Seattle" href="http://www.wordcampseattle.com">www.wordcampseattle.com</a></em></p>
<p><strong>Edit:</strong> I&#8217;ll be giving a 5 minute Ignite presentation at WordCamp Seattle entitled <em>&#8220;5 Free Ways to Bulletproof Your WordPress Site&#8221;</em> – hope to see you there.</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2009/register-for-wordcamp-seattle-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 is Released!</title>
		<link>http://sewmyheadon.com/2008/wordpress-27-is-released/</link>
		<comments>http://sewmyheadon.com/2008/wordpress-27-is-released/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 19:57:12 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=400</guid>
		<description><![CDATA[Automattic has just released WordPress 2.7 and it&#8217;s had a complete overhaul to the administrative interface based on lots of user testing and feedback. I&#8217;ve been using the betas for a while and have grown to love it, especially: the design and increased usability of the admin interface (backend) upgrading WordPress from within WordPress adding [...]]]></description>
			<content:encoded><![CDATA[<p>Automattic has just released <a title="WordPress 2.7" href="http://wordpress.org/development/2008/12/coltrane/">WordPress 2.7</a> and it&#8217;s had a complete overhaul to the administrative interface based on lots of user testing and feedback.</p>
<p>I&#8217;ve been using the betas for a while and have grown to love it, especially:</p>
<ul>
<li> the design and increased usability of the admin interface (backend)</li>
<li>upgrading WordPress from within WordPress</li>
<li>adding new plugins from within WordPress</li>
</ul>
<p><a href="http://wordpress.org/download/">Download WordPress 2.7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/wordpress-27-is-released/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Video Tutorials on Gimp &amp; Inkscape</title>
		<link>http://sewmyheadon.com/2008/video-tutorials-on-gimp-inkscape/</link>
		<comments>http://sewmyheadon.com/2008/video-tutorials-on-gimp-inkscape/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 16:07:55 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[image editing]]></category>
		<category><![CDATA[inkscape]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=131</guid>
		<description><![CDATA[Meet the Gimp by Rolf Steinort features video tutorials on the GIMP, an alternative to software like PhotoShop and Fireworks. screencasters.heathenx.org by HeathenX and Richard Querin features video tutorials on Inkscape, a vector graphics program similar to Adobe Illustrator, Corel Draw, or Freehand. Both programs are free software and run on Linux, Mac, Windows and [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a title="Rolf Steinort's Meet the Gimp" href="http://meetthegimp.org/" target="_blank">Meet the Gimp</a></strong> by Rolf Steinort features video tutorials on <a title="the GIMP (GNU Image Manipulation Program)" href="http://www.gimp.org/" target="_blank">the GIMP</a>, an alternative to software like PhotoShop and Fireworks.</p>
<p><strong><a title="Inkscape Tutorials for the Novice Artist" href="http://screencasters.heathenx.org/" target="_blank">screencasters.heathenx.org</a></strong> by <a title="HeathenX" href="http://www.heathenx.org/" target="_blank">HeathenX</a> and <a title="Richard Querin" href="http://www.rfquerin.org/" target="_blank">Richard Querin</a> features video tutorials on <a title="Inkscape" href="http://www.inkscape.org/" target="_blank">Inkscape</a>, a vector graphics program similar to Adobe Illustrator, Corel Draw, or Freehand.</p>
<p>Both programs are <a title="Free Software Foundation" href="http://fsf.org" target="_blank">free software</a> and run on Linux, Mac, Windows and BSD.</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/video-tutorials-on-gimp-inkscape/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Identi.ca &#8211; Open Source Microblogging</title>
		<link>http://sewmyheadon.com/2008/identica-open-source-microblogging/</link>
		<comments>http://sewmyheadon.com/2008/identica-open-source-microblogging/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 19:51:30 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[openid]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=127</guid>
		<description><![CDATA[Addicted to Twitter, Jaiku, Pownce or other microblogging platforms? Check out Identi.ca, an open source microblogging platform. Identi.ca is licensed under the GNU Affero General Public License, which pleases Free Software nuts like me. It also supports OpenID. I don&#8217;t spend a lot of time microblogging and can&#8217;t imagine why people would care what I [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Addicted to Twitter, Jaiku, Pownce or other <a title="Microblogging" href="http://en.wikipedia.org/wiki/Microblogging" target="_blank">microblogging</a> platforms? Check out <a title="Identi.ca Open Source Microblogging" href="http://identi.ca">Identi.ca</a>, an <em>open source</em> microblogging platform.</strong></p>
<p>Identi.ca is licensed under the <a title="GNU Affero General Public License" href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" target="_blank">GNU Affero General Public License</a>, which pleases <a title="Free Software" href="http://en.wikipedia.org/wiki/Free_software" target="_blank">Free Software</a> nuts like me. It also supports OpenID.</p>
<p>I don&#8217;t spend a lot of time microblogging and can&#8217;t imagine why people would care what I have to say, but you can find me at: <a title="sewmyheadon on Identi.ca" href="http://identi.ca/sewmyheadon">http://identi.ca/sewmyheadon</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/identica-open-source-microblogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6 Released</title>
		<link>http://sewmyheadon.com/2008/wordpress-26-released/</link>
		<comments>http://sewmyheadon.com/2008/wordpress-26-released/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 23:35:04 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=107</guid>
		<description><![CDATA[Congrats to the Automattic team and all of the contributors for the release of WordPress 2.6! There are a host of new features, enhancements and bug fixes. Some of my favorites so far: Version control Better plugin management Enhanced security including full SSL support Better handling of very large numbers of categories and pages. There&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Congrats to the <a title="Automattic" href="http://automattic.com" target="_blank">Automattic</a> team and all of the contributors for the <a title="WordPress 2.6 Released!" href="http://wordpress.org/development/2008/07/wordpress-26-tyner/" target="_blank">release of WordPress 2.6</a>!</strong></p>
<p>There are a host of new features, enhancements and bug fixes. Some of my favorites so far:</p>
<ul>
<li>Version control</li>
<li>Better plugin management</li>
<li>Enhanced security including full SSL support</li>
<li>Better handling of very large numbers of categories and pages.</li>
</ul>
<p>There&#8217;s plenty more, so <a title="WordPress 2.6 Released!" href="http://wordpress.org/development/2008/07/wordpress-26-tyner/" target="_blank">check out WordPress 2.6</a> for yourself!</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/wordpress-26-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp Portland 2008 is Official</title>
		<link>http://sewmyheadon.com/2008/wordcamp-portland-2008-is-official/</link>
		<comments>http://sewmyheadon.com/2008/wordcamp-portland-2008-is-official/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 15:11:26 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordCamp]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=104</guid>
		<description><![CDATA[WordCamp Portland has been confirmed for Saturday, September 27, 2008 at CubeSpace. Details are still being discussed on the Google Group for this event. There will be great speakers, interesting topics and I&#8217;d really encourage anyone interested in WordPress, blogging, and website design and development to attend. WordCamp Portland still needs sponsors so check the [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a title="WordCamp Portland" href="http://www.wordcampportland.org/" target="_blank">WordCamp Portland</a> has been confirmed for Saturday, September 27, 2008 at <a title="CubeSpace" href="http://www.cubespacepdx.com/" target="_blank">CubeSpace</a>.</strong></p>
<p>Details are still being discussed on the <a title="WordCamp Portland Google Group" href="http://groups.google.com/group/wordcamppdx?hl=en" target="_blank">Google Group</a> for this event.</p>
<p>There will be great speakers, interesting topics and I&#8217;d really encourage anyone interested in <a title="WordPress" href="http://wordpress.org" target="_blank">WordPress</a>, blogging, and website design and development to attend.</p>
<p><a title="WordCamp Portland" href="http://www.wordcampportland.org/" target="_blank">WordCamp Portland</a> still needs sponsors so check the site for details on sponsorship opportunities.</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/wordcamp-portland-2008-is-official/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using WordPress as a CMS</title>
		<link>http://sewmyheadon.com/2008/using-wordpress-as-a-cms/</link>
		<comments>http://sewmyheadon.com/2008/using-wordpress-as-a-cms/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 16:40:24 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[WordPress CMS]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=103</guid>
		<description><![CDATA[Thanks to Charles and Jonathan of the WordPress Podcast for episode 42, where Matt Mullenweg answered an audio question from yours truly regarding using WordPress as a CMS. Matt pointed out a user-maintained post on the WordPress Codex titled &#8220;WordPress CMS.&#8221; There&#8217;s a lot of good info in this page. I&#8217;d love to see even [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Thanks to Charles and Jonathan of the <a title="WordPress Podcast Episode 42" href="http://wp-community.org/2008/06/08/episode-42/" target="_blank">WordPress Podcast</a> for episode 42, where <a title="Matt Mullenweg" href="http://ma.tt/" target="_blank">Matt Mullenweg</a> answered an audio question from yours truly regarding using WordPress as a <acronym title="Content Management System">CMS</acronym>.</strong></p>
<p>Matt pointed out a user-maintained post on the <a href="http://codex.wordpress.org/Main_Page">WordPress Codex</a> titled &#8220;<a title="WordPress CMS" href="http://codex.wordpress.org/User:Lastnode/Wordpress_CMS" target="_blank">WordPress CMS</a>.&#8221;</p>
<p>There&#8217;s a lot of good info in this page. I&#8217;d love to see even more documentation and community spring up around using WordPress as a CMS for non-blog websites.</p>
<p>Maybe even a gallery where people can show off their latest WordPress-powered sites.</p>
<p>Hmm . . . maybe that should be part of my contribution to the WordPress community. <img src='http://sewmyheadon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Of course, there&#8217;s plenty of invaluable information throughout the Codex and I use, and recommend, it regularly. With a little digging and forum forum posting, you can find answers to most questions.</p>
<p><strong>Other links related to using WordPress as a CMS:</strong></p>
<ul>
<li><a title="WordPress Makes Sense For Many Non-Blog Websites" href="http://ifacethoughts.net/2007/06/24/wordpress-makes-sense-for-many-non-blog-websites/" target="_blank">WordPress Makes Sense For Many Non-Blog Websites</a></li>
<li><a title="Building alexking.org 2.0" href="http://alexking.org/blog/2006/11/02/building-v2-part1" target="_blank">Building alexking.org 2.0</a></li>
<li><a title="Permanent Link to WordPress (as CMS) Hacking Tips" rel="bookmark" href="http://alexking.org/blog/2005/03/23/wordpress-hacking">WordPress (as CMS) Hacking Tips</a></li>
<li><a title="Permanent Link to Five WordPress ?CMS Enabling? Plugins" rel="bookmark" href="http://blazenewmedia.com/articles/five-wordpress-cms-enabling-plugins/">Five WordPress ?CMS Enabling? Plugins</a></li>
<li><a title="WordPress as CMS" href="http://www.grahamazon.com/wordpress-as-cms/" target="_blank">WordPress as CMS</a></li>
</ul>
<p>Of course, a quick <a title="Google for " href="http://www.google.com/search?q=wordpress+as+cms&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=com.ubuntu:en-US:unofficial&amp;client=firefox-a" target="_blank">Google search</a> will turn up a lot of other helpful pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/using-wordpress-as-a-cms/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordCamp Portland 2008 in the Works</title>
		<link>http://sewmyheadon.com/2008/wordcamp-portland-2008-in-the-works/</link>
		<comments>http://sewmyheadon.com/2008/wordcamp-portland-2008-in-the-works/#comments</comments>
		<pubDate>Thu, 22 May 2008 23:30:07 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordCamp]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=101</guid>
		<description><![CDATA[Looks like WordCamp Portland 2008 is tentatively scheduled for September 27th and Aaron Hockley started a Google Group to discuss it.]]></description>
			<content:encoded><![CDATA[<p>Looks like WordCamp Portland 2008 is tentatively scheduled for September 27th and <a href="http://www.anotherblogger.com/">Aaron Hockley</a> started a <a href="http://groups.google.com/group/wordcamppdx?hl=en">Google Group</a> to discuss it.</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/wordcamp-portland-2008-in-the-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp 2008 Schedules</title>
		<link>http://sewmyheadon.com/2008/wordcamp-2008-scheduled/</link>
		<comments>http://sewmyheadon.com/2008/wordcamp-2008-scheduled/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 23:03:08 +0000</pubDate>
		<dc:creator>eric</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordCamp]]></category>

		<guid isPermaLink="false">http://sewmyheadon.com/?p=100</guid>
		<description><![CDATA[Matt Mullenweg announced new WordCamp dates, including WordCamp San Francisco 2008, which is set for Saturday August 16th at the Mission Bay Conference Center. There&#8217;s a new listing of upcoming WordCamps at WordCamp Central. One that&#8217;s not listed is WordCamp Portland, which is taking place this Sunday, May 4th during BarCamp Portland.]]></description>
			<content:encoded><![CDATA[<p>Matt Mullenweg announced <a href="http://wordpress.org/development/2008/04/upcoming-wordcamps/">new WordCamp dates</a>, including WordCamp San Francisco 2008, which is set for Saturday August 16th at the <a href="http://www.ahl-missionbay.com/">Mission Bay Conference Center</a>.</p>
<p>There&#8217;s a new listing of upcoming WordCamps at <a href="http://central.wordcamp.org/">WordCamp Central</a>.</p>
<p>One that&#8217;s not listed is <a href="http://barcamp.org/WordCampPortland">WordCamp Portland</a>, which is taking place this Sunday, May 4th during <a href="http://barcamp.org/BarCampPortland">BarCamp Portland</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sewmyheadon.com/2008/wordcamp-2008-scheduled/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

