<?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"
	>

<channel>
	<title>ShowMeDo Blog</title>
	<atom:link href="http://blog.showmedo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.showmedo.com</link>
	<description>ShowMeDo News and Thoughts</description>
	<pubDate>Thu, 20 Nov 2008 18:45:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Making Python math 196* faster with shedskin</title>
		<link>http://blog.showmedo.com/2008/11/20/making-python-math-196-faster-with-shedskin/</link>
		<comments>http://blog.showmedo.com/2008/11/20/making-python-math-196-faster-with-shedskin/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 18:45:02 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=362</guid>
		<description><![CDATA[On my personal blog I have written a long entry on Making Python math 196* faster with shedskin.
I compared stock Python 2.5, Psyco and ShedSkin output on an artificial neural network problem. The goal was to quickly estimate how fast a C version might solve the problem without having to actually write C (thus saving [...]]]></description>
			<content:encoded><![CDATA[<p>On my personal blog I have written a long entry on <a href="http://ianozsvald.com/2008/11/17/making-python-math-196-faster-with-shedskin/" onclick="javascript:pageTracker._trackPageview ('/outbound/ianozsvald.com');">Making Python math 196* faster with shedskin</a>.</p>
<p>I compared stock Python 2.5, Psyco and ShedSkin output on an artificial neural network problem. The goal was to quickly estimate how fast a C version might solve the problem without having to actually write C (thus saving hours, sweat and tears).  ShedSkin converts Python code to C++ for compilation with g++.</p>
<p>Psyco speeds things up by a factor of 2.6, ShedSkin by a super-impressive 196 times.</p>
<p>Leonardo Maffi has continued the benchmarks and shows that hand-coded C is between 1.5 and 7 times faster than ShedSkin&#8217;s output.  Auto-generated code that is within a order of magnitude of hand-written code is darned impressive in my book!</p>
<p>He also notes the difficulty of writing a bug-free C version vs the simplicity of dealing with Python (and D) code.</p>
<p>As a side note - Mark Dufour and team at <a href="http://shed-skin.blogspot.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/shed-skin.blogspot.com');">ShedSkin</a> are interested in having extra hands help with the push to a 0.1 release which supports enough Python to be useful to many.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/11/20/making-python-math-196-faster-with-shedskin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Python Beginners - Functions series finished for Club ShowMeDo</title>
		<link>http://blog.showmedo.com/2008/11/14/python-beginners-functions-series-finished-for-club-showmedo/</link>
		<comments>http://blog.showmedo.com/2008/11/14/python-beginners-functions-series-finished-for-club-showmedo/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 16:01:17 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[New ShowMeDo Videos]]></category>

		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=361</guid>
		<description><![CDATA[Python Beginners - Functions teaches you how to write and call your own functions in Python. We cover how to write functions, argument passing, scoping, gotchas and nested functions.
&#8220;I like the beginner videos, because you are confident on what the student must prepare to accept initially as dogma, and suggest to trust you for later [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://showmedo.com/videos/series?name=4oReffvYq">Python Beginners - Functions</a> teaches you how to write and call your own functions in Python. We cover how to write functions, argument passing, scoping, gotchas and nested functions.</p>
<blockquote><p>&#8220;I like the beginner videos, because you are confident on what the student must prepare to accept initially as dogma, and suggest to trust you for later explanation and pragmatize the knowledge-gaps.  You also show the PEPs, as a great way of showing how software is maintained when tens of thousands of people are behind it.&#8221; - Gasto</p></blockquote>
<p>These videos are aimed at new Python programmers who want to understand how to write their own functions and how to avoid making time-eating mistakes.  The 6 episodes last 5-10 minutes each.  The series is available to <a href="http://showmedo.com/club">Club ShowMeDo</a> members.</p>
<blockquote><p>&#8220;So much help for beginners like me, many thanks to Ian.&#8221; - hoya</p></blockquote>
<ol>
<li><a href="http://showmedo.com/videos/video?name=3600000&amp;fromSeriesID=360">Overview</a> (free)<a href="http://showmedo.com/videos/video?name=3600000&amp;fromSeriesID=360"><br />
</a></li>
<li><a href="http://showmedo.com/videos/video?name=3600010&amp;fromSeriesID=360"> Defining a Function</a> (Club-only)<a href="http://showmedo.com/videos/video?name=3600010&amp;fromSeriesID=360"><br />
</a></li>
<li><a href="http://showmedo.com/videos/video?name=3600020&amp;fromSeriesID=360"> Arguments and Return Values 1</a> (Club-only)</li>
<li><a href="http://showmedo.com/videos/video?name=3600030&amp;fromSeriesID=360"> Arguments and Return Values 2</a> (Club-only)</li>
<li><a href="http://showmedo.com/videos/video?name=3600040&amp;fromSeriesID=360"> Variable Scope</a> (Club-only)</li>
<li><a href="http://showmedo.com/videos/video?name=3600050&amp;fromSeriesID=360"> Nested and Private Function</a> (Club-only)</li>
</ol>
<p>Club videos are for paying members (a year&#8217;s membership costs less than a couple of books).  Anyone who contributes a video to ShowMeDo gets free Club membership for life.  Over 140 screencasts exist in the Club now, on top of the 760 free videos in the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/11/14/python-beginners-functions-series-finished-for-club-showmedo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Python 411 interviews ShowMeDo, another Python Papers article</title>
		<link>http://blog.showmedo.com/2008/10/09/python-411-interviews-showmedo-another-python-papers-article/</link>
		<comments>http://blog.showmedo.com/2008/10/09/python-411-interviews-showmedo-another-python-papers-article/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 14:38:25 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=360</guid>
		<description><![CDATA[One of my jobs as co-founder is to work to get kudos for our authors.  Authors put many hours into creating the free ShowMeDo screencasts that educate thousands and I love to see them get recognised.
Ron Stephens of awaretek and the Python 411 podcasts interviewed me last week (30 minute mp3).  Sadly our Skype connection [...]]]></description>
			<content:encoded><![CDATA[<p>One of my jobs as co-founder is to work to get kudos for our authors.  Authors put many hours into creating the free ShowMeDo screencasts that educate thousands and I love to see them get recognised.</p>
<p>Ron Stephens of <a href="http://www.awaretek.com/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.awaretek.com');">awaretek</a> and the <a href="http://www.awaretek.com/python/index.html" onclick="javascript:pageTracker._trackPageview ('/outbound/www.awaretek.com');">Python 411 podcasts</a> interviewed me last week (30 minute <a href="http://media.libsyn.com/media/awaretek/Python411_090508_ShowMeDo.mp3" onclick="javascript:pageTracker._trackPageview ('/outbound/media.libsyn.com');">mp3</a>).  Sadly our Skype connection wasn&#8217;t great so I&#8217;m somewhat garbled (but still understandable!).</p>
<p>Ron mentions the videos of some of our authors, I&#8217;m happy to say that Florian&#8217;s <a href="http://showmedo.com/videos/series?name=D42HbAhqD">advanced Python and decorators</a> series is mentioned, along with ericflo and Eric Holscher&#8217;s two <a href="http://showmedo.com/videos/series?name=PPN7NA155">Django</a> <a href="http://showmedo.com/videos/series?name=3eB8j5P3b">series</a>.</p>
<p>I also wrote a new article for the <a href="http://pythonpapers.org/" onclick="javascript:pageTracker._trackPageview ('/outbound/pythonpapers.org');">Python Papers</a> for <a href="http://archive.pythonpapers.org/ThePythonPapersVolume3Issue2.pdf" onclick="javascript:pageTracker._trackPageview ('/outbound/archive.pythonpapers.org');">Volume 3, Issue 2</a> (pdf).</p>
<p>In this piece I talk about: Gasto, Horst, Kirby, Florian, ericflo, percious, Jiang Xin, Lucas, Marius and Erik Thompson.  The article covers our recent videos, the Club and it talks about how anyone can contribute.</p>
<p>I have another Python Papers article planned for after Christmas, all recent Python authors will get a mention again.  If you are thinking of authoring a screencast - we do try to spread your name and send kudos your way!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/10/09/python-411-interviews-showmedo-another-python-papers-article/feed/</wfw:commentRss>
<enclosure url="http://media.libsyn.com/media/awaretek/Python411_090508_ShowMeDo.mp3" length="33960202" type="audio/mpeg" />
		</item>
		<item>
		<title>&#8216;How I Screencast&#8217; by Florian</title>
		<link>http://blog.showmedo.com/2008/09/16/how-i-screencast-by-florian/</link>
		<comments>http://blog.showmedo.com/2008/09/16/how-i-screencast-by-florian/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 11:13:40 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=359</guid>
		<description><![CDATA[Florian, one of our authors, has written a blog on how &#8216;How I do my screencasts&#8216;.
&#8220;&#8230;I log into my tutorial account and start making the screencast, with recording on. It has to be noted that I have no second monitor showing me the code I am supposed to write, so I pretty much write it [...]]]></description>
			<content:encoded><![CDATA[<p>Florian, one of our authors, has written a blog on how &#8216;<a href="http://segfaulthunter.blogspot.com/2008/09/how-i-do-my-screencasts.html" onclick="javascript:pageTracker._trackPageview ('/outbound/segfaulthunter.blogspot.com');">How I do my screencasts</a>&#8216;.</p>
<blockquote><p>&#8220;&#8230;I log into my tutorial account and start making the screencast, with recording on. It has to be noted that I have no second monitor showing me the code I am supposed to write, so I pretty much write it from memory. With longer screencasts I might have a paper with notes lying next to me. &#8230;&#8221;</p></blockquote>
<p>His method is probably shared by most screencasters, though editing tends to follow (at least for me) to clean-up the recording, remove empty space and smooth out any audio glitches.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/09/16/how-i-screencast-by-florian/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Batteries Included&#8221; Python beginner Club series now finished</title>
		<link>http://blog.showmedo.com/2008/09/16/358/</link>
		<comments>http://blog.showmedo.com/2008/09/16/358/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 10:54:18 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=358</guid>
		<description><![CDATA[Lucas&#8217; Club series for Python beginners which introduces the Python standard library is now complete.
Batteries Included - The Python Standard Library has 9 episodes for Club-subscribers which introduce the core elements of file-system access, using the shell, regular expressions, math, dates and talking to websites.
&#8220;I will thank you for getting this in-depth basic explanation of [...]]]></description>
			<content:encoded><![CDATA[<p>Lucas&#8217; Club series for Python beginners which introduces the Python standard library is now complete.</p>
<p><a href="http://showmedo.com/videos/series?name=o9MBQ758M">Batteries Included - The Python Standard Library</a> has 9 episodes for <a href="http://showmedo.com/club">Club</a>-subscribers which introduce the core elements of file-system access, using the shell, regular expressions, math, dates and talking to websites.</p>
<blockquote><p>&#8220;I will thank you for getting this in-depth basic explanation of the basic modules. It really fills in some missing holes on my knowledge of using this.&#8221; - JZA</p></blockquote>
<p>Each video is around 5 minutes long and includes examples of normal use.</p>
<p>Episodes:</p>
<ol>
<li><a href="http://showmedo.com/videos/video?name=3070000&amp;fromSeriesID=307">Series overview</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070010&amp;fromSeriesID=307">The “sys” module</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070020&amp;fromSeriesID=307">The “os” module</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070030&amp;fromSeriesID=307">The “shutil” module</a> (shell access)<a href="http://showmedo.com/videos/video?name=3070030&amp;fromSeriesID=307"><br />
</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070040&amp;fromSeriesID=307">The “glob” module</a> (file pattern matching)<a href="http://showmedo.com/videos/video?name=3070040&amp;fromSeriesID=307"><br />
</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070050&amp;fromSeriesID=307">The “re” module</a> (regular expressions)<a href="http://showmedo.com/videos/video?name=3070050&amp;fromSeriesID=307"><br />
</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070060&amp;fromSeriesID=307">The “math” module</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070070&amp;fromSeriesID=307">The “urllib2” module</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070080&amp;fromSeriesID=307">The “datetime” module</a></li>
</ol>
<p>Other recent Python videos include <a href="http://showmedo.com/videos/series?name=LY7fNbpc1">Making a Django Dev Environment</a>, <a href="http://showmedo.com/videos/series?name=3tYEHcfn2">TurboGears 2</a>, <a href="http://showmedo.com/videos/series?name=mcfckfJ4w">Agile Python Development</a>, <a href="http://showmedo.com/videos/video?name=1010050&amp;fromSeriesID=101">Python for Math Education</a>, <a href="http://showmedo.com/videos/series?name=iNiVCfz5B">Database Programming</a>, <a href="http://showmedo.com/videos/series?name=FtBpzKiWL">Google App Engine</a> and <a href="http://showmedo.com/videos/series?name=KTN7wMXVN">pyWin32</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/09/16/358/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;An Introduction to Vim Macros&#8221; screencast series</title>
		<link>http://blog.showmedo.com/2008/09/07/an-introduction-to-vim-macros-screencast-series/</link>
		<comments>http://blog.showmedo.com/2008/09/07/an-introduction-to-vim-macros-screencast-series/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 17:51:44 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=354</guid>
		<description><![CDATA[Justin Lilly has created a 3-part series on using Vim macros, Vim is a powerful editor that has a bit of a learning curve.
&#8220;Thanks! Learning by looking over the shoulder is really a great addition to the help files.&#8221;
Screencasts make it easier to see what&#8217;s going on for the new user:

An Introduction to Vim Macros
Vim [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://showmedo.com/videos/?author=9521"><span>Justin Lilly</span></a> has created a 3-part series on <a href="http://showmedo.com/videos/series?name=0oSagogCe">using Vim macros</a>, Vim is a powerful editor that has a bit of a learning curve.</p>
<blockquote><p>&#8220;Thanks! Learning by looking over the shoulder is really a great addition to the help files.&#8221;</p></blockquote>
<p>Screencasts make it easier to see what&#8217;s going on for the new user:</p>
<ol>
<li><a href="http://showmedo.com/videos/video?name=3160000&amp;fromSeriesID=316">An Introduction to Vim Macros</a></li>
<li><a href="http://showmedo.com/videos/video?name=3160010&amp;fromSeriesID=316">Vim Selections</a></li>
<li><a href="http://showmedo.com/videos/video?name=3160020&amp;fromSeriesID=316">Vim % operator</a></li>
</ol>
<p>These videos form a part of our <a href="http://showmedo.com/videos/python">330 Python tutorial</a> screencasts.  Most are free, some are a part of our <a href="http://showmedo.com/club">Club</a> which focuses on carefully planned tutorials for Python beginner/intermediate programmers.</p>
<p>Other recent videos include <a href="http://showmedo.com/videos/series?name=LY7fNbpc1">Making a Django Dev Environment</a>,  <a href="http://showmedo.com/videos/series?name=3tYEHcfn2">TurboGears 2</a>, <a href="http://showmedo.com/videos/series?name=mcfckfJ4w">Agile Python Development</a> and <a href="http://showmedo.com/videos/video?name=1010050&amp;fromSeriesID=101">Python for Math Education</a>.  Recent beginner-Python videos include <a href="http://showmedo.com/videos/series?name=AzsZ2afN2">Common Variables and Containers</a>, <a href="http://showmedo.com/videos/series?name=tIZs1K8h4">Loops and Iteration</a> and <a href="http://showmedo.com/videos/series?name=kmNu2xcp3">What Does Python Look Like?</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/09/07/an-introduction-to-vim-macros-screencast-series/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Django Screencasts in time for v1 release</title>
		<link>http://blog.showmedo.com/2008/09/04/new-django-screencasts-in-time-for-v1-release/</link>
		<comments>http://blog.showmedo.com/2008/09/04/new-django-screencasts-in-time-for-v1-release/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 15:00:04 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=356</guid>
		<description><![CDATA[We&#8217;ve got new Django screencasts (30 to date), first Eric Holscher has added 4 videos on Debugging Django covering the Django error page, logging, pdb in Django and unit tests.
&#8220;Wow! I had no idea Django could do that. Suffering from some serious envy right here. Very, very good screencast. Pacing, structure, content all top notch. [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve got new <a href="http://showmedo.com/videos/django">Django screencasts</a> (30 to date), first Eric Holscher has added 4 videos on <a href="http://showmedo.com/videos/series?name=RjHhY85GD">Debugging Django</a> covering the Django error page, logging, pdb in Django and unit tests.</p>
<blockquote><p>&#8220;Wow! I had no idea Django could do that. Suffering from some serious envy right here. Very, very good screencast. Pacing, structure, content all top notch. When you called up that Python console my jaw dropped a few inches&#8221; - Kyran Dale</p></blockquote>
<p>Second Ian shows <a href="http://showmedo.com/videos/video?name=3240000&amp;fromSeriesID=324">Django in Under a Minute</a> to celebrate the release of Django v1 with an easily blogged, music-backed demo.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/09/04/new-django-screencasts-in-time-for-v1-release/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Searching the Python Bug Tracker&#8221; screencast</title>
		<link>http://blog.showmedo.com/2008/09/04/searching-the-python-bug-tracker-screencast/</link>
		<comments>http://blog.showmedo.com/2008/09/04/searching-the-python-bug-tracker-screencast/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 09:29:10 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=355</guid>
		<description><![CDATA[Andrew Kuchling has created a screencast on Searching the Python Bug Tracker which describes how you can search for bugs in the Python bug tracker.
Searching for bugs helps you figure out if you&#8217;ve found a problem with Python rather than in your own code.  Filing bugs is an important way you can help to make [...]]]></description>
			<content:encoded><![CDATA[<p>Andrew Kuchling has created a screencast on <a href="http://showmedo.com/videos/video?name=3110000&amp;fromSeriesID=311">Searching the Python Bug Tracker</a> which describes how you can search for bugs in the Python bug tracker.</p>
<p>Searching for bugs helps you figure out if you&#8217;ve found a problem with Python rather than in your own code.  Filing bugs is an important way you can help to make Python better.  If you&#8217;ve never seen the Python Bug Tracker, take a look at this lovely demo.</p>
<blockquote><p>&#8220;Wow, this is probably the most eloquent/fine-voiced screencast I&#8217;ve ever heard of.&#8221; - gasto.</p></blockquote>
<p>These videos form a part of our <a href="http://showmedo.com/videos/python">330 Python tutorial</a> screencasts.  Most are free, some are a part of our <a href="http://showmedo.com/club">Club</a> which focuses on carefully planned tutorials for Python beginner/intermediate programmers.</p>
<p>Other recent videos include <a href="http://showmedo.com/videos/series?name=LY7fNbpc1">Making a Django Dev Environment</a>,  <a href="http://showmedo.com/videos/series?name=3tYEHcfn2">TurboGears 2</a>, <a href="http://showmedo.com/videos/series?name=mcfckfJ4w">Agile Python Development</a> and <a href="http://showmedo.com/videos/video?name=1010050&amp;fromSeriesID=101">Python for Math Education</a>.  Recent beginner-Python videos include <a href="http://showmedo.com/videos/series?name=AzsZ2afN2">Common Variables and Containers</a>, <a href="http://showmedo.com/videos/series?name=tIZs1K8h4">Loops and Iteration</a> and <a href="http://showmedo.com/videos/series?name=kmNu2xcp3">What Does Python Look Like?</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/09/04/searching-the-python-bug-tracker-screencast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Python Beginners - Loops and Iteration&#8221; - Club Series fully published</title>
		<link>http://blog.showmedo.com/2008/09/03/python-beginners-loops-and-iteration-club-series-fully-published/</link>
		<comments>http://blog.showmedo.com/2008/09/03/python-beginners-loops-and-iteration-club-series-fully-published/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 10:53:12 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=353</guid>
		<description><![CDATA[I&#8217;m happy to say that I&#8217;ve just published the last three episodes for Python Beginners - Loops and Iteration.  This is another of our Club ShowMeDo Python Beginners series aimed at new Python programmers, it takes you through looping and iteration techniques.
By the end of the series you&#8217;ll be able to read other people&#8217;s Python [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to say that I&#8217;ve just published the last three episodes for <a href="http://showmedo.com/videos/series?name=tIZs1K8h4">Python Beginners - Loops and Iteration</a>.  This is another of our <a href="http://showmedo.com/club">Club ShowMeDo</a> Python Beginners series aimed at new Python programmers, it takes you through looping and iteration techniques.</p>
<p>By the end of the series you&#8217;ll be able to read other people&#8217;s Python code more confidently and you&#8217;ll have useful examples for building your own loops.</p>
<p>The complete series runs for 30 minutes, each episode is around 5 minutes long and includes examples:</p>
<ol>
<li><a href="http://showmedo.com/videos/video?name=2960000&amp;fromSeriesID=296">Overview (Loops and Iteration)</a></li>
<li><a href="http://showmedo.com/videos/video?name=2960010&amp;fromSeriesID=296">For on a List</a></li>
<li><a href="http://showmedo.com/videos/video?name=2960020&amp;fromSeriesID=296">For using a range</a></li>
<li><a href="http://showmedo.com/videos/video?name=2960030&amp;fromSeriesID=296">For using enumerate</a></li>
<li><a href="http://showmedo.com/videos/video?name=2960040&amp;fromSeriesID=296">For on a set</a></li>
<li><a href="http://showmedo.com/videos/video?name=2960050&amp;fromSeriesID=296">For on a dict(ionary)</a></li>
<li><a href="http://showmedo.com/videos/video?name=2960060&amp;fromSeriesID=296">While loops</a></li>
</ol>
<p>Other recent videos include <a href="http://showmedo.com/videos/series?name=kmNu2xcp3">What does Python Look Like?</a>,  <a href="http://showmedo.com/videos/series?name=Y7x8NhL6h">Agile Python/Pylons Development for pySvnManager</a>,  <a href="http://showmedo.com/videos/series?name=LY7fNbpc1">Making a Django Dev Environment</a>, <a href="http://showmedo.com/videos/series?name=3tYEHcfn2">TurboGears 2</a>, <a href="http://showmedo.com/videos/series?name=mcfckfJ4w">Agile Python Development</a> and <a href="http://showmedo.com/videos/video?name=1010050&amp;fromSeriesID=101">Python for Math Education</a>, <a href="http://showmedo.com/videos/series?name=vXJsRwlBX">Developing emol!</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/09/03/python-beginners-loops-and-iteration-club-series-fully-published/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Club videos for &#8220;Batteries Included&#8221; series on The Python Standard Library</title>
		<link>http://blog.showmedo.com/2008/08/28/new-club-videos-for-batteries-included-series-on-the-python-standard-library/</link>
		<comments>http://blog.showmedo.com/2008/08/28/new-club-videos-for-batteries-included-series-on-the-python-standard-library/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 19:55:56 +0000</pubDate>
		<dc:creator>Ian Ozsvald</dc:creator>
		
		<category><![CDATA[New ShowMeDo Videos]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=352</guid>
		<description><![CDATA[Lucas Holland joins Kyran, John and Ian as an author for ShowMeDo&#8217;s Club.  The Club creates tutorial videos for beginner and intermediate Python programmers.
For his first series Lucas covers elements of The Python Standard Library.
Half of the videos are published, the series will be fully published in the next two weeks.  Each video is around [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://showmedo.com/videos/?author=79">Lucas Holland</a> joins <a href="http://showmedo.com/videos/?author=8">Kyran</a>, <a href="http://showmedo.com/videos/?author=11">John</a> and <a href="http://showmedo.com/videos/?author=2">Ian</a> as an author for ShowMeDo&#8217;s <a href="http://showmedo.com/club">Club</a>.  The Club creates tutorial videos for beginner and intermediate Python programmers.</p>
<p>For his first series Lucas covers elements of <a href="http://showmedo.com/videos/series?name=o9MBQ758M">The Python Standard Library</a>.</p>
<p>Half of the videos are published, the series will be fully published in the next two weeks.  Each video is around 5 minutes long and includes examples of normal use.</p>
<p>Episodes:</p>
<ol>
<li><a href="http://showmedo.com/videos/video?name=3070000&amp;fromSeriesID=307">Series overview</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070010&amp;fromSeriesID=307">The “sys” module</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070020&amp;fromSeriesID=307">The “os” module</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070030&amp;fromSeriesID=307">The “shutil” module</a></li>
<li><a href="http://showmedo.com/videos/video?name=3070040&amp;fromSeriesID=307">The “glob” module</a></li>
<li>The “re” module [forthcoming]</li>
<li>The “math” module [forthcoming]</li>
<li>The “urllib2? module [forthcoming]</li>
<li>The “datetime” module [forthcoming]</li>
</ol>
<p>Other recent Python videos include <a href="http://showmedo.com/videos/series?name=LY7fNbpc1">Making a Django Dev Environment</a>, <a href="http://showmedo.com/videos/series?name=3tYEHcfn2">TurboGears 2</a>, <a href="http://showmedo.com/videos/series?name=mcfckfJ4w">Agile Python Development</a>, <a href="http://showmedo.com/videos/video?name=1010050&amp;fromSeriesID=101">Python for Math Education</a>, <a href="http://showmedo.com/videos/series?name=iNiVCfz5B">Database Programming</a>, <a href="http://showmedo.com/videos/series?name=FtBpzKiWL">Google App Engine</a> and <a href="http://showmedo.com/videos/series?name=KTN7wMXVN">pyWin32</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/2008/08/28/new-club-videos-for-batteries-included-series-on-the-python-standard-library/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
