<?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>Vos Virtual Network &#187; scripting</title>
	<atom:link href="http://vvn.net/wp/tag/scripting/feed/" rel="self" type="application/rss+xml" />
	<link>http://vvn.net/wp</link>
	<description>Jazz Like Code and Music For Life</description>
	<lastBuildDate>Fri, 07 Jan 2011 19:46:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Scripted GUI Testing with Ruby</title>
		<link>http://vvn.net/wp/2008/12/03/scripted-gui-testing-with-ruby/</link>
		<comments>http://vvn.net/wp/2008/12/03/scripted-gui-testing-with-ruby/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 18:02:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CompuScriptology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[book review]]></category>
		<category><![CDATA[continuous integration]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[JRuby]]></category>
		<category><![CDATA[RSpec]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[TDD]]></category>
		<category><![CDATA[test case]]></category>
		<category><![CDATA[test driven development]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=1071</guid>
		<description><![CDATA[Book Review: Scripted GUI Testing with Ruby, by Ian Dees, published by Pragmatic Programmers, 192 pages, Aug. 2008, ISBN: 978-1-9343561-8-0, US $34.95 All software should be rigorously tested, during the development process, and before it is released. Automated testing helps &#8230; <a href="http://vvn.net/wp/2008/12/03/scripted-gui-testing-with-ruby/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Book Review: <a title="Scripted GUI Testing with Ruby" href="http://www.pragprog.com/titles/idgtr/scripted-gui-testing-with-ruby" target="_blank">Scripted GUI Testing with Ruby</a>, by Ian Dees, published by Pragmatic Programmers, 192 pages, Aug. 2008, ISBN: 978-1-9343561-8-0, US $34.95</p>
<p>All software should be rigorously tested, during the development process, and before it is released. Automated testing helps software developers, testing teams and quality control (QC) teams perform comprehensive and effective testing, and find bugs quickly. This new book from the Pragmatic Bookshelf (in the Facets of Ruby Series) documents and demonstrates how to use the Ruby scripting language to test user interfaces reliably and repeatedly. The book covers a wide scope of testing needs, including techniques for scripted testing of MS-Windows GUIs, Java platform GUIs (for Linux, Mac, Windows, and others), or for web applications.</p>
<div class="wp-caption alignnone" style="width: 510px"><img title="Scripted GUI Testing with Ruby by Ian Dees" src="http://oreilly.com/catalog/covers/9781934356180_lrg.jpg" alt="Book cover - Scripted GUI Testing with Ruby" width="500" height="600" /><p class="wp-caption-text">Book cover - Scripted GUI Testing with Ruby</p></div>
<p>This book is a practical, quick moving tutorial based on real life, and real-world GUI applications.  Author Ian Dees says, &#8220;This is the book I wish I had four years ago. That&#8217;s when I faced the equally unpleasant task of fixing old, broken GUI tests and coaxing a rickety third-party toolkit into running new tests. I started looking for a how-to guide on GUI testing to help me down this road. Unfortunately, there were none.&#8221;  So Ian wrote the book he was wishing for.</p>
<p>Mr. Dees points out in the introduction (p.4) that many developers and software professionals have been suspicious or skeptical about test driven development (TDD). However, as he points out, &#8220;the important idea in TDD wasn&#8217;t the tests; it was the fact that writing the tests forces developers to think through how their code will behave.&#8221; After TDD, some people shifted their thought process, and began to speak of &#8220;behavior driven development&#8221; (BDD).  As it turns out, Ruby is a very powerful and expressive language for scripting tests, and <a title="RSpec Info" href="http://rspec.info/" target="_blank">RSpec</a> is a special Ruby tool in the Ruby coders toolbox. &#8220;RSpec was the first Ruby implementation of the ideas behind BDD.&#8221;</p>
<p>Many examples and test scripts are sprinkled throughout the book.</p>
<p><strong>Chapter 2</strong> covers some simple examples with MS-Windows, and <a title="Java Swing - GUI Toolkit" href="http://en.wikipedia.org/wiki/Swing_(Java)" target="_blank">Java Swing</a> (the original Sun Java GUI widgets) with <a title="JRuby" href="http://jruby.codehaus.org/" target="_blank">JRuby</a> and lays a nice foundation for the variety of tests that can be performed with Ruby.</p>
<p><strong>Chapter 3</strong> provides more in depth coverage of how to use RSpec, which is a Ruby gem (or library), that turns Ruby into a powerful (yet simple) test description language. RSpec notation uses words like &#8220;describe&#8221; &#8211; for describing the test, and &#8220;should&#8221; &#8211; a verb for describing how if the test passes or fails.</p>
<p><strong>Chapter 4</strong> provides details on how to simplify your testing, and <strong>Chapter 5</strong> provides many examples for special cases like testing passwords, wrangling documents, cutting and pasting, or searching and replacing  (all under Ruby script control) to exercise many different tests of your application.</p>
<p><strong>Chapter 6 and 7 </strong>provide more details about testing many kinds of apps, testing your tests, testing keystrokes, menus, mouse-clicks, and how to introduce randomness into the testing scenario.  <strong>Chapter 8</strong> delves into using <a title="FIT Testing" href="http://fit.c2.com/" target="_blank">FIT</a> (Ward Cunningham&#8217;s Framework for Integrated Testing). Fortunately, there is a <a title="ruby gem for FIT testing" href="http://fit.rubyforge.org/" target="_blank">Ruby gem for FIT testing</a> also, and Mr. Dees demonstrates how easy it is to utilize simple HTML tables to visualize your testing.</p>
<p><strong>Chapter 9</strong> moves into testing web applications by impersonating a browser, parsing the HTML, or driving the actual browser to perform specific behaviors. There are several great pointers and examples on how to use <a title="Selenium" href="http://selenium.seleniumhq.org/" target="_blank">Selenium</a>, and Selenium with RSpec, and example scenarios with AJAX also (going way beyond the simple HTML page load tests). Another great Ruby browser/web-site testing tool called <a title="Watir" href="http://en.wikipedia.org/wiki/Watir" target="_blank">Watir</a> (Web Application Testing in Ruby) is also described. This is a great chapter. The testing techniques in chapter 9 are worth the price of the book, so if you buy the book, and only read chapter 9, you will be receiving great value.</p>
<p>The book has several more chapters describing RSpec Story Runner, specialized testing on the MAC, and alternate GUI testing for the MS-Windows platform, with Win32::GuiTest. The book concludes with a bibliography, nice summary of resources, and helpful websites related to Ruby and software testing, and an index of contents in the book.</p>
<p><strong>Bonus:</strong> Rails Podcasts has <a title="MP3 download about Scripted GUI Testing with Ruby" href="http://podcast.rubyonrails.org/programs/1/episodes/scripted-gui-testing-with-ruby" target="_blank">an MP3 you can download</a> &#8211; an interview with author Ian Dees about <strong>Scripted GUI Testing with Ruby</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/12/03/scripted-gui-testing-with-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jazz, Innovation, and Scripting</title>
		<link>http://vvn.net/wp/2008/08/30/jazz-innovation-scripting/</link>
		<comments>http://vvn.net/wp/2008/08/30/jazz-innovation-scripting/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 21:44:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CompuScriptology]]></category>
		<category><![CDATA[Grooveology]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[creative thinking]]></category>
		<category><![CDATA[I love jazz]]></category>
		<category><![CDATA[improv]]></category>
		<category><![CDATA[improvisation]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[jazz]]></category>
		<category><![CDATA[jazz musician]]></category>
		<category><![CDATA[jazz standard]]></category>
		<category><![CDATA[JRuby]]></category>
		<category><![CDATA[Model View Controller]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=625</guid>
		<description><![CDATA[Maybe you figured out that I love jazz. I enjoy many musical genres, and musical styles, but lately I&#8217;ve been really exploring jazz. In a recent article I described jazz as being full of  images, mirrors, and reflections.  Jazz is &#8230; <a href="http://vvn.net/wp/2008/08/30/jazz-innovation-scripting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Maybe you figured out that I love jazz. I enjoy many musical genres, and musical styles, but lately I&#8217;ve been <a title="Jazz related articles on vvn.net" href="http://vvn.net/wp/tag/jazz/">really exploring jazz</a>. In <a title="Blue Like Jazz cover question." href="http://vvn.net/wp/2008/08/22/jazz-reflections-mirrors-images-and-reality/">a recent article</a> I described jazz as being full of  images, mirrors, and reflections.  Jazz is like a bridge &#8212; always going from someplace to another place. Jazz is always asking questions, <a title="Bending Notes" href="../2008/04/27/blues-harmonica-musical-innovation/">bending notes</a>, <a title="Wikipedia article about Code Refactoring" href="http://en.wikipedia.org/wiki/Refactoring">refactoring</a> routines, revisiting and revising themes, and making analogies. Jazz energizes me with its innovative musical poetry of patterns, parallels and allegories.</p>
<div id="attachment_628" class="wp-caption alignnone" style="width: 510px"><a href="http://vvn.net/wp/wp-content/uploads/2008/08/jazz_piano_500px.jpg"><img class="size-full wp-image-628" title="Jazz Piano art" src="http://vvn.net/wp/wp-content/uploads/2008/08/jazz_piano_500px.jpg" alt="Jazz Piano Art - found at Detroit River Days" width="500" height="405" /></a><p class="wp-caption-text">Jazz Piano Art - found at Detroit River Days</p></div>
<p>Back in April, I started talking about creativity, <a title="VVN articles tagged with Innovation" href="http://vvn.net/wp/tag/innovation/">innovation</a>, improvisation &#8230; and <a title="Blues and Jazz - related to programming and creativity." href="http://vvn.net/wp/2008/04/27/blues-harmonica-musical-innovation/" target="_blank">how it relates to jazz and the blues</a>&#8230; meditating on the mysteries of musical creativity  &#8230; compared to creativity , innovation, and risk taking in other domains (like art, architecture, design, entrepreneurship, computer programming, product design, web design, etc.) &#8230; pondering the amazing results that often happen <a title="Musical Innovation" href="http://vvn.net/wp/2008/04/27/blues-harmonica-musical-innovation/">when a skilled musician begins  to improvise with a good idea and the right attitude.</a></p>
<p>Surprising success and fantastic results can happen in your life (or your business) when you understand how it all works.  <a title="Innovation" href="http://vvn.net/wp/tag/innovation/">Innovation</a> &#8211; It&#8217;s not a new idea, and I&#8217;m not the only one talking about this. I&#8217;m just improvising on a great theme.</p>
<p>Nick Sieger (no relation to the Detroit rocker Bob Seger) wrote a great article in July called <a title="Jazzers and Programmers" href="http://blog.nicksieger.com/articles/2008/07/19/jazzers-and-programmers" target="_blank">Jazzers and Programmers</a>. I found Nick&#8217;s article while researching some things about Ruby on Rails, and JRuby.  NIck describes the history and styles of jazz and compares it to the history and styles of programming. He talks about jazz fundamentals, and compares the rhythm section (piano, bass, and drums)  to programming libraries, frameworks, and patterns. He compares Bass-Drums-Piano to Model-View-Controller. It&#8217;s really great stuff &#8212; and even includes a musical score from one of the jazz standards, <a title="Blue Monk by Thelonious Monk" href="http://vvn.net/wp/2008/08/26/blue-monk-a-jazz-standard/">Blue Monk</a>.</p>
<p>Nick spiced up the article with nifty quotes from famous jazz musicians like: &#8220;It&#8217;s taken me my whole life to know what not to play&#8221; &#8211; Dizzy Gillespie &#8230; &#8220;Anyone can make the simple complicated. Creativity is making the complicated simple&#8221; &#8211; Charles Mingus  &#8230;  I won&#8217;t steal anymore of Nick&#8217;s thunder. Go <a title="Read the article - Jazzers and Programmers" href="http://blog.nicksieger.com/articles/2008/07/19/jazzers-and-programmers" target="_blank">read the whole article</a>.</p>
<p><a title="Catching my drift - drifting your way to success." href="http://vvn.net/wp/2008/04/18/andy-mckee-guitar-drifting/">Are you catching my drift?</a> We&#8217;re not done with this jam session yet. I&#8217;m just taking a breather in between songs.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/08/30/jazz-innovation-scripting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JavaScript, Perl, PHP, Python, Ruby, and Tcl Today</title>
		<link>http://vvn.net/wp/2008/08/30/javascript-perl-php-python-ruby-and-tcl-today/</link>
		<comments>http://vvn.net/wp/2008/08/30/javascript-perl-php-python-ruby-and-tcl-today/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 09:35:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CompuScriptology]]></category>
		<category><![CDATA[FOSSology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[Tcl]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=578</guid>
		<description><![CDATA[PHP, JavaScript, Ruby, Perl, Python, and Tcl Today: The State of the Scripting Universe Three years ago, Lynn Greiner at CIO Magazine, interviewed the big cheeses responsible for the popular scripting languages PHP, Perl, Tcl, Python, Ruby and JavaScript to &#8230; <a href="http://vvn.net/wp/2008/08/30/javascript-perl-php-python-ruby-and-tcl-today/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>PHP, JavaScript, Ruby, Perl, Python, and Tcl Today: The State of the Scripting Universe</strong></p>
<p>Three years ago, Lynn Greiner at <a title="CIO Magazine" href="http://www.cio.com/" target="_blank">CIO Magazine</a>, interviewed the big cheeses responsible for the popular scripting languages PHP, Perl, Tcl, Python, Ruby and JavaScript to find out where the languages were headed. In this follow-up discussion, <a title="Dynamic Scripting Languages - article at CIO magazine" href="http://www.cio.com/article/446829/PHP_JavaScript_Ruby_Perl_Python_and_Tcl_Today_The_State_of_the_Scripting_Universe" target="_blank">she asks the dynamic language luminaries what has changed since then</a>.</p>
<p>&#8230; and <a title="discussuion - State of the Scripting Universe" href="http://developers.slashdot.org/article.pl?sid=08/08/29/204251" target="_blank">discussion of the article continues at Slashdot</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/08/30/javascript-perl-php-python-ruby-and-tcl-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test of PHP Syntax Highlighting</title>
		<link>http://vvn.net/wp/2008/08/21/test-of-php-syntax-highlighting/</link>
		<comments>http://vvn.net/wp/2008/08/21/test-of-php-syntax-highlighting/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 22:00:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CompuScriptology]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[code colorizing]]></category>
		<category><![CDATA[code documenting]]></category>
		<category><![CDATA[code examples]]></category>
		<category><![CDATA[colorizing]]></category>
		<category><![CDATA[computer languages]]></category>
		<category><![CDATA[parsing]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script examples]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[syntax highlighting]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=396</guid>
		<description><![CDATA[This is a test of PHP Script Syntax Highlighting with the GeSHi code colorizing and syntax parsing library, along with the WP-Syntax plugin. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 &#8230; <a href="http://vvn.net/wp/2008/08/21/test-of-php-syntax-highlighting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a test of PHP Script Syntax Highlighting with the <a href="http://qbnz.com/highlighter/">GeSHi code colorizing and syntax parsing library</a>, along with the <a href="http://wordpress.org/extend/plugins/wp-syntax/">WP-Syntax plugin</a>.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//</span>
<span style="color: #666666; font-style: italic;">// Include the GeSHi library</span>
<span style="color: #666666; font-style: italic;">//</span>
<span style="color: #b1b100;">include_once</span> <span style="color: #0000ff;">'geshi.php'</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//</span>
<span style="color: #666666; font-style: italic;">// Define some source to highlight, a language to use</span>
<span style="color: #666666; font-style: italic;">// and the path to the language files</span>
<span style="color: #666666; font-style: italic;">//</span>
<span style="color: #000088;">$source</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'$foo = 45;
for ( $i = 1; $i &lt; $foo; $i++ ){
echo &quot;$foon&quot;;  --$foo;
}'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$language</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'php'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Create a GeSHi object</span>
&nbsp;
<span style="color: #000088;">$geshi</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> GeSHi<span style="color: #009900;">&#40;</span><span style="color: #000088;">$source</span><span style="color: #339933;">,</span> <span style="color: #000088;">$language</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// And echo the result!//</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$geshi</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">parse_code</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/08/21/test-of-php-syntax-highlighting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>19 Rails Tricks for Ruby Coders</title>
		<link>http://vvn.net/wp/2007/04/17/19-rails-tricks-for-ruby-coders/</link>
		<comments>http://vvn.net/wp/2007/04/17/19-rails-tricks-for-ruby-coders/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 10:36:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=49</guid>
		<description><![CDATA[Here are 19 Rails Tricks Most Ruby Coders Did Not Know &#8212; until the article was published&#8230; I liked the pointer about using BackgroundRB to run long running tasks (in the background).]]></description>
			<content:encoded><![CDATA[<p>Here are <a href="http://www.rubyinside.com/19-rails-tricks-most-rails-coders-dont-know-131.html" target="_blank">19 Rails Tricks</a> Most Ruby Coders Did Not Know &#8212; until the article was published&#8230; I liked the pointer about using <a title="Background Ruby job scheduler" href="http://backgroundrb.rubyforge.org/" target="_blank">BackgroundRB</a> to run long running tasks (in the background).</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2007/04/17/19-rails-tricks-for-ruby-coders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python Tutorial &#8211; at InfoGami</title>
		<link>http://vvn.net/wp/2006/07/15/python-tutorial-at-infogami/</link>
		<comments>http://vvn.net/wp/2006/07/15/python-tutorial-at-infogami/#comments</comments>
		<pubDate>Sat, 15 Jul 2006 17:13:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[code examples]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=14</guid>
		<description><![CDATA[An unofficial Python Tutorial is at growing in the InfoGami wiki system. It has a nice layout and the code examples are easy to read. See for instance the section on Python Modules, or the Brief Tour of the Standard &#8230; <a href="http://vvn.net/wp/2006/07/15/python-tutorial-at-infogami/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An unofficial <a title="Unofficial Python Tutorial" href="http://pytut.infogami.com/">Python Tutorial </a>is at growing in the <a title="The InfoGami wiki system - created by Aaron Swartz" href="http://infogami.com/">InfoGami wiki</a> system. It has a nice layout and the code examples are easy to read.  See for instance the section on <a title="Python Modules" href="http://pytut.infogami.com/node8.html">Python Modules</a>, or the<a title="Brief Tour of the Standard Python Library" href="http://pytut.infogami.com/node12.html"> Brief Tour of the Standard Python Library</a>.  I just really appreciate it when the page layout is so clean and easy to read, code examples sprinkled like spice &#8212; which makes this  technical documentation for Python easy to study.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2006/07/15/python-tutorial-at-infogami/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

