<?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>jaux.net &#187; Programming</title>
	<atom:link href="http://jaux.net/category/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaux.net</link>
	<description>Discovering this wonderful world...</description>
	<lastBuildDate>Fri, 06 Jan 2012 07:49:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title></title>
		<link>http://jaux.net/2012/01/06/roll-your-own-toy-unix-clone-os/</link>
		<comments>http://jaux.net/2012/01/06/roll-your-own-toy-unix-clone-os/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 07:49:09 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=624</guid>
		<description><![CDATA[Roll your own toy UNIX-clone OS I know, many people (not me), still want to write their own OSes. No one can stop you, go for it!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jamesmolloy.co.uk/tutorial_html/index.html" title="Roll your own toy UNIX-clone OS" target="_blank">Roll your own toy UNIX-clone OS</a></p>
<p>I know, many people (not me), still want to write their own OSes. No one can stop you, go for it!</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2012/01/06/roll-your-own-toy-unix-clone-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/12/17/lessons-in-porting-to-python-3/</link>
		<comments>http://jaux.net/2011/12/17/lessons-in-porting-to-python-3/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 18:04:28 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python3]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=610</guid>
		<description><![CDATA[Lessons in porting to Python 3 I think I should start to program in Python 3.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wefearchange.org/2011/12/lessons-in-porting-to-python-3.html" title="Lessons in porting to Python 3">Lessons in porting to Python 3</a></p>
<p>I think I should start to program in Python 3.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/12/17/lessons-in-porting-to-python-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/12/08/fallacies-distributed-computing/</link>
		<comments>http://jaux.net/2011/12/08/fallacies-distributed-computing/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 21:56:06 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=604</guid>
		<description><![CDATA[Fallacies of Distributed Computing People still don&#8217;t understand these ground rules&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Fallacies_of_Distributed_Computing" title="Fallacies of Distributed Computing">Fallacies of Distributed Computing</a></p>
<p>People still don&#8217;t understand these ground rules&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/12/08/fallacies-distributed-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/11/15/gnu-make-errors-in-recipes/</link>
		<comments>http://jaux.net/2011/11/15/gnu-make-errors-in-recipes/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 17:15:42 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=593</guid>
		<description><![CDATA[Errors in Recipes I have seen a rule in Python&#8217;s Makefile The dash in front of the command is to let `make` never mind the return value of the command and continue executing the next command.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gnu.org/s/make/manual/html_node/Errors.html#Errors" title="Errors in Recipes">Errors in Recipes</a></p>
<p>I have seen a rule in Python&#8217;s Makefile</p>
<pre class="brush: bash; title: ; notranslate">
-PYTHONPATH=$(DESTDIR)$(LIBDEST)  $(RUNSHARED) \
    $(HOSTPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
    -d $(LIBDEST) -f \
    -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \
    $(DESTDIR)$(LIBDEST)
</pre>
<p>The dash in front of the command is to let `make` never mind the return value of the command and continue executing the next command.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/11/15/gnu-make-errors-in-recipes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/11/07/ruby-standard-library-converted-gems-ruby/</link>
		<comments>http://jaux.net/2011/11/07/ruby-standard-library-converted-gems-ruby/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 17:45:25 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=590</guid>
		<description><![CDATA[The Ruby Standard Library To Be Converted to Gems for Ruby 2.0? I think this can be a huge step forward and it could be very risky at the same time, so other language should wait and see how it &#8230; <a href="http://jaux.net/2011/11/07/ruby-standard-library-converted-gems-ruby/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.rubyinside.com/the-ruby-standard-library-to-be-converted-to-gems-for-ruby-2-0-5586.html?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+RubyInside+%28Ruby+Inside%29&#038;utm_content=Google+International'>The Ruby Standard Library To Be Converted to Gems for Ruby 2.0?</a></p>
<p>I think this can be a huge step forward and it could be very risky at the same time, so other language should wait and see how it actually becomes before making any decision.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/11/07/ruby-standard-library-converted-gems-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/10/21/mysql-show-columns-syntax/</link>
		<comments>http://jaux.net/2011/10/21/mysql-show-columns-syntax/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 21:57:05 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=588</guid>
		<description><![CDATA[MySQL Show Columns Syntax I can never remember this syntax :&#124;]]></description>
			<content:encoded><![CDATA[<p><a href="http://dev.mysql.com/doc/refman/5.6/en/show-columns.html" title="MySQL Show Columns Syntax">MySQL Show Columns Syntax</a></p>
<p>I can never remember this syntax :|</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/10/21/mysql-show-columns-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/10/18/more-bash-tricks-more/</link>
		<comments>http://jaux.net/2011/10/18/more-bash-tricks-more/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:33:18 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=579</guid>
		<description><![CDATA[Tutorial: The best tips &#038; tricks for bash, explained More bash tricks, MORE!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linuxtutorialblog.com/post/tutorial-the-best-tips-tricks-for-bash" title="Tutorial: The best tips &#038; tricks for bash, explained">Tutorial: The best tips &#038; tricks for bash, explained</a></p>
<p>More bash tricks, MORE!</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/10/18/more-bash-tricks-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/10/18/fix-git-commit/</link>
		<comments>http://jaux.net/2011/10/18/fix-git-commit/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:27:01 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=576</guid>
		<description><![CDATA[Git tip: Fix a mistake in a previous commit Very handy!]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.jacius.info/2008/06/22/git-tip-fix-a-mistake-in-a-previous-commit/" title="Git tip: Fix a mistake in a previous commit">Git tip: Fix a mistake in a previous commit</a></p>
<p>Very handy!</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/10/18/fix-git-commit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/09/28/floatutorial/</link>
		<comments>http://jaux.net/2011/09/28/floatutorial/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 21:20:25 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=572</guid>
		<description><![CDATA[Floatutorial Cannot make float work as the way you want? Read on!]]></description>
			<content:encoded><![CDATA[<p><a href="http://css.maxdesign.com.au/floatutorial/" title="Floatutorial">Floatutorial</a></p>
<p>Cannot make <em>float</em> work as the way you want? Read on!</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/09/28/floatutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://jaux.net/2011/09/28/porting-to-python3/</link>
		<comments>http://jaux.net/2011/09/28/porting-to-python3/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 17:07:47 +0000</pubDate>
		<dc:creator>jaux</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://jaux.net/?p=553</guid>
		<description><![CDATA[Porting to Python 3: An in-depth guide It&#8217;s time to ride on Python 3!]]></description>
			<content:encoded><![CDATA[<p><a href="http://python3porting.com/" title="Porting to Python 3: An in-depth guide">Porting to Python 3: An in-depth guide</a></p>
<p>It&#8217;s time to ride on <a href="http://docs.python.org/py3k/">Python 3</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://jaux.net/2011/09/28/porting-to-python3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

