<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Devolio</title>
    <link>http://devolio.com/blog/</link>
    <description>News, resources, tips and tricks for Web Developers and Freelancers.</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2 - http://www.s9y.org/</generator>
    <pubDate>Tue, 02 Sep 2008 08:39:20 GMT</pubDate>

    <image>
        <url>http://devolio.com/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Devolio - News, resources, tips and tricks for Web Developers and Freelancers.</title>
        <link>http://devolio.com/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Google to launch new open source browser: Chrome</title>
    <link>http://devolio.com/blog/archives/415-Google-to-launch-new-open-source-browser-Chrome.html</link>
            <category>Linux</category>
            <category>Misc</category>
            <category>News</category>
    
    <comments>http://devolio.com/blog/archives/415-Google-to-launch-new-open-source-browser-Chrome.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=415</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=415</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    At Google, we have a saying: “&lt;a href=&quot;http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html&quot; title=&quot;A fresh take on the browser&quot;&gt;launch early and iterate&lt;/a&gt;.” While this approach is usually limited to our engineers, it apparently applies to our mailroom as well! As you may have read in the blogosphere, we hit &quot;send&quot; a bit early on a comic book introducing our new open source browser, &lt;a href=&quot;http://www.google.com/chrome&quot; title=&quot;Google Chrome&quot;&gt;Google Chrome&lt;/a&gt;. As we believe in access to information for everyone, we&#039;ve now made the comic publicly available -- you can find it &lt;a href=&quot;http://www.google.com/googlebooks/chrome/&quot; title=&quot;Google Chrome comic&quot;&gt;here&lt;/a&gt;. We will be launching the beta version of Google Chrome tomorrow in more than 100 countries. 
    </content:encoded>

    <pubDate>Tue, 02 Sep 2008 04:39:20 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/415-guid.html</guid>
    
</item>
<item>
    <title>Internet Explorer 8 Beta 2 Now Available</title>
    <link>http://devolio.com/blog/archives/414-Internet-Explorer-8-Beta-2-Now-Available.html</link>
            <category>News</category>
    
    <comments>http://devolio.com/blog/archives/414-Internet-Explorer-8-Beta-2-Now-Available.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=414</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=414</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    You’ll find versions for 32- and 64-bit editions of Windows Vista, Windows XP, Windows Server 2003, and Windows Server 2008. In addition to English, IE8 Beta 2 is available in Japanese, Chinese (Simplified), and German. Additional languages will be available soon.&lt;br /&gt;
&lt;br /&gt;
While Beta 1 was for developers, we think that anyone who browses or works on the web will enjoy IE8 Beta 2. Before the team blogs about our Beta 2 in detail, here’s an &lt;a href=&quot;http://blogs.msdn.com/ie/archive/2008/08/27/internet-explorer-8-beta-2-now-available.aspx&quot; title=&quot;Internet Explorer 8 Beta 2 Now Available&quot;&gt;overview of what you’ll find in IE8&lt;/a&gt;. You can &lt;a href=&quot;http://www.microsoft.com/ie8&quot; title=&quot;Download Internet Explorer 8 Beta 2&quot;&gt;get it here&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Wed, 27 Aug 2008 16:50:20 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/414-guid.html</guid>
    
</item>
<item>
    <title>Data Filtering Using PHP's Filter Functions - Part one</title>
    <link>http://devolio.com/blog/archives/413-Data-Filtering-Using-PHPs-Filter-Functions-Part-one.html</link>
            <category>Articles</category>
            <category>How to</category>
            <category>News</category>
            <category>PHP</category>
            <category>Resources</category>
            <category>Tips &amp; Tricks</category>
    
    <comments>http://devolio.com/blog/archives/413-Data-Filtering-Using-PHPs-Filter-Functions-Part-one.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=413</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=413</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    Filtering data. We all have to do it. Most, if not all of us, despise doing it.  However, unbeknown to most are PHP&#039;s filter_* functions, that allow us to do all sorts of filtering and validation. Using PHP&#039;s filter_* functions, we can validate and sanitize data types, URLs, e-mail addresses, IP addresses, strip bad characters, and more, all with relative ease. This is part one of two, covering filter_var() and the different constants and flags that can be set. &lt;br /&gt;&lt;a href=&quot;http://devolio.com/blog/archives/413-Data-Filtering-Using-PHPs-Filter-Functions-Part-one.html#extended&quot;&gt;Continue reading &quot;Data Filtering Using PHP&#039;s Filter Functions - Part one&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Mon, 25 Aug 2008 11:14:00 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/413-guid.html</guid>
    
</item>
<item>
    <title>Firefox to get massive JavaScript performance boost</title>
    <link>http://devolio.com/blog/archives/412-Firefox-to-get-massive-JavaScript-performance-boost.html</link>
            <category>Javascript</category>
            <category>Misc</category>
            <category>News</category>
            <category>Ponder This</category>
    
    <comments>http://devolio.com/blog/archives/412-Firefox-to-get-massive-JavaScript-performance-boost.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=412</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=412</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    Mozilla is &lt;a href=&quot;http://arstechnica.com/news.ars/post/20080822-firefox-to-get-massive-javascript-performance-boost.html&quot; title=&quot;Firefox to get massive JavaScript performance boost&quot;&gt;leveraging an impressive new optimization technique&lt;/a&gt; to bring a big performance boost to the Firefox JavaScript engine. The code was merged today (but is not yet ready to be enabled by default in the nightly builds) and is planned for inclusion in Firefox 3.1, the next incremental update of the open-source web browser. &lt;br /&gt;
&lt;br /&gt;
They are &quot;getting ready to take JavaScript performance into the next tier&quot; with a radically innovative optimization tactic called tracing that has already produced performance improvements ranging between 20 and 40 times faster in some cases. They believe that this is just the beginning of &lt;a href=&quot;http://weblogs.mozillazine.org/roadmap/archives/2008/08/tracemonkey_javascript_lightsp.html&quot; title=&quot;TraceMonkey: JavaScript Lightspeed&quot;&gt;what can be accomplished with tracing&lt;/a&gt;, and they expect to be able to achieve even better speed as the work continues. &lt;br /&gt;
&lt;br /&gt;
via &lt;a href=&quot;http://tech.slashdot.org/article.pl?sid=08/08/22/2359248&quot; title=&quot;Firefox Gets Massive JavaScript Performance Boost&quot;&gt;Slashdot&lt;/a&gt;, &lt;a href=&quot;http://arstechnica.com/news.ars/post/20080822-firefox-to-get-massive-javascript-performance-boost.html&quot; title=&quot;Firefox to get massive JavaScript performance boost&quot;&gt;ars technica&lt;/a&gt; 
    </content:encoded>

    <pubDate>Sat, 23 Aug 2008 05:42:07 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/412-guid.html</guid>
    
</item>
<item>
    <title>Practical Uses for the PHP Tokenizer</title>
    <link>http://devolio.com/blog/archives/411-Practical-Uses-for-the-PHP-Tokenizer.html</link>
            <category>How to</category>
            <category>Misc</category>
            <category>PHP</category>
            <category>Tips &amp; Tricks</category>
    
    <comments>http://devolio.com/blog/archives/411-Practical-Uses-for-the-PHP-Tokenizer.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=411</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=411</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    When PHP has to process a request, the engine goes through several passes of parsing until the code is expressed as a set of instructions that the interpreter can execute. The first such step is “lexical scanning”, which splits the code into smaller strings called “tokens”. The token is the smallest meaningful unit of your source code, and it can represent a reserved word (for, while, class, if, etc.), operator (+, -, *, /, &amp;&amp;amp; etc.), value literals (integers, floats, strings etc.) and other special symbols.&lt;br /&gt;
&lt;br /&gt;
The same lexical scanner which PHP uses, is also available to userspace PHP developers &lt;a href=&quot;http://c7y.phparch.com/c/entry/1/art,practical_uses_tokenizer&quot; title=&quot;Practical Uses for the PHP Tokenizer&quot;&gt;via the function token_get_all()&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Sat, 23 Aug 2008 05:37:37 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/411-guid.html</guid>
    
</item>
<item>
    <title>The Only Thing We Have To Fear Is Premature Standardization</title>
    <link>http://devolio.com/blog/archives/410-The-Only-Thing-We-Have-To-Fear-Is-Premature-Standardization.html</link>
            <category>Javascript</category>
            <category>Misc</category>
            <category>News</category>
            <category>Ponder This</category>
    
    <comments>http://devolio.com/blog/archives/410-The-Only-Thing-We-Have-To-Fear-Is-Premature-Standardization.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=410</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=410</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    The web is made of open standards. This was a significant factor in the web’s displacement of proprietary application platforms. Openness is hugely attractive, so much so that the web dominates over competitors with better technologies. The difficult tradeoff that comes with a standards-based approach is that it is difficult to innovate. As a result, the basic technologies of the browser have been stalled for a decade. What innovation we’ve enjoyed, such as the Ajax revolution, has come by mining all of the latent, &lt;a href=&quot;http://yuiblog.com/blog/2008/08/14/premature-standardization/&quot; title=&quot;YUI Blog - The Only Thing We Have To Fear Is Premature Standardization&quot;&gt;accidental potential of the existing standards&lt;/a&gt;. That potential has been used up. 
    </content:encoded>

    <pubDate>Sat, 16 Aug 2008 16:23:27 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/410-guid.html</guid>
    
</item>
<item>
    <title>Dynamically Creating Graphs and Charts with PHP and GDChart</title>
    <link>http://devolio.com/blog/archives/409-Dynamically-Creating-Graphs-and-Charts-with-PHP-and-GDChart.html</link>
            <category>How to</category>
            <category>News</category>
            <category>PHP</category>
            <category>Resources</category>
            <category>Tips &amp; Tricks</category>
    
    <comments>http://devolio.com/blog/archives/409-Dynamically-Creating-Graphs-and-Charts-with-PHP-and-GDChart.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=409</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=409</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    If you&#039;ve been working with PHP for a while, you already know that the language makes dynamic image generation very simple: the GD extension and a few lines of PHP code are all you need to create a JPEG, GIF or PNG image from scratch. However, while this works remarkably well for simple tasks, it can become tedious and complicated if you need to generate more complex images, such as &lt;a href=&quot;http://devzone.zend.com/article/3774-Dynamically-Creating-Graphs-and-Charts-with-PHP-and-GDChart&quot; title=&quot;Dynamically Creating Graphs and Charts with PHP and GDChart&quot;&gt;graphs and charts&lt;/a&gt;, at run-time. 
    </content:encoded>

    <pubDate>Thu, 14 Aug 2008 22:31:28 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/409-guid.html</guid>
    
</item>
<item>
    <title>Court: violating copyleft = copyright infringement</title>
    <link>http://devolio.com/blog/archives/408-Court-violating-copyleft-copyright-infringement.html</link>
            <category>News</category>
            <category>Ponder This</category>
    
    <comments>http://devolio.com/blog/archives/408-Court-violating-copyleft-copyright-infringement.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=408</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=408</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    A federal appeals court has &lt;a href=&quot;http://www.cafc.uscourts.gov/opinions/08-1001.pdf&quot;&gt;overruled&lt;/a&gt; a lower court ruling that, if sustained, would have severely hampered the enforceability of free software licenses. The lower court had found that redistributing software in violation of the terms of a free software license could constitute a breach of contract, but was not copyright infringement. The difference matters because copyright law affords much stronger remedies against infringement than does contract law. If allowed to stand, the decision could have neutered popular copyleft licenses such as the GPL and Creative Commons licenses. The district court decision was overturned on Wednesday by the United States Court of Appeals for the Federal Circuit.&lt;br /&gt;
&lt;br /&gt;
via &lt;a href=&quot;http://arstechnica.com/news.ars/post/20080813-court-violating-copyleft-copyright-infringement.html&quot; title=&quot;ars technica - Court: violating copyleft = copyright infringement&quot;&gt;ars technica&lt;/a&gt; 
    </content:encoded>

    <pubDate>Thu, 14 Aug 2008 07:20:21 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/408-guid.html</guid>
    
</item>
<item>
    <title>Build Better Pages With Firebug</title>
    <link>http://devolio.com/blog/archives/407-Build-Better-Pages-With-Firebug.html</link>
            <category>How to</category>
            <category>News</category>
            <category>Resources</category>
            <category>Tips &amp; Tricks</category>
    
    <comments>http://devolio.com/blog/archives/407-Build-Better-Pages-With-Firebug.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=407</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=407</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    Ask web developers to name their desert island Firefox extensions (ignoring for now the improbability of having a laptop while stranded), and they&#039;re bound to put Firebug at or near the top of their lists.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://getfirebug.com/&quot; title=&quot;Firebug&quot;&gt;Firebug&lt;/a&gt; is a web development tool for tweaking CSS, debugging JavaScript and more. In part, it&#039;s like juiced-up &quot;view source&quot; for seeing how sites are put together. But Firebug really shines when it&#039;s used to streamline your own development.&lt;br /&gt;
&lt;br /&gt;
The extension&#039;s slogan is &quot;web development evolved,&quot; which is apt, given how much it changes one&#039;s approach to web work. The tools available in the standard installation of Firebug are super. Coupled with additional functionality available via Firebug extensions (sort of meta extensions, which add on to Firebug itself), you may &lt;a href=&quot;http://www.webmonkey.com/tutorial/Build_Better_Pages_With_Firebug&quot; title=&quot;Build Better Pages with Firebug&quot;&gt;feel like you have evolved&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Thu, 14 Aug 2008 00:02:54 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/407-guid.html</guid>
    
</item>
<item>
    <title>Back to normal</title>
    <link>http://devolio.com/blog/archives/406-Back-to-normal.html</link>
            <category>Misc</category>
    
    <comments>http://devolio.com/blog/archives/406-Back-to-normal.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=406</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=406</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    Though it took much longer than I had originally anticipated, I&#039;m almost &quot;finished&quot; with some of my bigger projects. Finally.&lt;br /&gt;
&lt;br /&gt;
Starting tomorrow, everything will be back to normal. It feels great to be almost caught up. 
    </content:encoded>

    <pubDate>Sun, 10 Aug 2008 15:49:06 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/406-guid.html</guid>
    
</item>
<item>
    <title>Projects abound</title>
    <link>http://devolio.com/blog/archives/405-Projects-abound.html</link>
            <category>Articles</category>
            <category>How to</category>
            <category>Javascript</category>
            <category>Linux</category>
            <category>Misc</category>
            <category>MySQL</category>
            <category>News</category>
            <category>PHP</category>
            <category>Ponder This</category>
            <category>Regex</category>
            <category>Resources</category>
            <category>RSS</category>
            <category>Tips &amp; Tricks</category>
    
    <comments>http://devolio.com/blog/archives/405-Projects-abound.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=405</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=405</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    I apologize for the lack of updates recently. Between work, meetings, and fun little side projects, I&#039;ve practically been coding in my sleep. I&#039;ll be back to a full time posting schedule soon, I promise. In the mean time, here&#039;s a little bit of a description of the projects I&#039;ve been working on.&lt;br /&gt;
&lt;br /&gt;
Magus - An old school web based RPG / Collectible card game. Collect, buy, sell and trade cards to build powerful decks to duel your opponents. Nearly feature complete, in final testing before our first invite-only release.&lt;br /&gt;
&lt;br /&gt;
Semantic IO - A flexible semantic input/output engine. Enter a file, text, or a URL and pull out an array of useful information. Quickly find phone numbers, addresses, names, or custom searches. Summarize long articles. Find keywords. Automatically tag bodies of text. Full i18n support.&lt;br /&gt;
&lt;br /&gt;
And lastly, I&#039;ll be slowly updating and adding (literally) hundreds of research scripts, snippets, and documents to my resources. So - If there&#039;s anything specifically that you&#039;d like to improve at or have an idea you want to share or explore - leave a comment. I&#039;d love to hear from some of you lurkers. 
    </content:encoded>

    <pubDate>Thu, 10 Jul 2008 11:47:42 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/405-guid.html</guid>
    
</item>
<item>
    <title>Wine 1.0 Released</title>
    <link>http://devolio.com/blog/archives/404-Wine-1.0-Released.html</link>
            <category>Linux</category>
            <category>Misc</category>
            <category>News</category>
    
    <comments>http://devolio.com/blog/archives/404-Wine-1.0-Released.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=404</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=404</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    After 15 years of development, &lt;a href=&quot;http://www.winehq.org/?announce=1.0&quot; title=&quot;Wine 1.0 Released&quot;&gt;Wine version 1.0 has been released&lt;/a&gt;. Wine is an Open Source implementation of the Windows API on top of X, OpenGL, and Unix. While perfect windows compatibility has not yet been achieved, full support for Photoshop CS2, Excel Viewer 2003, Word Viewer 2003 and PowerPoint Viewer 2003 have been among the goals prior to the release. For further information about supported applications, head over to the &lt;a href=&quot;http://appdb.winehq.org/&quot; title=&quot;Wine - Appdb&quot;&gt;appdb&lt;/a&gt;. &lt;a href=&quot;http://prdownloads.sourceforge.net/wine/wine-1.0.tar.bz2&quot; title=&quot;Download Wine 1.0 Source&quot;&gt;Get it (source) while it&#039;s hot&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
via &lt;a href=&quot;http://tech.slashdot.org/article.pl?sid=08/06/17/1547241&quot; title=&quot;Wine 1.0 - Uncorked after 15 years&quot;&gt;Slashdot&lt;/a&gt; 
    </content:encoded>

    <pubDate>Tue, 17 Jun 2008 16:25:57 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/404-guid.html</guid>
    
</item>
<item>
    <title>Firefox 3 Download Day / Release</title>
    <link>http://devolio.com/blog/archives/403-Firefox-3-Download-Day-Release.html</link>
            <category>Linux</category>
            <category>Misc</category>
            <category>News</category>
    
    <comments>http://devolio.com/blog/archives/403-Firefox-3-Download-Day-Release.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=403</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=403</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    If you haven&#039;t already heard, Firefox 3 has been released, and they&#039;re having a Download Day today to go for the world record number of software downloads. &lt;a href=&quot;http://www.mozilla.com/en-US/firefox/&quot; title=&quot;Download Firefox 3&quot;&gt;Download it&lt;/a&gt;, see &lt;a href=&quot;http://downloadcounter.sj.mozilla.com/&quot; title=&quot;Firefox 3 Download Counter&quot;&gt;how many downloads they&#039;ve had so far&lt;/a&gt;, or check out all of the &lt;a href=&quot;http://www.mozilla.com/en-US/firefox/features/&quot; title=&quot;Firefox 3 Features&quot;&gt;features that are in Firefox 3&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Tue, 17 Jun 2008 16:17:35 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/403-guid.html</guid>
    
</item>
<item>
    <title>Firefox 3 Release Candidate 2 released</title>
    <link>http://devolio.com/blog/archives/402-Firefox-3-Release-Candidate-2-released.html</link>
            <category>News</category>
            <category>Resources</category>
    
    <comments>http://devolio.com/blog/archives/402-Firefox-3-Release-Candidate-2-released.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=402</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=402</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.mozilla.com/en-US/firefox/all-beta.html&quot; title=&quot;Firefox 3 Release Candidate 2&quot;&gt;Firefox 3 Release Candidate 2&lt;/a&gt; is available in more than 45 languages as a public preview release intended for developer testing and community feedback. It includes new features as well as dramatic improvements to performance, memory usage and speed. 
    </content:encoded>

    <pubDate>Thu, 05 Jun 2008 07:34:24 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/402-guid.html</guid>
    
</item>
<item>
    <title>How to install Apache, MySQL and PHP (LAMP) in Ubuntu 8.04</title>
    <link>http://devolio.com/blog/archives/401-How-to-install-Apache,-MySQL-and-PHP-LAMP-in-Ubuntu-8.04.html</link>
            <category>Articles</category>
            <category>How to</category>
            <category>Linux</category>
            <category>Misc</category>
            <category>MySQL</category>
            <category>PHP</category>
            <category>Resources</category>
    
    <comments>http://devolio.com/blog/archives/401-How-to-install-Apache,-MySQL-and-PHP-LAMP-in-Ubuntu-8.04.html#comments</comments>
    <wfw:comment>http://devolio.com/blog/wfwcomment.php?cid=401</wfw:comment>

    <slash:comments>4</slash:comments>
    <wfw:commentRss>http://devolio.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=401</wfw:commentRss>
    

    <author>nospam@example.com (Joey)</author>
    <content:encoded>
    Just like our &lt;a href=&quot;http://devolio.com/blog/archives/221-How-to-install-Apache,-MySQL-and-PHP-LAMP-in-Ubuntu-7.10.html&quot; title=&quot;Howto install Apache, MySQL, and PHP (LAMP) in Ubuntu 7.10&quot;&gt;Ubuntu 7.10 LAMP how to&lt;/a&gt;, this guide will cover the installation of Apache, MySQL and PHP on Ubuntu 8.04. I assume you&#039;re already running Ubuntu 8.04 for this guide. If you&#039;re still running 7.10, you can use &lt;a href=&quot;http://devolio.com/blog/archives/221-How-to-install-Apache,-MySQL-and-PHP-LAMP-in-Ubuntu-7.10.html&quot; title=&quot;Howto install Apache, MySQL, and PHP (LAMP) in Ubuntu 7.10&quot;&gt;this guide&lt;/a&gt;. &lt;br /&gt;&lt;a href=&quot;http://devolio.com/blog/archives/401-How-to-install-Apache,-MySQL-and-PHP-LAMP-in-Ubuntu-8.04.html#extended&quot;&gt;Continue reading &quot;How to install Apache, MySQL and PHP (LAMP) in Ubuntu 8.04&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Tue, 20 May 2008 01:24:55 -0400</pubDate>
    <guid isPermaLink="false">http://devolio.com/blog/archives/401-guid.html</guid>
    
</item>

</channel>
</rss>