<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Ramaze by Example</title>
	<atom:link href="http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/</link>
	<description>life, music, religion and computers</description>
	<lastBuildDate>Tue, 23 Feb 2010 01:20:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rails Alternatives: Merb, Sinatra &#38; Ramaze &#8212; xambr::blog &#8212; crafting my thoughts</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-260971</link>
		<dc:creator>Rails Alternatives: Merb, Sinatra &#38; Ramaze &#8212; xambr::blog &#8212; crafting my thoughts</dc:creator>
		<pubDate>Thu, 28 May 2009 05:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-260971</guid>
		<description>&lt;p&gt;[...] well written examples of ranging in size from hello world to a social networking site and a great set of blog posts by [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] well written examples of ranging in size from hello world to a social networking site and a great set of blog posts by [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wlb</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-245265</link>
		<dc:creator>wlb</dc:creator>
		<pubDate>Tue, 24 Mar 2009 07:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-245265</guid>
		<description>&lt;p&gt;Great. That does it. Thanks.&lt;/p&gt;

&lt;p&gt;Wm&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great. That does it. Thanks.</p>
<p>Wm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pistos</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-245040</link>
		<dc:creator>Pistos</dc:creator>
		<pubDate>Mon, 23 Mar 2009 13:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-245040</guid>
		<description>&lt;p&gt;wlb: Sorry -- I gave erroneous git instructions.  When you clone, the branches are only available as remote branches.  Check them out with:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;git checkout origin/1-database
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;That is, by referring to the remote with a &quot;origin/&quot; prefix.  To set up a local tracking branch, use this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;git checkout -t origin/1-database
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And from then on you will have a local branch to work with, like so:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;git checkout 1-database
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Sorry for this mixup, I guess I should have tried to use the repo as an anonymous git user.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>wlb: Sorry &#8212; I gave erroneous git instructions.  When you clone, the branches are only available as remote branches.  Check them out with:</p>
<pre><code>git checkout origin/1-database
</code></pre>
<p>That is, by referring to the remote with a &#8220;origin/&#8221; prefix.  To set up a local tracking branch, use this:</p>
<pre><code>git checkout -t origin/1-database
</code></pre>
<p>And from then on you will have a local branch to work with, like so:</p>
<pre><code>git checkout 1-database
</code></pre>
<p>Sorry for this mixup, I guess I should have tried to use the repo as an anonymous git user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wlb</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-244971</link>
		<dc:creator>wlb</dc:creator>
		<pubDate>Mon, 23 Mar 2009 05:33:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-244971</guid>
		<description>&lt;p&gt;Tutorial looks nice. But about Git clone &amp; checkout: am I doing something wrong here? (Judging from the Git documentation, your commands should work as is, but they don&#039;t for me.) After cloning your repository, I do&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  git checkout 1-database
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;and I get the following message:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  error: pathspec &#039;1-database&#039; did not match
  any file(s) known to git
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;when I add &#039;-b&#039; to the command, it accepts it, but there is no change to the working directory: there&#039;s only the README that was there from the start. After the first checkout with &#039;-b&#039;, subsequent checkouts without &#039;-b&#039; succeed, but there is still no change to the working tree. Just that lonely README file. Is there a problem with the repository or with my understanding of Git? (Using Git 1.5.6.2 on OS X)&lt;/p&gt;

&lt;p&gt;Looking forward to working with your code and your interesting tutorial.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Tutorial looks nice. But about Git clone &amp; checkout: am I doing something wrong here? (Judging from the Git documentation, your commands should work as is, but they don&#8217;t for me.) After cloning your repository, I do</p>
<pre><code>  git checkout 1-database
</code></pre>
<p>and I get the following message:</p>
<pre><code>  error: pathspec '1-database' did not match
  any file(s) known to git
</code></pre>
<p>when I add &#8216;-b&#8217; to the command, it accepts it, but there is no change to the working directory: there&#8217;s only the README that was there from the start. After the first checkout with &#8216;-b&#8217;, subsequent checkouts without &#8216;-b&#8217; succeed, but there is still no change to the working tree. Just that lonely README file. Is there a problem with the repository or with my understanding of Git? (Using Git 1.5.6.2 on OS X)</p>
<p>Looking forward to working with your code and your interesting tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justkez &#187; Ramaze livesearch with jQuery</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-217921</link>
		<dc:creator>Justkez &#187; Ramaze livesearch with jQuery</dc:creator>
		<pubDate>Thu, 08 Jan 2009 16:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-217921</guid>
		<description>&lt;p&gt;[...] the basics of Ramaze worked out. If you are not too familar with the framework, I would reccommend Pistos&#8217; excellent &#8220;Ramaze by example&#8221;. The steps involved [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] the basics of Ramaze worked out. If you are not too familar with the framework, I would reccommend Pistos&#8217; excellent &#8220;Ramaze by example&#8221;. The steps involved [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Conclusion</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-200750</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Conclusion</dc:creator>
		<pubDate>Wed, 26 Nov 2008 20:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-200750</guid>
		<description>&lt;p&gt;[...] Catholicism Computes: Ramaze by Example - Part 11: Validation and Error Handling [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Catholicism Computes: Ramaze by Example &#8211; Part 11: Validation and Error Handling [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 11: Validation and Error Handling</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-200525</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 11: Validation and Error Handling</dc:creator>
		<pubDate>Wed, 26 Nov 2008 03:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-200525</guid>
		<description>&lt;p&gt;[...] Catholicism Computes: Ramaze by Example - Part 10: Cosmetics [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Catholicism Computes: Ramaze by Example &#8211; Part 10: Cosmetics [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 10: Cosmetics</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-200054</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 10: Cosmetics</dc:creator>
		<pubDate>Mon, 24 Nov 2008 14:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-200054</guid>
		<description>&lt;p&gt;[...] Catholicism Computes: Ramaze by Example - Part 9: Layout [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Catholicism Computes: Ramaze by Example &#8211; Part 9: Layout [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 9: Layout</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-199828</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 9: Layout</dc:creator>
		<pubDate>Sun, 23 Nov 2008 15:09:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-199828</guid>
		<description>&lt;p&gt;[...] Catholicism Computes: Ramaze by Example - Part 8: Deleting Tasks [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Catholicism Computes: Ramaze by Example &#8211; Part 8: Deleting Tasks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 8: Deleting Tasks</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-199588</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 8: Deleting Tasks</dc:creator>
		<pubDate>Sat, 22 Nov 2008 14:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-199588</guid>
		<description>&lt;p&gt;[...] Catholicism Computes: Ramaze by Example - Part 7: Checking off Tasks [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Catholicism Computes: Ramaze by Example &#8211; Part 7: Checking off Tasks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 7: Checking off Tasks</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-199283</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 7: Checking off Tasks</dc:creator>
		<pubDate>Fri, 21 Nov 2008 16:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-199283</guid>
		<description>&lt;p&gt;[...] Catholicism Computes: Ramaze by Example - Part 6: Adding Tasks [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Catholicism Computes: Ramaze by Example &#8211; Part 6: Adding Tasks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 6: Adding Tasks</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-198902</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 6: Adding Tasks</dc:creator>
		<pubDate>Thu, 20 Nov 2008 18:10:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-198902</guid>
		<description>&lt;p&gt;[...] Catholicism Computes: Ramaze by Example - Part 5: Controller [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Catholicism Computes: Ramaze by Example &#8211; Part 5: Controller [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 5: Controller</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-197997</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 5: Controller</dc:creator>
		<pubDate>Tue, 18 Nov 2008 18:43:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-197997</guid>
		<description>&lt;p&gt;[...] Ramaze by Example - Part 3: ModelRamaze by Example - Part 2: Base ApplicationRamaze by Example - Part 1: Database SchemaRamaze by Example - Part 0: Installation and PreparationRamaze by Example [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Ramaze by Example &#8211; Part 3: ModelRamaze by Example &#8211; Part 2: Base ApplicationRamaze by Example &#8211; Part 1: Database SchemaRamaze by Example &#8211; Part 0: Installation and PreparationRamaze by Example [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 4: View</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-197996</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 4: View</dc:creator>
		<pubDate>Tue, 18 Nov 2008 18:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-197996</guid>
		<description>&lt;p&gt;[...] by Example - Part 1: Database SchemaRamaze by Example - Part 0: Installation and PreparationRamaze by ExampleCatholic Reference [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] by Example &#8211; Part 1: Database SchemaRamaze by Example &#8211; Part 0: Installation and PreparationRamaze by ExampleCatholic Reference [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 3: Model</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-197995</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 3: Model</dc:creator>
		<pubDate>Tue, 18 Nov 2008 18:40:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-197995</guid>
		<description>&lt;p&gt;[...] by Example - Part 1: Database SchemaRamaze by Example - Part 0: Installation and PreparationRamaze by ExampleCatholic Reference ExtensionDiakonos - version [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] by Example &#8211; Part 1: Database SchemaRamaze by Example &#8211; Part 0: Installation and PreparationRamaze by ExampleCatholic Reference ExtensionDiakonos &#8211; version [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 2: Base Application</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-197993</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 2: Base Application</dc:creator>
		<pubDate>Tue, 18 Nov 2008 18:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-197993</guid>
		<description>&lt;p&gt;[...] by Example - Part 0: Installation and PreparationRamaze by ExampleCatholic Reference ExtensionDiakonos - version 0.8.6How to exclude directories with [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] by Example &#8211; Part 0: Installation and PreparationRamaze by ExampleCatholic Reference ExtensionDiakonos &#8211; version 0.8.6How to exclude directories with [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 1: Database Schema</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-197991</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 1: Database Schema</dc:creator>
		<pubDate>Tue, 18 Nov 2008 18:26:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-197991</guid>
		<description>&lt;p&gt;[...] Ramaze by ExampleCatholic Reference ExtensionDiakonos - version 0.8.6How to exclude directories with tarDiakonos - version 0.8.5 [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Ramaze by ExampleCatholic Reference ExtensionDiakonos &#8211; version 0.8.6How to exclude directories with tarDiakonos &#8211; version 0.8.5 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catholicism Computes &#187; Ramaze by Example - Part 0: Installation and Preparation</title>
		<link>http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/comment-page-1/#comment-197988</link>
		<dc:creator>Catholicism Computes &#187; Ramaze by Example - Part 0: Installation and Preparation</dc:creator>
		<pubDate>Tue, 18 Nov 2008 18:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.purepistos.net/?p=126#comment-197988</guid>
		<description>&lt;p&gt;[...] is part 0 of Ramaze by Example, a tutorial on web [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] is part 0 of Ramaze by Example, a tutorial on web [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
