<?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"
	>

<channel>
	<title>Pixelpost</title>
	<atom:link href="http://www.pixelpost.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pixelpost.org</link>
	<description>Authentic Photoblog Flavour</description>
	<pubDate>Thu, 18 Jun 2009 06:12:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Benchmarking The New Config</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F18%2Fbenchmarking-the-new-config%2F&amp;seed_title=Benchmarking+The+New+Config</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F18%2Fbenchmarking-the-new-config%2F&amp;seed_title=Benchmarking+The+New+Config#comments</comments>
		<pubDate>Thu, 18 Jun 2009 06:12:30 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Pixelpost]]></category>

		<category><![CDATA[v2]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=37</guid>
		<description><![CDATA[Thanks to a comment on the previous post, I decided to run a simple benchmark test on the new file based config vs a MySQLi database based config. The benchmark consisted of two tests for each config type, first a read test, which would read all 37 configuration options into an array, 10,000 times. The [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to a comment on the previous post, I decided to run a simple benchmark test on the new file based config vs a MySQLi database based config. The benchmark consisted of two tests for each config type, first a read test, which would read all 37 configuration options into an array, 10,000 times. The second test, a write test, would save an option 10,000 times. All tests were run on my Quad-Core Mac Pro via PHP CLI, so server load wasn’t an issue.</p>
<p>The results weren’t too surprising, the file based config was able to load 10,000 times in just <em>2.0413 seconds</em>, that’s fast! The database version took <em>10.6869 seconds</em>.  And as you’d expect, the write benchmarks were the opposite.  The database version wrote the new option 10,000 times in only <em>1.7795 seconds</em>, where as the file based method took <em>4.3609 seconds</em>. Why is that? It’s simple, a database can update a single row very efficiently, where as the file based config has to rewrite the entire file each time you change an option.</p>
<p>Another thing I noticed while testing, the file based config used substantially less CPU than the database version, but the file version required substantially more disk activity.</p>
<p>In summery, I think a file based config makes more sense, as load speed is more important for a web application like a photoblog.  That being said, any information that will change on a regular basis, such post information, comments, and stats would be much better served by a database.</p>
<p>If you’d like to see the rough, but simple benchmark source code, check this out: <a href="http://pastie.textmate.org/516039">http://pastie.textmate.org/516039</a></p>
<p>As always, if you have any questions or suggestions, be sure to leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F18%2Fbenchmarking-the-new-config%2F&amp;seed_title=Benchmarking+The+New+Config/feed/</wfw:commentRss>
		</item>
		<item>
		<title>v2.0 - The New Config</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F14%2Fv20-the-new-config%2F&amp;seed_title=v2.0+-+The+New+Config</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F14%2Fv20-the-new-config%2F&amp;seed_title=v2.0+-+The+New+Config#comments</comments>
		<pubDate>Sun, 14 Jun 2009 16:10:28 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Pixelpost]]></category>

		<category><![CDATA[v2]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=36</guid>
		<description><![CDATA[I&#8217;m sure some of you are wondering how things are progressing on the brand new v2.0.  Well, first of, let me assure you that progress is being made, it may be slow, but it is progress! (We&#8217;re still looking for one or two developers to help speed things up, BTW)
Just recently, I&#8217;ve finished setting [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure some of you are wondering how things are progressing on the brand new v2.0.  Well, first of, let me assure you that progress is being made, it may be slow, but it is progress! <em>(We&#8217;re still looking for one or two developers to help speed things up, BTW)</em></p>
<p>Just recently, I&#8217;ve finished setting up a new configuration API, which will allow developers to easily configure Pixelpost, as well as create and save their own configuration options. The draft API looks something like this:</p>
<pre><code>    // Change the active template to "Simple"
    Config::set("template", "simple");

    // Returns the active template "simple"
    Config::current()-&gt;template;

    // Create a new option, which contains an array:
    Config::set('my-option',array('value1','value2'));

    // Delete the option:
    Config::remove("my-option");
</code></pre>
<p>For the developers out there, you&#8217;re probably thinking, OK, this is nice, but it&#8217;s not really that big of a game changer. Well, here is the twist, rather than saving the options in a database table, like we&#8217;ve done in the past, these options would simply be saved in the pixelpost.php configuration file, as a php array.  And since the configuration, generally speaking, only changes when you&#8217;re using the admin interface, the file won&#8217;t need to be updated that often. So, why should we store all the options in a database, only to require that it be queried on every page load by both guests and admins? Besides the speed benefit, both power-users and people who have are migrating their blog to a different server, can easily adjust the options for their entire blog by simply editing the pixelpost.php file, rather than firing up the admin interface.</p>
<p>This is a major change, we&#8217;d like to get some feedback you all, to make sure the development community agrees with this change. Because, after all, we&#8217;re building this for you! <em>(And ourselves too of course!)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F14%2Fv20-the-new-config%2F&amp;seed_title=v2.0+-+The+New+Config/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Help Wanted</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F05%2Fhelp-wanted%2F&amp;seed_title=Help+Wanted</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F05%2Fhelp-wanted%2F&amp;seed_title=Help+Wanted#comments</comments>
		<pubDate>Fri, 05 Jun 2009 17:13:00 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Pixelpost]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=35</guid>
		<description><![CDATA[
Pixelpost is in need of one or two PHP developers who know how to produce clean, well written code. Experience with object oriented programing is a plus, as well as past experience with mySQL/SQLite. Accepted applicants will become one of the developers in the close-knit Pixelpost core development team, which is responsible for creating the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/kandyjaxx/2012468692/" style="float:right; padding: 5px;"><img src="http://farm3.static.flickr.com/2104/2012468692_4ddcbc9a53_m.jpg" alt="Help Wanted" title="Help Wanted by kandyjaxx, on Flickr" /></a></p>
<p>Pixelpost is in need of one or two PHP developers who know how to produce clean, well written code. Experience with object oriented programing is a plus, as well as past experience with mySQL/SQLite. Accepted applicants will become one of the developers in the close-knit Pixelpost core development team, which is responsible for creating the next-generation Pixelpost application. Applicants can expect hours of work, and no pay, other than the satisfaction of creating one of the best open source photoblog apps out there. If you&#8217;ve read this far, and are still interested in helping out, send an e-mail to <em>jobs [at] pixelpost.org</em> with a little information about yourself and a few links to some of the projects you&#8217;ve worked on.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F06%2F05%2Fhelp-wanted%2F&amp;seed_title=Help+Wanted/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Future-Post</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F04%2F02%2Ffuture-post%2F&amp;seed_title=Future-Post</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F04%2F02%2Ffuture-post%2F&amp;seed_title=Future-Post#comments</comments>
		<pubDate>Thu, 02 Apr 2009 16:54:08 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Pixelpost]]></category>

		<category><![CDATA[v2]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=34</guid>
		<description><![CDATA[You may have noticed that there hasn&#8217;t been much activity on the Pixelpost development front, but looks can be deceiving.  Behind the scenes we&#8217;ve been working on some brand new exciting code, which will eventually become Pixelpost 2.0.
With this version, our goal is to make it faster, simpler, and easier to use than our [...]]]></description>
			<content:encoded><![CDATA[<p>You may have noticed that there hasn&#8217;t been much activity on the Pixelpost development front, but looks can be deceiving.  Behind the scenes we&#8217;ve been working on some brand new exciting code, which will eventually become Pixelpost 2.0.</p>
<p>With this version, our goal is to make it faster, simpler, and easier to use than our previous versions. And we&#8217;re doing that by removing all non-essential elements, and making them optional plugins. And that&#8217;s where you come in, after all, we&#8217;re doing all this work for all of you!</p>
<p>Here is the question: <strong>What are the most important things you&#8217;d need Pixelpost to have built-in, and what things would you like to see as optional plugins?</strong><br />
Comments? Tags? Multilingual? EXIF?</p>
<p>Let us know in the <a href="http://www.pixelpost.org/blog/2009/04/02/future-post/#respond">comments</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2009%2F04%2F02%2Ffuture-post%2F&amp;seed_title=Future-Post/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pixelpost.org Server Upgrade</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F08%2F20%2Fpixelpostorg-server-upgrade%2F&amp;seed_title=Pixelpost.org+Server+Upgrade</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F08%2F20%2Fpixelpostorg-server-upgrade%2F&amp;seed_title=Pixelpost.org+Server+Upgrade#comments</comments>
		<pubDate>Thu, 21 Aug 2008 04:56:24 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Pixelpost]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=33</guid>
		<description><![CDATA[Recently, the web server that runs Pixelpost.org was upgraded by our lovely web host Eleven2.  However, as with all upgrades, sometimes things break.  So if you find something that isn&#8217;t working properly on the site, let us know.
Thanks!
]]></description>
			<content:encoded><![CDATA[<p>Recently, the web server that runs Pixelpost.org was upgraded by our lovely web host <a href="http://www.eleven2.com/">Eleven2</a>.  However, as with all upgrades, sometimes things break.  <strong>So if you find something that isn&#8217;t working properly on the site, let us know.</strong></p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F08%2F20%2Fpixelpostorg-server-upgrade%2F&amp;seed_title=Pixelpost.org+Server+Upgrade/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pixelpost 1.7.1 - Security Patch</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F07%2F27%2Fpixelpost-171-security-patch%2F&amp;seed_title=Pixelpost+1.7.1+-+Security+Patch</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F07%2F27%2Fpixelpost-171-security-patch%2F&amp;seed_title=Pixelpost+1.7.1+-+Security+Patch#comments</comments>
		<pubDate>Sun, 27 Jul 2008 22:35:52 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Critical]]></category>

		<category><![CDATA[Pixelpost]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=32</guid>
		<description><![CDATA[With news reports of bank websites being compromised, and personal information being stolen, it&#8217;s hard not to forget about the would be hackers and their quest to take over the world.  (Ok, maybe not that last bit)
Well, it has come to our attention that on a Windows based web server with the PHP setting [...]]]></description>
			<content:encoded><![CDATA[<p>With news reports of bank websites being compromised, and personal information being stolen, it&#8217;s hard not to forget about the would be hackers and their quest to take over the world.  <em>(Ok, maybe not that last bit)</em></p>
<p>Well, it has come to our attention that on a Windows based web server with the PHP setting &#8220;register_globals&#8221; enabled, a hacker could use Pixelpost maliciously to read files located on the server.</p>
<p><strong>If you are running Pixelpost v1.7.1, and are on a Windows server, please download the security patch below to play it safe.</strong> <em>(It won&#8217;t hurt you if you&#8217;re on a Linux box either)</em></p>
<p>If you are running a version of Pixelpost older than 1.7.1, we recommend you upgrade to the latest version, which is available on our home page, as it already includes this patch.  That way your photoblog will be safe and sound.</p>
<p>Download: <strong><a href="http://www.pixelpost.org/releases/pp_v1.7.1_securitypatch01.zip">Pixelpost 1.7.1 - Security Patch 1</a></strong> <em>(9 KB)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F07%2F27%2Fpixelpost-171-security-patch%2F&amp;seed_title=Pixelpost+1.7.1+-+Security+Patch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pixelpost Comes to Debian</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F06%2F19%2Fpixelpost-comes-to-debian%2F&amp;seed_title=Pixelpost+Comes+to+Debian</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F06%2F19%2Fpixelpost-comes-to-debian%2F&amp;seed_title=Pixelpost+Comes+to+Debian#comments</comments>
		<pubDate>Thu, 19 Jun 2008 13:43:28 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Pixelpost]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=31</guid>
		<description><![CDATA[Do the words, &#8220;One Click Install&#8221; and &#8220;Automatic Update&#8221; sound good to you? Well if your web server runs on Debian Linux, both of these can be a reality, thanks to the hard work of Xavier Lüthi!
Installing Pixelpost can now be as simple as typing this single command: sudo apt-get install pixelpost
It doesn&#8217;t get much [...]]]></description>
			<content:encoded><![CDATA[<p>Do the words, &#8220;<strong>One Click Install</strong>&#8221; and &#8220;<strong>Automatic Update</strong>&#8221; sound good to you? Well if your web server runs on Debian Linux, both of these can be a reality, thanks to the hard work of <a href="http://www.luthi.eu/blog/">Xavier Lüthi</a>!</p>
<p>Installing Pixelpost can now be as simple as typing this single command: <code>sudo apt-get install pixelpost</code></p>
<p>It doesn&#8217;t get much better than that!</p>
<p>You can find out more about Xavier, and his Pixelpost endeavors over at his blog: <a href="http://www.luthi.eu/blog/">http://www.luthi.eu/blog/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F06%2F19%2Fpixelpost-comes-to-debian%2F&amp;seed_title=Pixelpost+Comes+to+Debian/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Pixelpost Blog is Back!</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F06%2F07%2Fthe-pixelpost-blog-is-back%2F&amp;seed_title=The+Pixelpost+Blog+is+Back%21</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F06%2F07%2Fthe-pixelpost-blog-is-back%2F&amp;seed_title=The+Pixelpost+Blog+is+Back%21#comments</comments>
		<pubDate>Sat, 07 Jun 2008 18:06:26 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Pixelpost]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=30</guid>
		<description><![CDATA[That&#8217;s right, the blog is back, and so is our featured site section. In fact, if you have any favorite Pixelpost powered sites that have both great photos and a great design, feel free to submit it!
]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, the blog is back, and so is our featured site section. In fact, if you have any favorite Pixelpost powered sites that have both great photos and a great design, feel free to <a href="/featured/#recommend">submit it</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F06%2F07%2Fthe-pixelpost-blog-is-back%2F&amp;seed_title=The+Pixelpost+Blog+is+Back%21/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pixelpost Blog Under Maintenance</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F04%2F22%2Fpixelpost-blog-under-maintenance%2F&amp;seed_title=Pixelpost+Blog+Under+Maintenance</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F04%2F22%2Fpixelpost-blog-under-maintenance%2F&amp;seed_title=Pixelpost+Blog+Under+Maintenance#comments</comments>
		<pubDate>Tue, 22 Apr 2008 15:15:37 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/?p=29</guid>
		<description><![CDATA[Our blog will be offline while we perform some maintenance on it. It should be back again in a week or two. In the mean time, feel free to check out the forums for the latest news.
]]></description>
			<content:encoded><![CDATA[<p>Our blog will be offline while we perform some maintenance on it. It should be back again in a week or two. In the mean time, feel free to check out the forums for the latest news.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F04%2F22%2Fpixelpost-blog-under-maintenance%2F&amp;seed_title=Pixelpost+Blog+Under+Maintenance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pixelpost Featured on Linux.com</title>
		<link>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F03%2F13%2Fpixelpost-featured-on-linuxcom%2F&amp;seed_title=Pixelpost+Featured+on+Linux.com</link>
		<comments>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F03%2F13%2Fpixelpost-featured-on-linuxcom%2F&amp;seed_title=Pixelpost+Featured+on+Linux.com#comments</comments>
		<pubDate>Thu, 13 Mar 2008 19:31:57 +0000</pubDate>
		<dc:creator>jaywilliams</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Pixelpost]]></category>

		<guid isPermaLink="false">http://www.pixelpost.org/blog/2008/03/13/pixelpost-featured-on-linuxcom/</guid>
		<description><![CDATA[Dmitri Popov has written a great article about Pixelpost over on Linux.com.  The whole Pixelpost Crew is thrilled to have Pixelpost featured on such a great website.  If you are new to Pixelpost, I&#8217;d highly recommend you check it out.
http://www.linux.com/feature/128667
]]></description>
			<content:encoded><![CDATA[<p>Dmitri Popov has written a great article about Pixelpost over on <a href="http://www.linux.com/feature/128667">Linux.com</a>.  The whole Pixelpost Crew is thrilled to have Pixelpost featured on such a great website.  If you are new to Pixelpost, I&#8217;d highly recommend you check it out.</p>
<p><a href="http://www.linux.com/feature/128667">http://www.linux.com/feature/128667</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpost.org/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fwww.pixelpost.org%2Fblog%2F2008%2F03%2F13%2Fpixelpost-featured-on-linuxcom%2F&amp;seed_title=Pixelpost+Featured+on+Linux.com/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.176 seconds -->
<!-- Cached page served by WP-Cache -->
