<?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>Chronicles from Edinburgh &#187; programming</title>
	<atom:link href="http://www.micheledallatorre.it/blog/tag/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.micheledallatorre.it/blog</link>
	<description>[.::MDT::.] on the Internet</description>
	<lastBuildDate>Sun, 20 Dec 2009 00:04:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux bash: how to sort a file</title>
		<link>http://www.micheledallatorre.it/blog/2009/04/30/linux-bash-how-to-sort-a-file/</link>
		<comments>http://www.micheledallatorre.it/blog/2009/04/30/linux-bash-how-to-sort-a-file/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 21:33:53 +0000</pubDate>
		<dc:creator>MDT</dc:creator>
				<category><![CDATA[delicious]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.micheledallatorre.it/blog/2009/04/30/linux-bash-how-to-sort-a-file/</guid>
		<description><![CDATA[I just discovered that there is already one sort command in the linux bash!  
Simply use the following code to sort your dict.txt file and output the result to mydict.txt:

sort dict.txt &#62; mydict.txt





			Share this on del.icio.us
		

			Digg this!
		

			Share this on Reddit
		

			Stumble upon something good? Share it on StumbleUpon
		

			Share this on Technorati
		

			Post this to MySpace
		

			Share this [...]]]></description>
		<wfw:commentRss>http://www.micheledallatorre.it/blog/2009/04/30/linux-bash-how-to-sort-a-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to define and access class variables in PHP</title>
		<link>http://www.micheledallatorre.it/blog/2009/01/19/how-to-define-and-access-class-variables-in-php/</link>
		<comments>http://www.micheledallatorre.it/blog/2009/01/19/how-to-define-and-access-class-variables-in-php/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 10:00:05 +0000</pubDate>
		<dc:creator>MDT</dc:creator>
				<category><![CDATA[articles]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.micheledallatorre.it/blog/?p=465</guid>
		<description><![CDATA[One simple thing that I learned in these days at my own expense:
to call a PHP class variable you have to write
$this->foo;
NOT
$this->$foo; (WRONG!)

More precisely, suppose you have a simple PHP class that contains a class variable, $foo in this example:

&#60;?php
   class test &#123;
      public $foo;
&#160;
    [...]]]></description>
		<wfw:commentRss>http://www.micheledallatorre.it/blog/2009/01/19/how-to-define-and-access-class-variables-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
