<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">
<channel>
    <title>Linoleum</title>
    <link>http://linoleum.leapster.org/</link>
    <description>Linux Programming Resources</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <managingEditor>paul@dwerryhouse.com.au</managingEditor>
<pubDate>Fri, 04 Dec 2009 22:16:28 GMT</pubDate>

    <image>
        <url>http://linoleum.leapster.org/templates/linoleum/img/s9y_banner_small.png</url>
        <title>RSS: Linoleum - Linux Programming Resources</title>
        <link>http://linoleum.leapster.org/</link>
        <width>100</width>
        <height>21</height>
    </image>

<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/linoleumlinux" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="linoleumlinux" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
    <title>Perl: reading from a string, as if it was a file</title>
    <link>http://linoleum.leapster.org/archives/262-Perl-reading-from-a-string,-as-if-it-was-a-file.html</link>
            <category>perl</category>
    
    <comments>http://linoleum.leapster.org/archives/262-Perl-reading-from-a-string,-as-if-it-was-a-file.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=262</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=262</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    This seems fairly obvious, but somehow, even after fifteen years of Perl exposure, I've only just cottoned on to it now, so presumably this might be of assistance to other people.&lt;br /&gt;
&lt;br /&gt;
Recently, I needed to read data line by line from a string (rather than from a file). You'd think that this would be a fairly common requirement, but evidently I've managed to either avoid it or fudge it up until now.&lt;br /&gt;
&lt;br /&gt;
Anyway, there was no getting around it this time, but it turns out to be rather simple - just pass a reference to the variable when calling open():&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&lt;tt&gt;&lt;br /&gt;
my $text = "&lt;i&gt;Some long text&lt;/i&gt;";&lt;br /&gt;
&lt;br /&gt;
open(TEXT,"&lt;", \$text);&lt;br /&gt;
&lt;br /&gt;
while(&amp;lt;TEXT&amp;gt;) {&lt;br /&gt;
    # do whatever&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
close(TEXT);&lt;br /&gt;
&lt;/tt&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
That's all there is to it!&lt;br /&gt;
 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=262"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=262" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Wed, 04 Nov 2009 07:51:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/262-guid.html</guid>
    
</item>
<item>
    <title>Potential language changes for JDK7</title>
    <link>http://linoleum.leapster.org/archives/261-Potential-language-changes-for-JDK7.html</link>
            <category>java</category>
    
    <comments>http://linoleum.leapster.org/archives/261-Potential-language-changes-for-JDK7.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=261</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=261</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Jeremy Manson summarises some &lt;a href="http://jeremymanson.blogspot.com/2009/02/small-language-changes-for-jdk7.html"&gt;changes to the Java language&lt;/a&gt; that have been proposed as a result of a call by Sun for submissions. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=261"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=261" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Mon, 02 Mar 2009 15:17:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/261-guid.html</guid>
    
</item>
<item>
    <title>How to build a Facebook app in Django</title>
    <link>http://linoleum.leapster.org/archives/260-How-to-build-a-Facebook-app-in-Django.html</link>
            <category>python</category>
    
    <comments>http://linoleum.leapster.org/archives/260-How-to-build-a-Facebook-app-in-Django.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=260</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=260</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    From the Usawaretech Blog comes this &lt;a href="http://uswaretech.com/blog/2009/02/how-to-build-a-facebook-app-in-django/"&gt;incredibly detailed tutorial&lt;/a&gt; on using Django to write applications for Facebook.&lt;br /&gt;
&lt;br /&gt;
It gives a brief overview on how Facebook applications communicate with the server, walks through setting up the application api key, and then launches into the main thrust of writing an application. This is a very good starting point for anyone looking to write their first Facebook application. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=260"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=260" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Wed, 25 Feb 2009 21:18:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/260-guid.html</guid>
    
</item>
<item>
    <title>Scripting with Guile</title>
    <link>http://linoleum.leapster.org/archives/257-Scripting-with-Guile.html</link>
            <category>scheme</category>
    
    <comments>http://linoleum.leapster.org/archives/257-Scripting-with-Guile.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=257</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=257</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Developerworks are running an article on &lt;a href="http://www.ibm.com/developerworks/linux/library/l-guile/index.html?ca=drs-"&gt;scripting with Guile&lt;/a&gt;, a Scheme interpreter and virtual machine. &lt;br /&gt;
&lt;br /&gt;
There's a brief scheme tutorial, followed by a section on embedding scheme into C programs, and then a section on calling C functions from scheme scripts. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=257"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=257" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Tue, 24 Feb 2009 11:08:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/257-guid.html</guid>
    
</item>
<item>
    <title>Python 3 Primer</title>
    <link>http://linoleum.leapster.org/archives/256-Python-3-Primer.html</link>
            <category>python</category>
    
    <comments>http://linoleum.leapster.org/archives/256-Python-3-Primer.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=256</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=256</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Developerworks are running a comprehensive series on Python version 3, and the changes that it brings with it.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.ibm.com/developerworks/linux/library/l-python3-1/"&gt;Part one&lt;/a&gt; looks at print() - which is now a function, not a statement, and therefore requires parentheses. This, on its own, is going to cause a large number of pre-existing Python programs to break. It also covers the renaming of raw_input() to input, the new bytes literal, changes to string formatting and new I/O mechanisms.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.ibm.com/developerworks/linux/library/l-python3-2/index.html?ca=drs-"&gt;Part two&lt;/a&gt; covers class decorators, metaclasses, abstract base classes, changes to exception handling and the handling of integer literals.&lt;br /&gt;
&lt;br /&gt;
If you do any sort of Python programming, then you'd do well to read these two articles, as Python 3 is here now, and you're likely to be using it in the near future. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=256"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=256" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Sun, 22 Feb 2009 18:45:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/256-guid.html</guid>
    
</item>
<item>
    <title>A Beginner's Introduction to Perl Web Programming</title>
    <link>http://linoleum.leapster.org/archives/255-A-Beginners-Introduction-to-Perl-Web-Programming.html</link>
            <category>perl</category>
    
    <comments>http://linoleum.leapster.org/archives/255-A-Beginners-Introduction-to-Perl-Web-Programming.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=255</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=255</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    O'Reilly have published an introductory article on &lt;a href="http://broadcast.oreilly.com/2008/09/a-beginners-introduction-to-pe.html"&gt;web programming using perl&lt;/a&gt; - in short, CGI.pm for newcomers.&lt;br /&gt;
 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=255"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=255" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Sun, 22 Feb 2009 10:28:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/255-guid.html</guid>
    
</item>
<item>
    <title>Five features that Perl needs</title>
    <link>http://linoleum.leapster.org/archives/254-Five-features-that-Perl-needs.html</link>
            <category>perl</category>
    
    <comments>http://linoleum.leapster.org/archives/254-Five-features-that-Perl-needs.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=254</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=254</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    As Perl rapidly approaches its 21st birthday, O'Reilly have published a write-up of &lt;a href="http://broadcast.oreilly.com/2008/12/five-features-perl-5-needs-now.html"&gt;five improvements that could be made to perl&lt;/a&gt;, ranging from greater frequency of releases to a light version of mod-perl. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=254"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=254" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Fri, 12 Dec 2008 06:56:24 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/254-guid.html</guid>
    
</item>
<item>
    <title>Using readline with python</title>
    <link>http://linoleum.leapster.org/archives/247-Using-readline-with-python.html</link>
            <category>python</category>
    
    <comments>http://linoleum.leapster.org/archives/247-Using-readline-with-python.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=247</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=247</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    GNU readline is a library that provides command-line editing facilities, such being able to browse through history with the cursor up/down keys - most Linux users would have seen this at the bash command line. It's also possible to include these features in your own Python programs, using Python's readline module. &lt;a href="http://broadcast.oreilly.com/2008/11/pymotw-readline.html"&gt;This article from O'Reilly&lt;/a&gt; explains how to do this, and gives a few good examples. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=247"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=247" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Thu, 11 Dec 2008 08:53:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/247-guid.html</guid>
    
</item>
<item>
    <title>Init Call Mechanism in the Linux Kernel</title>
    <link>http://linoleum.leapster.org/archives/251-Init-Call-Mechanism-in-the-Linux-Kernel.html</link>
            <category>kernel</category>
    
    <comments>http://linoleum.leapster.org/archives/251-Init-Call-Mechanism-in-the-Linux-Kernel.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=251</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=251</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Andrew Murray, writing in the latest edition of Linux Gazette, examines Linux's &lt;a href="http://linuxgazette.net/157/amurray.html"&gt;driver initialisation mechanism&lt;/a&gt;. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=251"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=251" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Fri, 05 Dec 2008 15:32:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/251-guid.html</guid>
    
</item>
<item>
    <title>Python 3.0 released</title>
    <link>http://linoleum.leapster.org/archives/246-Python-3.0-released.html</link>
            <category>python</category>
    
    <comments>http://linoleum.leapster.org/archives/246-Python-3.0-released.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=246</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=246</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    &lt;a href="http://mail.python.org/pipermail/python-announce-list/2008-December/007073.html"&gt;Python 3.0 has been released.&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
You can get your copy &lt;a href="http://www.python.org/download/releases/3.0/"&gt;here&lt;/a&gt;. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=246"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=246" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Thu, 04 Dec 2008 15:01:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/246-guid.html</guid>
    
</item>
<item>
    <title>Using the bash debugger</title>
    <link>http://linoleum.leapster.org/archives/245-Using-the-bash-debugger.html</link>
            <category>bourne shell</category>
    
    <comments>http://linoleum.leapster.org/archives/245-Using-the-bash-debugger.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=245</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=245</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    It's not widely known that bash has its own debugger - possibly because most Linux distributions don't install it by default. &lt;a href="http://www.linux.com/feature/153383"&gt;Linux.com&lt;/a&gt; show how to install it, and show a number of examples of using it to debug your own scripts. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=245"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=245" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Thu, 27 Nov 2008 09:25:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/245-guid.html</guid>
    
</item>
<item>
    <title>Convoluted Column Arithmetic Examples Using Awk On Linux Or Unix</title>
    <link>http://linoleum.leapster.org/archives/241-Convoluted-Column-Arithmetic-Examples-Using-Awk-On-Linux-Or-Unix.html</link>
            <category>awk</category>
    
    <comments>http://linoleum.leapster.org/archives/241-Convoluted-Column-Arithmetic-Examples-Using-Awk-On-Linux-Or-Unix.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=241</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=241</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Mike Tremell discusses some methods for performing &lt;a href="http://linuxshellaccount.blogspot.com/2008/11/convoluted-column-arithmetic-examples.html"&gt;column arithmetic&lt;/a&gt; using awk, in his Linux and Unix Menagerie weblog. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=241"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=241" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Wed, 26 Nov 2008 12:06:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/241-guid.html</guid>
    
</item>
<item>
    <title>GCC hacks in the Linux kernel</title>
    <link>http://linoleum.leapster.org/archives/242-GCC-hacks-in-the-Linux-kernel.html</link>
            <category>c</category>
    
    <comments>http://linoleum.leapster.org/archives/242-GCC-hacks-in-the-Linux-kernel.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=242</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=242</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Tim Jones has written an article on &lt;a href="http://www.ibm.com/developerworks/linux/library/l-gcc-hacks/index.html?ca=drs-"&gt;the gcc extensions that are used within the Linux kernel&lt;/a&gt;, such as zero-length arrays (normally arrays must have at least one element defined), type discovery, ranges within switch/case blocks and prefetching. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=242"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=242" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Tue, 25 Nov 2008 14:28:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/242-guid.html</guid>
    
</item>
<item>
    <title>Avoiding Memory Allocation</title>
    <link>http://linoleum.leapster.org/archives/239-Avoiding-Memory-Allocation.html</link>
            <category>c++</category>
    
    <comments>http://linoleum.leapster.org/archives/239-Avoiding-Memory-Allocation.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=239</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=239</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Bojan Nikolic discusses a way to &lt;a href="http://www.bnikolic.co.uk/blog/cpp-rr-memory-alloc1.html"&gt;avoid memory allocation&lt;/a&gt; when coding in C++. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=239"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=239" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Mon, 24 Nov 2008 09:54:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/239-guid.html</guid>
    
</item>
<item>
    <title>Examining the compilation process, part 3</title>
    <link>http://linoleum.leapster.org/archives/228-Examining-the-compilation-process,-part-3.html</link>
            <category>c</category>
    
    <comments>http://linoleum.leapster.org/archives/228-Examining-the-compilation-process,-part-3.html#comments</comments>
    <wfw:comment>http://linoleum.leapster.org/wfwcomment.php?cid=228</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://linoleum.leapster.org/rss.php?version=2.0&amp;type=comments&amp;cid=228</wfw:commentRss>
    

    <author>nospam@example.com (Paul)</author>
    <content:encoded>
    Part three of &lt;a href="http://feeds.feedburner.com/~r/linuxjournalcom/~3/448675214/examining-compilation-process-part-3"&gt;Linux Journal's look at the compilation process&lt;/a&gt; has been published, this time with an introduction to the make utility. 

    &lt;br/&gt;

    &lt;a href="http://www.pheedo.com/click.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=228"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=2618085c117445a7b2e53777eca62185&amp;u=228" border="0"&gt;&lt;/a&gt;


    </content:encoded>

    <pubDate>Sun, 23 Nov 2008 08:11:00 +1100</pubDate>
    <guid isPermaLink="false">http://linoleum.leapster.org/archives/228-guid.html</guid>
    
</item>

</channel>
</rss>
