<?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>ShowMeDo Blogs the World &#187; News</title>
	<atom:link href="http://blog.showmedo.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.showmedo.com</link>
	<description>Building the site, promoting the videos, sharing the knowledge</description>
	<lastBuildDate>Tue, 03 Aug 2010 14:57:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Choosing a Python Web Framework I &#8211; bottling it</title>
		<link>http://blog.showmedo.com/news/choosing-a-python-web-framework-i-bottling-it/</link>
		<comments>http://blog.showmedo.com/news/choosing-a-python-web-framework-i-bottling-it/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 12:27:47 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source Advocacy]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>
		<category><![CDATA[Showmedo Front-page]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=760</guid>
		<description><![CDATA[<p>A few years ago, when choosing a Python Web-framework with which to build Showmedo, life was a little simpler. The big CMS frameworks like Zope and its relatively user-friendly little bro Plone were reasonably well established and there were a few up and coming lighter frameworks, which promised to take one closer to the Python. [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-series-agile-pythonpylons-to-build-pysvnmanager/' rel='bookmark' title='Permanent Link: New series &#8211; Agile Python+Pylons to build pySvnManager'>New series &#8211; Agile Python+Pylons to build pySvnManager</a></li>
<li><a href='http://blog.showmedo.com/news/learn-google-app-engine-with-showmedo/' rel='bookmark' title='Permanent Link: Learn Google App Engine with ShowMeDo'>Learn Google App Engine with ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/introduction-to-python-web-programming-cgi/' rel='bookmark' title='Permanent Link: Introduction to Python web-programming: CGI'>Introduction to Python web-programming: CGI</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A few years ago, when choosing a Python Web-framework with which to build Showmedo, life was a little simpler. The big CMS frameworks like Zope and its relatively user-friendly little bro Plone were reasonably well established and there were a few up and coming lighter frameworks, which promised to take one closer to the Python. Standouts here were<a href="http://turbogears.org"> Turbogears</a> and <a href="http://djangoproject.com">Django</a>.  </p>
<p>I tried using Plone, even bought the book, but found it very unwieldy. Like so many frameworks it was perfectly happy until one wanted to do something outside its workflow plan. Then things got icky, really icky. There was also far too much &#8216;magic&#8217; going on, and far too little connection with the underlying Python. After this experience Turbogears was a breath of fresh air. I could build a web-site in Python and leverage all the efficiency and elegance of the language up close and personal. What could be sweeter? I enjoyed the experience so much I didn&#8217;t give Django a fair crack of the whip. Although back then it was in beta and had been postponing a 1.0 release for a very long time. </p>
<p> Well, time moves on, and if there has been anything as intense as a framework war, it&#8217;s fair to conclude that Django has taken the spoils. Which seems fair. It&#8217;s a fantastically managed project, the documentation seems top notch (very important point), and the community is huge, enthusiastic and growing. For a more flexible experience <a href="http://pylonshq.com">Pylons</a> is threatening to steal some of Turbogears thunder, offering a more modular, &#8216;best of breed&#8217; alternative to Django. One of the big advantages here is the possibility of using the superb and acknowledged king of Python ORM database libraries, <a href="http://sqlalchemy.org">SQLAlchemy</a>. </p>
<p>Anyway, today I come to praise something at the other end of the spectrum and newish to the field, namely <a href="http://bottle.paws.de/docs/dev/index.html">Bottle.py</a>. An entire web-framework packaged in a single Python module, which seemed crazy when first I heard of it. Bottle bills itself as a micro-framework, fast, simple and lightweight. Having had a chance to play around with it, I can testify to this. It makes a superb development server, among other things. After previous battles with Zope/Plone it&#8217;s pretty incredible to get a server up and serving pages in a few lines of Python, with one imported module. Here&#8217;s the &#8216;Hello World&#8217; example:</p>
<pre>
from bottle import route, run

@route('/:name')
def index(name='World'):
    return '<b>Hello %s!</b>' % name

run(host='localhost', port=8080)
</pre>
<p>So, if you fancy getting away from the complexity of the bigger frameworks and getting back to basics, Bottle.py is a great option and an amazing achievement.</p>
<p>In the meantime, a little selection of Python web-framework videos from the Showmedo vaults: </p>
<p>Eric Florenzano&#8217;s humungous series, <a href="http://showmedo.com/videotutorials/series?name=PPN7NA155">Django from the Ground Up</a>.</p>
<p>Jiang Xin&#8217;s <a href="http://showmedo.com/videotutorials/series?name=Y7x8NhL6h">Pylons series</a>.</p>
<p>Kevin Dangor&#8217;s <a href="http://showmedo.com/videotutorials/series?name=IadG6S6pR">Ultimate DVD Turbogears</a> set. Note: Turbogears 2 has seen some impressive changes to the framework, but much of Kevin&#8217;s presentations is still applicable.</p>
<p>We don&#8217;t yet have a bottle.py screencast, but there will be one soon. In the meantime, the closest to low-level web-appery we have is John Montgomery&#8217;s <a href="http://showmedo.com/videotutorials/video?name=2170000&#038;fromSeriesID=217">introduction to Python Web Programming CGI<br />
</a>. Note: this is a club series but the linked introductory video is free and gives an overview.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-series-agile-pythonpylons-to-build-pysvnmanager/' rel='bookmark' title='Permanent Link: New series &#8211; Agile Python+Pylons to build pySvnManager'>New series &#8211; Agile Python+Pylons to build pySvnManager</a></li>
<li><a href='http://blog.showmedo.com/news/learn-google-app-engine-with-showmedo/' rel='bookmark' title='Permanent Link: Learn Google App Engine with ShowMeDo'>Learn Google App Engine with ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/introduction-to-python-web-programming-cgi/' rel='bookmark' title='Permanent Link: Introduction to Python web-programming: CGI'>Introduction to Python web-programming: CGI</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/choosing-a-python-web-framework-i-bottling-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congratulations for Dai&#8217;s 40th Scribus Video!</title>
		<link>http://blog.showmedo.com/news/congratulations-for-dais-40th-scribus-video/</link>
		<comments>http://blog.showmedo.com/news/congratulations-for-dais-40th-scribus-video/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 15:32:21 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=754</guid>
		<description><![CDATA[<p>Big kudos to Dai for adding his 40th Scribus Video to Showmedo. Judging from the feedback and Google, these are by some way the most popular Scribus screencasts on the web and a great testimony to Dai&#8217;s teaching skills and the efficacy screencasting.</p>
<p>You can see Dai&#8217;s Scribus collection here, and sample his 40th video below:</p>
<p></p>


<p>Related [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/showmedoservices/new-videos-scribus-inkscape-c-tutorial/' rel='bookmark' title='Permanent Link: New videos: Scribus, Inkscape, C tutorial'>New videos: Scribus, Inkscape, C tutorial</a></li>
<li><a href='http://blog.showmedo.com/news/new-scribus-video-published/' rel='bookmark' title='Permanent Link: New Scribus Video Published'>New Scribus Video Published</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-march-update-python-subscriptions-going-great-voip-conference-tonight/' rel='bookmark' title='Permanent Link: ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight'>ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Big kudos to Dai for adding his 40th Scribus Video to Showmedo. Judging from the feedback and Google, these are by some way the most popular Scribus screencasts on the web and a great testimony to Dai&#8217;s teaching skills and the efficacy screencasting.</p>
<p>You can see Dai&#8217;s Scribus collection <a href="http://showmedo.com/videotutorials/scribus">here</a>, and sample his 40th video below:</p>
<p><object width="425" height="344" id="_2042" data="http://showmedo.com/static/flowplayer/flowplayer-3.1.5.swf" type="application/x-shockwave-flash"><param name="movie" value="http://showmedo.com/static/flowplayer/flowplayer-3.1.5.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value='config={&quot;key&quot;:&quot;#$824e5316466b69d76dc&quot;,&quot;logo&quot;:{&quot;url&quot;:&quot;http://showmedo.com/static/images/showmedo_logo_vp.png&quot;,&quot;fullscreenOnly&quot;:false,&quot;top&quot;:20,&quot;right&quot;:20,&quot;opacity&quot;:0.5,&quot;displayTime&quot;:0,&quot;linkUrl&quot;:&quot;http://showmedo.com&quot;},&quot;clip&quot;:{&quot;baseUrl&quot;:&quot;http://showmedo.com&quot;,&quot;autoPlay&quot;:false,&quot;autoBuffering&quot;:true},&quot;playlist&quot;:[{&quot;url&quot;:&quot;http://videos1.showmedo.com/ShowMeDos/1250390.flv&quot;,&quot;title&quot;:&quot;Scribus-Blender-Button-Window&quot;,&quot;baseUrl&quot;:&quot;http://showmedo.com&quot;,&quot;autoPlay&quot;:false,&quot;autoBuffering&quot;:true}],&quot;plugins&quot;:{&quot;controls&quot;:{&quot;url&quot;:&quot;http://showmedo.com/static/flowplayer/flowplayer.controls-3.1.5.swf&quot;,&quot;playlist&quot;:true}}}' /></object></p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/showmedoservices/new-videos-scribus-inkscape-c-tutorial/' rel='bookmark' title='Permanent Link: New videos: Scribus, Inkscape, C tutorial'>New videos: Scribus, Inkscape, C tutorial</a></li>
<li><a href='http://blog.showmedo.com/news/new-scribus-video-published/' rel='bookmark' title='Permanent Link: New Scribus Video Published'>New Scribus Video Published</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-march-update-python-subscriptions-going-great-voip-conference-tonight/' rel='bookmark' title='Permanent Link: ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight'>ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/congratulations-for-dais-40th-scribus-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relaunch, Refresh, Renew</title>
		<link>http://blog.showmedo.com/news/relaunch-refresh-renew/</link>
		<comments>http://blog.showmedo.com/news/relaunch-refresh-renew/#comments</comments>
		<pubDate>Sun, 23 May 2010 00:35:59 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[Kyran's thought for the day]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Personal Comment]]></category>
		<category><![CDATA[Showmedo Front-page]]></category>
		<category><![CDATA[Site Relauch]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=749</guid>
		<description><![CDATA[<p>Not sure what it is, but it starts with re. Inspired somewhat by a good friend (thanks Steve!) I galvanised a few galvons and decided to redo Showmedo. Chief among the aims was:</p>

Make navigation to the video-tutorials much easier/more intuitive.
Make the site less visually er weird/fussy/cluttered
Reorganize and refactor the codebase and remove the huge amounts [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/kyrans-thought-for-the-day/a-wing-a-prayer-and-the-ol-big-g/' rel='bookmark' title='Permanent Link: A Wing, a Prayer, and the Ol&#8217; Big G'>A Wing, a Prayer, and the Ol&#8217; Big G</a></li>
<li><a href='http://blog.showmedo.com/news/new-flash-player-being-debuted/' rel='bookmark' title='Permanent Link: New flash-player being debuted'>New flash-player being debuted</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Not sure what it is, but it starts with re. Inspired somewhat by a good friend (thanks Steve!) I galvanised a few galvons and decided to redo Showmedo. Chief among the aims was:</p>
<ul>
<li>Make navigation to the video-tutorials much easier/more intuitive.</li>
<li>Make the site less visually er weird/fussy/cluttered</li>
<li>Reorganize and refactor the codebase and remove the huge amounts of cruft behind the scenes to&#8230;</li>
<li>Free time in the future.</li>
<li>Make things faster. Page-loads, server-load, the works.</li>
<li>Giving the club a <a href='http://showmedo.com/club'>home</a>.</li>
</ul>
<p>I think pretty substantial inroads have been made with regard to these goals. Not perfect by any means, but there is now a reasonably solid base on which to build. I&#8217;ll be documenting the changes a bit in the next week or so, but hope the new site is a much nicer prospect.</p>
<p>Please feel free to direct any feedback <a href='mailto:feedback@showmedo.com'>here</a>.</p>
<p>cheers,<br />
Kyran</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/kyrans-thought-for-the-day/a-wing-a-prayer-and-the-ol-big-g/' rel='bookmark' title='Permanent Link: A Wing, a Prayer, and the Ol&#8217; Big G'>A Wing, a Prayer, and the Ol&#8217; Big G</a></li>
<li><a href='http://blog.showmedo.com/news/new-flash-player-being-debuted/' rel='bookmark' title='Permanent Link: New flash-player being debuted'>New flash-player being debuted</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/relaunch-refresh-renew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Scribus Video Published</title>
		<link>http://blog.showmedo.com/news/new-scribus-video-published/</link>
		<comments>http://blog.showmedo.com/news/new-scribus-video-published/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:23:57 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[OpenOffice]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=734</guid>
		<description><![CDATA[<p>We&#8217;re proud to publish another video in Dai&#8217;s hugely popular Scribus Desktop Publishing set. Entitled Drop Caps Revisited: </p>
<p></p>


<p>Related posts:Congratulations for Dai&#8217;s 40th Scribus Video!
New Video Published: Profiling in IPython
New Video Published: Self-modifying code
</p>


Related posts:<ol><li><a href='http://blog.showmedo.com/news/congratulations-for-dais-40th-scribus-video/' rel='bookmark' title='Permanent Link: Congratulations for Dai&#8217;s 40th Scribus Video!'>Congratulations for Dai&#8217;s 40th Scribus Video!</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-profiling-in-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Profiling in IPython'>New Video Published: Profiling in IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-self-modifying-code/' rel='bookmark' title='Permanent Link: New Video Published: Self-modifying code'>New Video Published: Self-modifying code</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re proud to publish another video in <a href='http://showmedo.com/videotutorials/?author=1922'>Dai&#8217;s</a> hugely popular <strong>Scribus Desktop Publishing</strong> set. Entitled <strong>Drop Caps Revisited</strong>: </p>
<p><object width="425" height="344" id="_1950" data="http://showmedo.com/static/flowplayer/flowplayer-3.1.5.swf" type="application/x-shockwave-flash"><param name="movie" value="http://showmedo.com/static/flowplayer/flowplayer-3.1.5.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value='config={&quot;key&quot;:&quot;#$824e5316466b69d76dc&quot;,&quot;logo&quot;:{&quot;url&quot;:&quot;http://showmedo.com/static/images/showmedo_logo_vp.png&quot;,&quot;fullscreenOnly&quot;:false,&quot;top&quot;:20,&quot;right&quot;:20,&quot;opacity&quot;:0.5,&quot;displayTime&quot;:0,&quot;linkUrl&quot;:&quot;http://showmedo.com&quot;},&quot;clip&quot;:{&quot;baseUrl&quot;:&quot;http://showmedo.com&quot;,&quot;autoPlay&quot;:false,&quot;autoBuffering&quot;:true},&quot;playlist&quot;:[{&quot;url&quot;:&quot;http://videos1.showmedo.com/ShowMeDos/1250280.flv&quot;,&quot;title&quot;:&quot;Drop Caps Re-Visited&quot;,&quot;baseUrl&quot;:&quot;http://showmedo.com&quot;,&quot;autoPlay&quot;:false,&quot;autoBuffering&quot;:true}],&quot;plugins&quot;:{&quot;controls&quot;:{&quot;url&quot;:&quot;http://showmedo.com/static/flowplayer/flowplayer.controls-3.1.5.swf&quot;,&quot;playlist&quot;:true}}}' /></object></p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/congratulations-for-dais-40th-scribus-video/' rel='bookmark' title='Permanent Link: Congratulations for Dai&#8217;s 40th Scribus Video!'>Congratulations for Dai&#8217;s 40th Scribus Video!</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-profiling-in-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Profiling in IPython'>New Video Published: Profiling in IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-self-modifying-code/' rel='bookmark' title='Permanent Link: New Video Published: Self-modifying code'>New Video Published: Self-modifying code</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/new-scribus-video-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing wordpress-twitter plugin</title>
		<link>http://blog.showmedo.com/news/testing-wordpress-twitter-plugin/</link>
		<comments>http://blog.showmedo.com/news/testing-wordpress-twitter-plugin/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 06:02:23 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=617</guid>
		<description><![CDATA[<p>If this gets through, the soon to be awesomeness of this blog will be seeping through to twitter automatically. Or crashing something somewhere. Going to keep on writing to hit the 140 limit &#8211; and see what it does with that.</p>


<p>Related posts:ShowMeDo is on Twitter
Site Relaunch &#8211; customizing that Twitter Widget
New ShowMeDo Video: Introducing WordPress [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/showmedo-is-on-twitter/' rel='bookmark' title='Permanent Link: ShowMeDo is on Twitter'>ShowMeDo is on Twitter</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedo-videos-introducing-wordpress-part-1-of-2/' rel='bookmark' title='Permanent Link: New ShowMeDo Video: Introducing WordPress (part 1 of 2)'>New ShowMeDo Video: Introducing WordPress (part 1 of 2)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If this gets through, the soon to be awesomeness of this blog will be seeping through to twitter automatically. Or crashing something somewhere. Going to keep on writing to hit the 140 limit &#8211; and see what it does with that.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/showmedo-is-on-twitter/' rel='bookmark' title='Permanent Link: ShowMeDo is on Twitter'>ShowMeDo is on Twitter</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedo-videos-introducing-wordpress-part-1-of-2/' rel='bookmark' title='Permanent Link: New ShowMeDo Video: Introducing WordPress (part 1 of 2)'>New ShowMeDo Video: Introducing WordPress (part 1 of 2)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/testing-wordpress-twitter-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New flash-player being debuted</title>
		<link>http://blog.showmedo.com/news/new-flash-player-being-debuted/</link>
		<comments>http://blog.showmedo.com/news/new-flash-player-being-debuted/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 22:24:21 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Kyran's thought for the day]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Showmedo Front-page]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=612</guid>
		<description><![CDATA[<p>It&#8217;s been much more work than anticipated (a definite screencast or three in there somewhere) but we&#8217;ve finally moved to the open-source flowplayer Chief benefits are:</p>

much cleaner jquery-like API 
far greater control over the video-player area. Which means&#8230;
innovative ways of directing users to new content and&#8230;
with luck much more interactivity with the video-player

<p>p.s. the commenting [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedos-interactive-flash/' rel='bookmark' title='Permanent Link: New ShowMeDos: Interactive Flash'>New ShowMeDos: Interactive Flash</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/news/site-update/' rel='bookmark' title='Permanent Link: Site update'>Site update</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been much more work than anticipated (a definite screencast or three in there somewhere) but we&#8217;ve finally moved to the open-source <a href="http://flowplayer.org">flowplayer</a> Chief benefits are:</p>
<ul>
<li>much cleaner jquery-like API </li>
<li>far greater control over the video-player area. Which means&#8230;</li>
<li>innovative ways of directing users to new content and&#8230;</li>
<li>with luck much more interactivity with the video-player</li>
</ul>
<p>p.s. the commenting on-site is getting a much-needed overhaul. With a bit of cookie-magic we should be able to get some dialogues going and vanquish those nasty anonymous comments (mea culpa).</p>
<p> </p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedos-interactive-flash/' rel='bookmark' title='Permanent Link: New ShowMeDos: Interactive Flash'>New ShowMeDos: Interactive Flash</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/news/site-update/' rel='bookmark' title='Permanent Link: Site update'>Site update</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/new-flash-player-being-debuted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python Beginners Completed! &#8211; File Input/Output</title>
		<link>http://blog.showmedo.com/news/python-beginners-completed-file-inputoutput/</link>
		<comments>http://blog.showmedo.com/news/python-beginners-completed-file-inputoutput/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 08:54:56 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[Club Videos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Showmedo Front-page]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=519</guid>
		<description><![CDATA[<p>Finally we&#8217;ve finished the Python Beginners über-series in our Club.  In total the Club has 118 videos over 15 series all focused on teaching new Python skills.  Now we&#8217;re done with Python beginners we&#8217;ll be expanding our scope.</p>
<p>In just under 30 minutes in the File I/O Tutorial I cover reading text files, writing [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/python-beginners-common-variables-and-containers-series-completed/' rel='bookmark' title='Permanent Link: Python Beginners &#8211; Common Variables and Containers Series Completed'>Python Beginners &#8211; Common Variables and Containers Series Completed</a></li>
<li><a href='http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/' rel='bookmark' title='Permanent Link: 15 New Learning Paths (mostly for Pythonistas)'>15 New Learning Paths (mostly for Pythonistas)</a></li>
<li><a href='http://blog.showmedo.com/news/get-going-with-python-2-python-development-environments-ides-part-1/' rel='bookmark' title='Permanent Link: Get Going with Python 2: Python Development Environments (IDEs) part 1'>Get Going with Python 2: Python Development Environments (IDEs) part 1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Finally we&#8217;ve finished the Python Beginners über-series in our <a href="http://showmedo.com/joinus?smdc=bgp_fio">Club</a>.  In total the Club has 118 videos over 15 series all focused on teaching new Python skills.  Now we&#8217;re done with Python beginners we&#8217;ll be expanding our scope.</p>
<p>In just under 30 minutes in the <a href="http://showmedo.com/videos/series?name=bPGq5ZZuz">File I/O Tutorial</a> I cover reading text files, writing textfiles, using binary files (with Python Imaging Library as the example) and persisting data with the pickle module.</p>
<p>Now that we&#8217;re finished with the raw episodes and our Learning Paths are usable I&#8217;m tying together all the Python videos (free+Club) into paths-of-learning that teach you about topics including:</p>
<ul>
<li>Starting to Program with Python</li>
<li>Getting Python Installed</li>
<li>Walking through fully-written programs (long step-by-step series)</li>
<li>Python development environments and tools</li>
<li>Python GUI development</li>
<li>Django</li>
<li>Web-application development</li>
</ul>
<p>The learning-paths, and learning how to use them effectively, are very much a work in progress. As ever we welcome any and all constructive feedback.</p>
<p>Once we&#8217;re done with the Python learning paths we&#8217;ll start to tie together all the other topics in ShowMeDo (heck &#8211; we have well over 1000 screencast tutorials now!) to make learning much easier.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/python-beginners-common-variables-and-containers-series-completed/' rel='bookmark' title='Permanent Link: Python Beginners &#8211; Common Variables and Containers Series Completed'>Python Beginners &#8211; Common Variables and Containers Series Completed</a></li>
<li><a href='http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/' rel='bookmark' title='Permanent Link: 15 New Learning Paths (mostly for Pythonistas)'>15 New Learning Paths (mostly for Pythonistas)</a></li>
<li><a href='http://blog.showmedo.com/news/get-going-with-python-2-python-development-environments-ides-part-1/' rel='bookmark' title='Permanent Link: Get Going with Python 2: Python Development Environments (IDEs) part 1'>Get Going with Python 2: Python Development Environments (IDEs) part 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/python-beginners-completed-file-inputoutput/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Parallel Computing Using Python-based VISION/HPC</title>
		<link>http://blog.showmedo.com/news/visual-parallel-computing-using-python-based-visionhpc/</link>
		<comments>http://blog.showmedo.com/news/visual-parallel-computing-using-python-based-visionhpc/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 17:44:23 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=515</guid>
		<description><![CDATA[<p>We may not know much about the future of computer programming, but one thing we do know is that it is parallel and the biggest challenge facing software programmers and hardware designers is how to exploit all those multiple cores out there. </p>
<p>So Unpingco&#8217;s new Python series is both fascinating and prescient. Oh and useful [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Basic Parallel Computing Using IPython'>New Video Published: Basic Parallel Computing Using IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Basic Parallel Computing Using IPython'>New Video Published: Basic Parallel Computing Using IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Finer Control for Parallel Computing in IPython'>New Video Published: Finer Control for Parallel Computing in IPython</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We may not know much about the future of computer programming, but one thing we do know is that it is parallel and the biggest challenge facing software programmers and hardware designers is how to exploit all those multiple cores out there. </p>
<p>So Unpingco&#8217;s new Python series is both fascinating and prescient. Oh and useful too.</p>
<blockquote><p>The chief impediment to widespread usage of parallel computing is the difficulty in programming HPCs. Furthermore, most users work from a Windows PC so that learning UNIX as a prerequisite to parallel programming is a further obstruction. What is needed is a smooth workflow that simplifies both the programming task and the remote execution management. VISION/HPC is a Python-based, drag-and-drop visual-programming environment that reduces sophisticated programming tasks to dropping and connecting icons in a GUI flowchart&#8230;</p></blockquote>
<p>`<a href='http://showmedo.com/videotutorials/video?name=7430000&#038;fromSeriesID=743'>[1402] Introducing VISION/HPC</a>&#8216;, a video-tutorial by <i><a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a></i>, part of the series `<a href='/videotutorials/series?name=XCsI4bsup'>Visual Parallel Computing Using Python-based VISION/HPC</a>&#8216;</p>
<p>`<a href='http://showmedo.com/videotutorials/video?name=7430010&#038;fromSeriesID=743'>[1403] An Example Using the Imaging Library</a>&#8216;, a video-tutorial by <i><a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a></i>, part of the series `<a href='/videotutorials/series?name=XCsI4bsup'>Visual Parallel Computing Using Python-based VISION/HPC</a>&#8216;</p>
<p>`<a href='http://showmedo.com/videotutorials/video?name=7430020&#038;fromSeriesID=743'>[1404] An Example Using Matplotlib Library</a>&#8216;, a video-tutorial by <i><a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a></i>, part of the series `<a href='/videotutorials/series?name=XCsI4bsup'>Visual Parallel Computing Using Python-based VISION/HPC</a>&#8216;<br />
.</p>
<blockquote></blockquote>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Basic Parallel Computing Using IPython'>New Video Published: Basic Parallel Computing Using IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Basic Parallel Computing Using IPython'>New Video Published: Basic Parallel Computing Using IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Finer Control for Parallel Computing in IPython'>New Video Published: Finer Control for Parallel Computing in IPython</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/visual-parallel-computing-using-python-based-visionhpc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scientific and Parallel Computing Using IPython</title>
		<link>http://blog.showmedo.com/news/scientific-and-parallel-computing-using-ipython/</link>
		<comments>http://blog.showmedo.com/news/scientific-and-parallel-computing-using-ipython/#comments</comments>
		<pubDate>Tue, 05 May 2009 01:09:15 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=480</guid>
		<description><![CDATA[<p>Wearing my research-scientist&#8217;s hat I can honestly assert that Python&#8217;s strength in scientific programming is one of its glories, and maybe less appreciated than it should be. That makes series like unpingo&#8217;s
Scientific and parallel computing using IPython pure gold for its target audience. Combining the power and flexibility of the enhanced IPython interpreter with some [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Getting Started with Parallel IPython'>New Video Published: Getting Started with Parallel IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Getting Started with Parallel IPython'>New Video Published: Getting Started with Parallel IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Finer Control for Parallel Computing in IPython'>New Video Published: Finer Control for Parallel Computing in IPython</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Wearing my research-scientist&#8217;s hat I can honestly assert that Python&#8217;s strength in scientific programming is one of its glories, and maybe less appreciated than it should be. That makes series like unpingo&#8217;s<br />
<a href="http://showmedo.com/videotutorials/series?name=N49qyIFOh">Scientific and parallel computing using IPython</a> pure gold for its target audience. Combining the power and flexibility of the enhanced IPython interpreter with some of the industrial strength Python scientific, numeric and graphing libraries creates a superbly flexible and efficient scientific programming set-up. Check out these vids, rather superb as ever.</p>
<p>The series has five videos:</p>
<ul>
<li>Introducing and setting up IPython on a Windows PC
</li>
<li>Getting around and using the IPython interpreter
</li>
<li>Using on-line documentation for a short case study on computing integrals
</li>
<li>Subclassing and using the Python language for scientific computing
</li>
<li>Using doctest and docstrings in customized classes
<ul></ul>
</li>
</ul>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Getting Started with Parallel IPython'>New Video Published: Getting Started with Parallel IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Getting Started with Parallel IPython'>New Video Published: Getting Started with Parallel IPython</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython-2/' rel='bookmark' title='Permanent Link: New Video Published: Finer Control for Parallel Computing in IPython'>New Video Published: Finer Control for Parallel Computing in IPython</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/scientific-and-parallel-computing-using-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Videos Rolling In</title>
		<link>http://blog.showmedo.com/news/videos-rolling-in/</link>
		<comments>http://blog.showmedo.com/news/videos-rolling-in/#comments</comments>
		<pubDate>Mon, 04 May 2009 02:24:24 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=476</guid>
		<description><![CDATA[<p>Neil Dickenson&#8217;s fantastic Assembly Programming Series continues apace, focussing on the stack.</p>
<p>A nice little video from Dai on using the Nautilus file-browser to do Linux admin tasks.</p>
<p>In just over a minute Ian shows how to install the increasingly necessary firefox adblock plugin. Very slickly done as always. As ever, adblocking is subject to a little [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-python-showmedos-physics-and-3d-using-vpython-first-4-of-9-videos/' rel='bookmark' title='Permanent Link: New Python ShowMeDos: Physics and 3D using VPython (first 4 of 9 videos)'>New Python ShowMeDos: Physics and 3D using VPython (first 4 of 9 videos)</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedo-brush-options-part-2/' rel='bookmark' title='Permanent Link: New ShowMeDo: Brush Options Part 2'>New ShowMeDo: Brush Options Part 2</a></li>
<li><a href='http://blog.showmedo.com/news/incoming-c-videos/' rel='bookmark' title='Permanent Link: Incoming C++ Videos'>Incoming C++ Videos</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Neil Dickenson&#8217;s fantastic <a href="http://showmedo.com/videotutorials/series?name=qdrYRTz8Z">Assembly Programming Series</a> continues apace, focussing on the <a href="http://en.wikipedia.org/wiki/Stack_(data_structure)#Hardware_stacks">stack</a>.</p>
<p>A nice little video from Dai on <a href="http://showmedo.com/videotutorials/video?name=2590060&#038;fromSeriesID=259">using the Nautilus file-browser to do Linux admin</a> tasks.</p>
<p>In just over a minute Ian shows <a href="http://showmedo.com/videotutorials/series?name=5azL1fPUc">how to install</a> the increasingly necessary firefox adblock plugin. Very slickly done as always. As ever, adblocking is subject to a little debate. The garish, obnoxious ads that destroy ones browsing experience are self-defeating anyway so blocking them isn&#8217;t an issue, but more benign, relatively peaceable text-based ads should probably be allowed through if there&#8217;s any chance it will help maintain the flow of quality content.</p>
<p>Some really nice <a href="http://showmedo.com/videotutorials/series?name=gL6eUT5GN">3D modelling and texturing videos</a> from Horst and Leo, using the rather cool <a href="http://www.wings3d.com/">Wings3D open-source modeller</a>, a simpler alternative to the rather more heavyweight Blender. As ever Horst and Leo helpfully provide an <a href="http://showmedo.com/videotutorials/series?name=6TzfBJrSj">English-subtitled version</a>. </p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-python-showmedos-physics-and-3d-using-vpython-first-4-of-9-videos/' rel='bookmark' title='Permanent Link: New Python ShowMeDos: Physics and 3D using VPython (first 4 of 9 videos)'>New Python ShowMeDos: Physics and 3D using VPython (first 4 of 9 videos)</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedo-brush-options-part-2/' rel='bookmark' title='Permanent Link: New ShowMeDo: Brush Options Part 2'>New ShowMeDo: Brush Options Part 2</a></li>
<li><a href='http://blog.showmedo.com/news/incoming-c-videos/' rel='bookmark' title='Permanent Link: Incoming C++ Videos'>Incoming C++ Videos</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/videos-rolling-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incoming C++ Videos</title>
		<link>http://blog.showmedo.com/news/incoming-c-videos/</link>
		<comments>http://blog.showmedo.com/news/incoming-c-videos/#comments</comments>
		<pubDate>Mon, 04 May 2009 01:45:27 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=473</guid>
		<description><![CDATA[<p>We have a huge C++ series coming in, courtesy of antiRTFM &#8211; C++ Tutorials &#8211; Absolute noob Spoonfeed. As a C++ programmer from way back, it&#8217;s great to see these videos at Showmedo. Yisroel has really created something rather special, 30 videos which aim to gently lead you through the initial steps of what is [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/more-c-video-tutorials/' rel='bookmark' title='Permanent Link: More C++ video-tutorials'>More C++ video-tutorials</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/python-3-videos/' rel='bookmark' title='Permanent Link: Python 3 Videos'>Python 3 Videos</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/pythoncard-for-easy-gui-programming-9-videos/' rel='bookmark' title='Permanent Link: PythonCard for easy GUI programming (9 videos)'>PythonCard for easy GUI programming (9 videos)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We have a huge C++ series coming in, courtesy of antiRTFM &#8211; <a href="http://showmedo.com/videotutorials/series?name=7Ja4c8YuL">C++ Tutorials &#8211; Absolute noob Spoonfeed</a>. As a C++ programmer from way back, it&#8217;s great to see these videos at Showmedo. Yisroel has really created something rather special, 30 videos which aim to gently lead you through the initial steps of what is a relatively difficult language. The videos were designed for the smaller YouTube format but work well within that constraint. Although the terser and friendlier scripting languages such as Python are starting to make big inroads in software development, there are still times when the raw speed of C++ and its ability to connect to the machine at a lower level make it the right tool for the job. So check out this rather cool set and leave some nice feedback.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/more-c-video-tutorials/' rel='bookmark' title='Permanent Link: More C++ video-tutorials'>More C++ video-tutorials</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/python-3-videos/' rel='bookmark' title='Permanent Link: Python 3 Videos'>Python 3 Videos</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/pythoncard-for-easy-gui-programming-9-videos/' rel='bookmark' title='Permanent Link: PythonCard for easy GUI programming (9 videos)'>PythonCard for easy GUI programming (9 videos)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/incoming-c-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 New Learning Paths (mostly for Pythonistas)</title>
		<link>http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/</link>
		<comments>http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 18:17:47 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>
		<category><![CDATA[Showmedo Front-page]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=458</guid>
		<description><![CDATA[<p>We&#8217;ve published 15 new Learning Paths to help you build your knowledge of Python, C and Screencasting.  The Paths mix free and Club content in a guided journey, pulling out exactly the right episodes and series to help you complete your knowledge for a particular subject.</p>
<p>Popular Paths include:</p>

Beginner Python Tutorial
Intermediate Python Tutorial
Python Development Environments
Beginning Python [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/python-showmedos/python-tutorials-via-learning-paths/' rel='bookmark' title='Permanent Link: Python Tutorials via Learning Paths'>Python Tutorials via Learning Paths</a></li>
<li><a href='http://blog.showmedo.com/news/python-beginners-completed-file-inputoutput/' rel='bookmark' title='Permanent Link: Python Beginners Completed! &#8211; File Input/Output'>Python Beginners Completed! &#8211; File Input/Output</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/huge-screencast-series-developing-emol-for-new-pythonistas/' rel='bookmark' title='Permanent Link: Huge screencast series &#8216;Developing emol!&#8217; for new Pythonistas'>Huge screencast series &#8216;Developing emol!&#8217; for new Pythonistas</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve published 15 new <a href="http://showmedo.com/learningpaths/">Learning Paths</a> to help you build your knowledge of Python, C and Screencasting.  The Paths mix free and Club content in a guided journey, pulling out exactly the right episodes and series to help you complete your knowledge for a particular subject.</p>
<p>Popular Paths include:</p>
<ul>
<li><a href="http://showmedo.com/learningpaths/11">Beginner Python Tutorial</a></li>
<li><a href="http://showmedo.com/learningpaths/12">Intermediate Python Tutorial</a></li>
<li><a href="http://showmedo.com/learningpaths/21/view">Python Development Environments</a></li>
<li><a href="http://showmedo.com/learningpaths/19">Beginning Python Web-development</a></li>
<li><a href="http://showmedo.com/learningpaths/20">Beginning Django Tutorials</a></li>
<li><a href="http://showmedo.com/learningpaths/16">Python 3.0 Introduction</a></li>
<li><a href="http://showmedo.com/learningpaths/18">Python GUI Building</a></li>
<li><a href="http://showmedo.com/learningpaths/17">Scientific Python Programming</a></li>
<li><a title="screencast tutorial" href="http://showmedo.com/learningpaths/23">Screencasting Tutorial</a></li>
</ul>
<p>If you like the idea of these guided tutorials, please give us feedback and help us to spread the word by blogging and tweeting (<a href="http://twitter.com/showmedo">@showmedo</a>).</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/python-showmedos/python-tutorials-via-learning-paths/' rel='bookmark' title='Permanent Link: Python Tutorials via Learning Paths'>Python Tutorials via Learning Paths</a></li>
<li><a href='http://blog.showmedo.com/news/python-beginners-completed-file-inputoutput/' rel='bookmark' title='Permanent Link: Python Beginners Completed! &#8211; File Input/Output'>Python Beginners Completed! &#8211; File Input/Output</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/huge-screencast-series-developing-emol-for-new-pythonistas/' rel='bookmark' title='Permanent Link: Huge screencast series &#8216;Developing emol!&#8217; for new Pythonistas'>Huge screencast series &#8216;Developing emol!&#8217; for new Pythonistas</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Screencast Tutorial Learning Path</title>
		<link>http://blog.showmedo.com/news/new-screencast-tutorial-learning-path/</link>
		<comments>http://blog.showmedo.com/news/new-screencast-tutorial-learning-path/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 17:36:36 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=447</guid>
		<description><![CDATA[<p>In the Learning Paths section we&#8217;ve added a new Screencast Tutorial.  The tutorial covers techniques, applications (for Windows, Mac and Linux) and how you can upload your screencasts into ShowMeDo.</p>


<p>Related posts:15 New Learning Paths (mostly for Pythonistas)
Python Tutorials via Learning Paths
&#8216;How I Screencast&#8217; by Florian
</p>


Related posts:<ol><li><a href='http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/' rel='bookmark' title='Permanent Link: 15 New Learning Paths (mostly for Pythonistas)'>15 New Learning Paths (mostly for Pythonistas)</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-tutorials-via-learning-paths/' rel='bookmark' title='Permanent Link: Python Tutorials via Learning Paths'>Python Tutorials via Learning Paths</a></li>
<li><a href='http://blog.showmedo.com/news/how-i-screencast-by-florian/' rel='bookmark' title='Permanent Link: &#8216;How I Screencast&#8217; by Florian'>&#8216;How I Screencast&#8217; by Florian</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In the <a title="python tutorials" href="http://showmedo.com/learningpaths/">Learning Paths</a> section we&#8217;ve added a new <a title="screencast tutorial" href="http://showmedo.com/learningpaths/23/view">Screencast Tutorial</a>.  The tutorial covers techniques, applications (for Windows, Mac and Linux) and how you can upload your screencasts into ShowMeDo.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/' rel='bookmark' title='Permanent Link: 15 New Learning Paths (mostly for Pythonistas)'>15 New Learning Paths (mostly for Pythonistas)</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-tutorials-via-learning-paths/' rel='bookmark' title='Permanent Link: Python Tutorials via Learning Paths'>Python Tutorials via Learning Paths</a></li>
<li><a href='http://blog.showmedo.com/news/how-i-screencast-by-florian/' rel='bookmark' title='Permanent Link: &#8216;How I Screencast&#8217; by Florian'>&#8216;How I Screencast&#8217; by Florian</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/new-screencast-tutorial-learning-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showmedo Relaunching</title>
		<link>http://blog.showmedo.com/news/showmedo-relaunching/</link>
		<comments>http://blog.showmedo.com/news/showmedo-relaunching/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 02:41:03 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Showmedo Front-page]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=378</guid>
		<description><![CDATA[<p>Frantic scenes aboard the SS Showmedo as we move to a new server and introduce a much-changed site. According to google analytics about one third of our regular audience are currently lost in cyberspace as various DNS caches around the globe send them off to the old site or some weird fusion of old and [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/were-moving-to-a-new-host-this-weekend/' rel='bookmark' title='Permanent Link: We&#8217;re moving to a new host this weekend'>We&#8217;re moving to a new host this weekend</a></li>
<li><a href='http://blog.showmedo.com/news/python-beginners-completed-file-inputoutput/' rel='bookmark' title='Permanent Link: Python Beginners Completed! &#8211; File Input/Output'>Python Beginners Completed! &#8211; File Input/Output</a></li>
<li><a href='http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/' rel='bookmark' title='Permanent Link: 15 New Learning Paths (mostly for Pythonistas)'>15 New Learning Paths (mostly for Pythonistas)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Frantic scenes aboard the SS Showmedo as we move to a new server and introduce a much-changed site. According to google analytics about one third of our regular audience are currently lost in cyberspace as various DNS caches around the globe send them off to the old site or some weird fusion of old and new.</p>
<p>Moving server has been as stressful as I imagined, probably the reason for all those &#8216;moving servers is stressful&#8217; blog entries around the web. We&#8217;re currently a little rickety and scared to crank up the engines for fear of shaking the ship apart. But, thanks to some caching magic, we seem to be serving pages and videos.</p>
<p>The new site design is the result of finally having a big chunk of hours to dedicate to Showmedo, rather than cadging them after hours from the day-job. I think things are a deal cleaner and more professional, allowing for my being rather an accidental web-developer. The feedback has been pretty positive, which is always nice.</p>
<p>Our new initiative viz web-education is Learning-paths. I&#8217;ll be blogging a little about this as soon as I manage to get the server software installed. For all you linux users out there used to the simple pleasures of &#8216;apt-get install&#8217; or &#8216;yum&#8217; or &#8216;rpm&#8217; or any one of the new-fangled ways of getting software onto your *buntu, opensuse, fedora, etc. box, be very thankful; I have been plunged back a couple of decades or so to library-dependency hell and it is a head-trip indeed.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/were-moving-to-a-new-host-this-weekend/' rel='bookmark' title='Permanent Link: We&#8217;re moving to a new host this weekend'>We&#8217;re moving to a new host this weekend</a></li>
<li><a href='http://blog.showmedo.com/news/python-beginners-completed-file-inputoutput/' rel='bookmark' title='Permanent Link: Python Beginners Completed! &#8211; File Input/Output'>Python Beginners Completed! &#8211; File Input/Output</a></li>
<li><a href='http://blog.showmedo.com/news/15-new-learning-paths-mostly-for-pythonistas/' rel='bookmark' title='Permanent Link: 15 New Learning Paths (mostly for Pythonistas)'>15 New Learning Paths (mostly for Pythonistas)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/showmedo-relaunching/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UK Government Turns To Open Source</title>
		<link>http://blog.showmedo.com/news/uk-government-turns-to-open-source/</link>
		<comments>http://blog.showmedo.com/news/uk-government-turns-to-open-source/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 00:57:57 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=375</guid>
		<description><![CDATA[<p>Given the UK government&#8217;s historic love of all software solutions proprietary,  the news that Open Source solutions are now to be actively sought for and encouraged is significant indeed.  Possible reasons for this volt-face are the collapse of more than a few high profile proprietary IT projects and a general need for belt-tightening as the [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/showmedo-march-update-python-subscriptions-going-great-voip-conference-tonight/' rel='bookmark' title='Permanent Link: ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight'>ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-rss-feeds/' rel='bookmark' title='Permanent Link: ShowMeDo RSS Feeds'>ShowMeDo RSS Feeds</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Given the UK government&#8217;s historic love of all software solutions proprietary,  the news that Open Source solutions are now to be actively sought for and encouraged is significant indeed.  Possible reasons for this volt-face are the collapse of more than a few high profile proprietary IT projects and a general need for belt-tightening as the current economic woes hit goverment revenue hard. Or maybe they just discovered Showmedo and realized the game was up <img src='http://blog.showmedo.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  More details from our very own BBC <a href="http://news.bbc.co.uk/1/hi/technology/7910110.stm">here.</a></p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/showmedo-march-update-python-subscriptions-going-great-voip-conference-tonight/' rel='bookmark' title='Permanent Link: ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight'>ShowMeDo March Update &#8211; Python Subscriptions going great, VoIP conference tonight</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-rss-feeds/' rel='bookmark' title='Permanent Link: ShowMeDo RSS Feeds'>ShowMeDo RSS Feeds</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/uk-government-turns-to-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who Blogs the Blogmen?</title>
		<link>http://blog.showmedo.com/news/who-blogs-the-blogmen/</link>
		<comments>http://blog.showmedo.com/news/who-blogs-the-blogmen/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 23:50:08 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=371</guid>
		<description><![CDATA[<p>Blogging about our freshly themed, recently resuscitated blog seems more than a tad redundant but it has been poorly and someone has to announce its recovery. It should look more at home with the new Showmedo site, courtesy of some wordpress-theme-fuery, which turned out to be slightly less painful than all that but which will [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedo-videos-introducing-wordpress-part-1-of-2/' rel='bookmark' title='Permanent Link: New ShowMeDo Video: Introducing WordPress (part 1 of 2)'>New ShowMeDo Video: Introducing WordPress (part 1 of 2)</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-on-the-web/' rel='bookmark' title='Permanent Link: ShowMeDo on the web'>ShowMeDo on the web</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Blogging about our freshly themed, recently resuscitated blog seems more than a tad redundant but it has been poorly and someone has to announce its recovery. It should look more at home with the new Showmedo site, courtesy of some wordpress-theme-fuery, which turned out to be slightly less painful than all that but which will be the topic of a screencast one of these days.</p>
<p>Re-theming the blog gave me (Kyran) a chance to peer under the Wordpress hood, install it (and Apache) locally and generally play around a little. Gotta say I&#8217;m impressed, even the little amount of PHP hackery being very bearable.  Wordpress is a real shining star in the open-source firmament and I haven&#8217;t yet managed to break it, so it&#8217;s a few notches ahead of Showmedo. So thanks to all the relevant parties for creating this little joy and we fully intend to use it quite a bit more in the future.</p>
<p>And if anyone has any Wordpress screencasts lying around or a vague idea of making one sometime,  I think they would go down huge, so to speak. For a slightly aging, but very nice introduction to Wordpress 2.0, checkout <a href="http://showmedo.com/videos/video?name=wordPress2LongIntroCunliffe">Rachel Cunliffe&#8217;s</a> screencast.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-showmedo-videos-introducing-wordpress-part-1-of-2/' rel='bookmark' title='Permanent Link: New ShowMeDo Video: Introducing WordPress (part 1 of 2)'>New ShowMeDo Video: Introducing WordPress (part 1 of 2)</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-on-the-web/' rel='bookmark' title='Permanent Link: ShowMeDo on the web'>ShowMeDo on the web</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/who-blogs-the-blogmen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ShowMeDo up and running on new server</title>
		<link>http://blog.showmedo.com/news/showmedo-up-and-running-on-new-server/</link>
		<comments>http://blog.showmedo.com/news/showmedo-up-and-running-on-new-server/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 17:26:05 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=366</guid>
		<description><![CDATA[<p>This is a test message that confirms that the blog is working.  ShowMeDo.com came up on a new server a week back, we&#8217;re still configuring a few parts and expect full service over the next week.</p>


<p>Related posts:Running ShowMeDo as a daemonised process using daemontools
New Ruby ShowMeDo:  Build a Full Rails Server on Ubuntu
Learn GUI [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/running-showmedo-as-a-daemonised-process-using-daemontools/' rel='bookmark' title='Permanent Link: Running ShowMeDo as a daemonised process using daemontools'>Running ShowMeDo as a daemonised process using daemontools</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-ruby-showmedo-build-a-full-rails-server-on-ubuntu/' rel='bookmark' title='Permanent Link: New Ruby ShowMeDo:  Build a Full Rails Server on Ubuntu'>New Ruby ShowMeDo:  Build a Full Rails Server on Ubuntu</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/learn-gui-and-file-handling-techniques/' rel='bookmark' title='Permanent Link: Learn GUI and File-Handling techniques'>Learn GUI and File-Handling techniques</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is a test message that confirms that the blog is working.  ShowMeDo.com came up on a new server a week back, we&#8217;re still configuring a few parts and expect full service over the next week.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/running-showmedo-as-a-daemonised-process-using-daemontools/' rel='bookmark' title='Permanent Link: Running ShowMeDo as a daemonised process using daemontools'>Running ShowMeDo as a daemonised process using daemontools</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-ruby-showmedo-build-a-full-rails-server-on-ubuntu/' rel='bookmark' title='Permanent Link: New Ruby ShowMeDo:  Build a Full Rails Server on Ubuntu'>New Ruby ShowMeDo:  Build a Full Rails Server on Ubuntu</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/learn-gui-and-file-handling-techniques/' rel='bookmark' title='Permanent Link: Learn GUI and File-Handling techniques'>Learn GUI and File-Handling techniques</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/showmedo-up-and-running-on-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ShowMeDo is on Twitter</title>
		<link>http://blog.showmedo.com/news/showmedo-is-on-twitter/</link>
		<comments>http://blog.showmedo.com/news/showmedo-is-on-twitter/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 13:44:47 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=365</guid>
		<description><![CDATA[<p>If you&#8217;re a twitter user, we&#8217;re now announcing our open-source tutorial screencasts at http://twitter.com/showmedo.  This will include all the Python videos, along with Inkscape, GIMP and everything else.</p>
<p>Twitter makes it easier to push out lite announces rather than writing longer blog posts on ShowMeDo&#8217;s regular blog (though of course we&#8217;re still blogging, but just as [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/testing-wordpress-twitter-plugin/' rel='bookmark' title='Permanent Link: Testing wordpress-twitter plugin'>Testing wordpress-twitter plugin</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-beginners-if-else-elif-introduction/' rel='bookmark' title='Permanent Link: Python Beginners &#8211; &#8216;if, else, elif&#8217; Introduction'>Python Beginners &#8211; &#8216;if, else, elif&#8217; Introduction</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a twitter user, we&#8217;re now announcing our open-source tutorial screencasts at <a href="http://twitter.com/showmedo">http://twitter.com/showmedo</a>.  This will include all the Python videos, along with Inkscape, GIMP and everything else.</p>
<p>Twitter makes it easier to push out lite announces rather than writing longer blog posts on ShowMeDo&#8217;s regular <a href="http://blog.showmedo.com/">blog</a> (though of course we&#8217;re still blogging, but just as occasionally as before!).</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/testing-wordpress-twitter-plugin/' rel='bookmark' title='Permanent Link: Testing wordpress-twitter plugin'>Testing wordpress-twitter plugin</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/site-relaunch-customizing-that-twitter-widget/' rel='bookmark' title='Permanent Link: Site Relaunch &#8211; customizing that Twitter Widget'>Site Relaunch &#8211; customizing that Twitter Widget</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-beginners-if-else-elif-introduction/' rel='bookmark' title='Permanent Link: Python Beginners &#8211; &#8216;if, else, elif&#8217; Introduction'>Python Beginners &#8211; &#8216;if, else, elif&#8217; Introduction</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/showmedo-is-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making Python math 196* faster with shedskin</title>
		<link>http://blog.showmedo.com/news/making-python-math-196-faster-with-shedskin/</link>
		<comments>http://blog.showmedo.com/news/making-python-math-196-faster-with-shedskin/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 18:45:02 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=362</guid>
		<description><![CDATA[<p>On my personal blog I have written a long entry on Making Python math 196* faster with shedskin.</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 [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/5-tips-for-making-a-great-screencast/' rel='bookmark' title='Permanent Link: 5 Tips for Making a Great Screencast'>5 Tips for Making a Great Screencast</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/showmedo-python-for-math-teachers-working-with-stickworks-1-video/' rel='bookmark' title='Permanent Link: ShowMeDo: &#8216;Python for Math Teachers&#8217; Working with Stickworks (1 video)'>ShowMeDo: &#8216;Python for Math Teachers&#8217; Working with Stickworks (1 video)</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/showmedo-python-for-math-teachers-subclassing-for-beginners-1-video/' rel='bookmark' title='Permanent Link: ShowMeDo: &#8216;Python for Math Teachers&#8217; &#8211; Subclassing for Beginners (1 video)'>ShowMeDo: &#8216;Python for Math Teachers&#8217; &#8211; Subclassing for Beginners (1 video)</a></li>
</ol>]]></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/">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 &#8211; Mark Dufour and team at <a href="http://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>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/5-tips-for-making-a-great-screencast/' rel='bookmark' title='Permanent Link: 5 Tips for Making a Great Screencast'>5 Tips for Making a Great Screencast</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/showmedo-python-for-math-teachers-working-with-stickworks-1-video/' rel='bookmark' title='Permanent Link: ShowMeDo: &#8216;Python for Math Teachers&#8217; Working with Stickworks (1 video)'>ShowMeDo: &#8216;Python for Math Teachers&#8217; Working with Stickworks (1 video)</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/showmedo-python-for-math-teachers-subclassing-for-beginners-1-video/' rel='bookmark' title='Permanent Link: ShowMeDo: &#8216;Python for Math Teachers&#8217; &#8211; Subclassing for Beginners (1 video)'>ShowMeDo: &#8216;Python for Math Teachers&#8217; &#8211; Subclassing for Beginners (1 video)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/making-python-math-196-faster-with-shedskin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;How I Screencast&#8217; by Florian</title>
		<link>http://blog.showmedo.com/news/how-i-screencast-by-florian/</link>
		<comments>http://blog.showmedo.com/news/how-i-screencast-by-florian/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 11:13:40 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=359</guid>
		<description><![CDATA[<p>Florian, one of our authors, has written a blog on how &#8216;How I do my screencasts&#8216;.</p>
<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 [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/how-we-make-showmedos/' rel='bookmark' title='Permanent Link: How we make ShowMeDos'>How we make ShowMeDos</a></li>
<li><a href='http://blog.showmedo.com/news/5-tips-for-making-a-great-screencast/' rel='bookmark' title='Permanent Link: 5 Tips for Making a Great Screencast'>5 Tips for Making a Great Screencast</a></li>
<li><a href='http://blog.showmedo.com/news/compiling-ffmpeg-on-redhat/' rel='bookmark' title='Permanent Link: Compiling ffmpeg on RedHat'>Compiling ffmpeg on RedHat</a></li>
</ol>]]></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">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>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/how-we-make-showmedos/' rel='bookmark' title='Permanent Link: How we make ShowMeDos'>How we make ShowMeDos</a></li>
<li><a href='http://blog.showmedo.com/news/5-tips-for-making-a-great-screencast/' rel='bookmark' title='Permanent Link: 5 Tips for Making a Great Screencast'>5 Tips for Making a Great Screencast</a></li>
<li><a href='http://blog.showmedo.com/news/compiling-ffmpeg-on-redhat/' rel='bookmark' title='Permanent Link: Compiling ffmpeg on RedHat'>Compiling ffmpeg on RedHat</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/how-i-screencast-by-florian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Batteries Included&#8221; Python beginner Club series now finished</title>
		<link>http://blog.showmedo.com/news/358/</link>
		<comments>http://blog.showmedo.com/news/358/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 10:54:18 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Club Videos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=358</guid>
		<description><![CDATA[<p>Lucas&#8217; Club series for Python beginners which introduces the Python standard library is now complete.</p>
<p>Batteries Included &#8211; 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.</p>
<p>&#8220;I will thank you for getting this in-depth basic explanation of [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/new-club-videos-for-batteries-included-series-on-the-python-standard-library/' rel='bookmark' title='Permanent Link: New Club videos for &#8220;Batteries Included&#8221; series on The Python Standard Library'>New Club videos for &#8220;Batteries Included&#8221; series on The Python Standard Library</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-series-batteries-included-the-python-standard-library/' rel='bookmark' title='Permanent Link: New series &#8211; Batteries included &#8211; The Python standard library'>New series &#8211; Batteries included &#8211; The Python standard library</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-beginners-loops-and-iteration-club-series-fully-published/' rel='bookmark' title='Permanent Link: &#8220;Python Beginners &#8211; Loops and Iteration&#8221; &#8211; Club Series fully published'>&#8220;Python Beginners &#8211; Loops and Iteration&#8221; &#8211; Club Series fully published</a></li>
</ol>]]></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 &#8211; 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; &#8211; 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>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/new-club-videos-for-batteries-included-series-on-the-python-standard-library/' rel='bookmark' title='Permanent Link: New Club videos for &#8220;Batteries Included&#8221; series on The Python Standard Library'>New Club videos for &#8220;Batteries Included&#8221; series on The Python Standard Library</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-series-batteries-included-the-python-standard-library/' rel='bookmark' title='Permanent Link: New series &#8211; Batteries included &#8211; The Python standard library'>New series &#8211; Batteries included &#8211; The Python standard library</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-beginners-loops-and-iteration-club-series-fully-published/' rel='bookmark' title='Permanent Link: &#8220;Python Beginners &#8211; Loops and Iteration&#8221; &#8211; Club Series fully published'>&#8220;Python Beginners &#8211; Loops and Iteration&#8221; &#8211; Club Series fully published</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/358/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Club videos for &#8220;Batteries Included&#8221; series on The Python Standard Library</title>
		<link>http://blog.showmedo.com/news/new-club-videos-for-batteries-included-series-on-the-python-standard-library/</link>
		<comments>http://blog.showmedo.com/news/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</dc:creator>
				<category><![CDATA[Club Videos]]></category>
		<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[<p>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.</p>
<p>For his first series Lucas covers elements of The Python Standard Library.</p>
<p>Half of the videos are published, the series will be fully published in the next two weeks.  Each video is around [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-series-batteries-included-the-python-standard-library/' rel='bookmark' title='Permanent Link: New series &#8211; Batteries included &#8211; The Python standard library'>New series &#8211; Batteries included &#8211; The Python standard library</a></li>
<li><a href='http://blog.showmedo.com/news/358/' rel='bookmark' title='Permanent Link: &#8220;Batteries Included&#8221; Python beginner Club series now finished'>&#8220;Batteries Included&#8221; Python beginner Club series now finished</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-club-series-for-python-beginners-loops-and-iteration/' rel='bookmark' title='Permanent Link: New Club Series for Python Beginners &#8211; Loops and Iteration'>New Club Series for Python Beginners &#8211; Loops and Iteration</a></li>
</ol>]]></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>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-series-batteries-included-the-python-standard-library/' rel='bookmark' title='Permanent Link: New series &#8211; Batteries included &#8211; The Python standard library'>New series &#8211; Batteries included &#8211; The Python standard library</a></li>
<li><a href='http://blog.showmedo.com/news/358/' rel='bookmark' title='Permanent Link: &#8220;Batteries Included&#8221; Python beginner Club series now finished'>&#8220;Batteries Included&#8221; Python beginner Club series now finished</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-club-series-for-python-beginners-loops-and-iteration/' rel='bookmark' title='Permanent Link: New Club Series for Python Beginners &#8211; Loops and Iteration'>New Club Series for Python Beginners &#8211; Loops and Iteration</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/new-club-videos-for-batteries-included-series-on-the-python-standard-library/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Club series for Python Beginners &#8211; Common Variables and Containers</title>
		<link>http://blog.showmedo.com/news/new-club-series-for-python-beginners-common-variables-and-containers/</link>
		<comments>http://blog.showmedo.com/news/new-club-series-for-python-beginners-common-variables-and-containers/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 10:04:50 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Club Videos]]></category>
		<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=337</guid>
		<description><![CDATA[<p>I&#8217;m rather excited to announce this new and rather long Club ShowMeDo series called Common Variables and Containers.  It is aimed at new/intermediate Python users and builds upon the previous &#8216;What Does Python Look Like?&#8216; series.</p>
<p>In 14 episodes I introduce the user to all the common Python datatypes and containers.  This includes showing common usage [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/more-club-videos-for-python-beginners-common-variables-and-containers/' rel='bookmark' title='Permanent Link: More Club videos for Python Beginners &#8211; Common Variables and Containers'>More Club videos for Python Beginners &#8211; Common Variables and Containers</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/python-beginners-common-variables-and-containers-series-completed/' rel='bookmark' title='Permanent Link: Python Beginners &#8211; Common Variables and Containers Series Completed'>Python Beginners &#8211; Common Variables and Containers Series Completed</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-club-series-for-python-beginners-loops-and-iteration/' rel='bookmark' title='Permanent Link: New Club Series for Python Beginners &#8211; Loops and Iteration'>New Club Series for Python Beginners &#8211; Loops and Iteration</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m rather excited to announce this new and rather long Club ShowMeDo series called <a href="http://showmedo.com/videos/series?name=AzsZ2afN2">Common Variables and Containers</a>.  It is aimed at new/intermediate Python users and builds upon the previous &#8216;<a href="http://showmedo.com/videos/series?name=kmNu2xcp3">What Does Python Look Like?</a>&#8216; series.</p>
<p>In 14 episodes I introduce the user to all the common Python datatypes and containers.  This includes showing common usage and explaining newer ways of doing things with Python 2.5 (and linking to examples of out-dated docs so the user is aware of older techniques).</p>
<blockquote><p>&#8220;Excellent tutorial &#8211; Well thought out example, clear, with a logical progression that builds on itself. In the end the goal of the tut is attained very well.&#8221;</p></blockquote>
<p>Each episode is 5-10 minutes long, the first seven are published and the rest follow over the coming weeks:</p>
<ol>
<li>
<p class="series_h3"><a href="http://showmedo.com/videos/video?name=2800010&amp;fromSeriesID=280">Overview (Variables and Containers) (Free)</a></p>
</li>
<li>
<p class="series_h3"><a href="http://showmedo.com/videos/video?name=2800010&amp;fromSeriesID=280">Variables are Objects</a></p>
</li>
<li>
<p class="series_h3"><a href="http://showmedo.com/videos/video?name=2800020&amp;fromSeriesID=280">Variable Scope</a></p>
</li>
<li>
<p class="series_h3"><a href="http://showmedo.com/videos/video?name=2800030&amp;fromSeriesID=280">int and float</a></p>
</li>
<li>
<p class="series_h3"><a href="http://showmedo.com/videos/video?name=2800040&amp;fromSeriesID=280">decimal</a></p>
</li>
<li>
<p class="series_h3"><a href="http://showmedo.com/videos/video?name=2800050&amp;fromSeriesID=280">str(ings)</a></p>
</li>
<li><a href="http://showmedo.com/videos/video?name=2800060&amp;fromSeriesID=280">unicode</a></li>
</ol>
<p>The aim of the series is to give a visual introduction to all the common datatypes that the user will see when learning Python.  This backs-up the material that can be found on the web and in books &#8211; screencasts are great for building up memories of &#8217;seeing it in action&#8217;.</p>
<p>This series is a part of <a href="http://showmedo.com/club">Club ShowMeDo</a>, these videos are for paying subscribers (Club membership is given for free to anyone who submits their own screencast).  The Club screencasts are a part of our 311 <a href="http://showmedo.com/videos/python">Python screencasts</a>, most of which are freely available, created by us and our open-source authors.</p>
<blockquote><p>&#8220;Great video, lots of good basic information to help me start learning Python. Easy to watch the videos and then open up an interactive prompt and try out the new features I just learned. I also like the web links for additional details.&#8221;</p></blockquote>
<p>If you want to try the <a href="http://showmedo.com/club">Club</a>, remember that we offer a full refund guarantee if the Club isn&#8217;t what you expect and you are free to cancel your subscription at any time.  We want you to feel comfortable whilst trying us out.  We&#8217;re always open to feedback and suggestions for the topics you&#8217;d like to see us cover.</p>
<p>Other recent <a href="http://showmedo.com/club">Club</a> videos include <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>
<p>Recent free 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>.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/more-club-videos-for-python-beginners-common-variables-and-containers/' rel='bookmark' title='Permanent Link: More Club videos for Python Beginners &#8211; Common Variables and Containers'>More Club videos for Python Beginners &#8211; Common Variables and Containers</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/python-beginners-common-variables-and-containers-series-completed/' rel='bookmark' title='Permanent Link: Python Beginners &#8211; Common Variables and Containers Series Completed'>Python Beginners &#8211; Common Variables and Containers Series Completed</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-club-series-for-python-beginners-loops-and-iteration/' rel='bookmark' title='Permanent Link: New Club Series for Python Beginners &#8211; Loops and Iteration'>New Club Series for Python Beginners &#8211; Loops and Iteration</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/new-club-series-for-python-beginners-common-variables-and-containers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two more &#8216;Beginning Python&#8217; episodes posted</title>
		<link>http://blog.showmedo.com/news/two-more-beginning-python-episodes-posted/</link>
		<comments>http://blog.showmedo.com/news/two-more-beginning-python-episodes-posted/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 14:49:31 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=334</guid>
		<description><![CDATA[<p>Continuing from the last post we&#8217;ve published two more Club ShowMeDo videos in the first Python Beginners series named What Does Python Look Like?</p>
<p>The current four (of six) episodes are:</p>

3 Minute Oveview (What Does Python Look Like?) (Free)
Variables and Naming
Write and Run (and Unit Tests), No Compiling
Indentation and Colons

<p>There are two more episodes to come, [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/what-does-python-look-like-series-finished-in-club-showmedo/' rel='bookmark' title='Permanent Link: &#8220;What does Python look like?&#8221; series finished in Club ShowMeDo'>&#8220;What does Python look like?&#8221; series finished in Club ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-beginners-series-starting-showmedo/' rel='bookmark' title='Permanent Link: &#8216;Python Beginners&#8217; series starting @ ShowMeDo'>&#8216;Python Beginners&#8217; series starting @ ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-is-teaching-python/' rel='bookmark' title='Permanent Link: ShowMeDo is Teaching Python'>ShowMeDo is Teaching Python</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Continuing from the last post we&#8217;ve published two more <a href="http://showmedo.com/club">Club ShowMeDo</a> videos in the first Python Beginners series named <a href="http://showmedo.com/videos/series?name=kmNu2xcp3">What Does Python Look Like?</a></p>
<p>The current four (of six) episodes are:</p>
<ol>
<li><a href="http://showmedo.com/videos/video?name=2750000&amp;fromSeriesID=275">3 Minute Oveview (What Does Python Look Like?) (Free)</a></li>
<li><a href="http://showmedo.com/videos/video?name=2750010&amp;fromSeriesID=275">Variables and Naming</a></li>
<li><a href="http://showmedo.com/videos/video?name=2750020&amp;fromSeriesID=275">Write and Run (and Unit Tests), No Compiling</a></li>
<li><a href="http://showmedo.com/videos/video?name=2750030&amp;fromSeriesID=275">Indentation and Colons</a></li>
</ol>
<p>There are two more episodes to come, they&#8217;ll be posted next week.  After that a much longer Python Beginners series starts, this one will cover all of the basic datatypes including usage examples.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/what-does-python-look-like-series-finished-in-club-showmedo/' rel='bookmark' title='Permanent Link: &#8220;What does Python look like?&#8221; series finished in Club ShowMeDo'>&#8220;What does Python look like?&#8221; series finished in Club ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-beginners-series-starting-showmedo/' rel='bookmark' title='Permanent Link: &#8216;Python Beginners&#8217; series starting @ ShowMeDo'>&#8216;Python Beginners&#8217; series starting @ ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/news/showmedo-is-teaching-python/' rel='bookmark' title='Permanent Link: ShowMeDo is Teaching Python'>ShowMeDo is Teaching Python</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/two-more-beginning-python-episodes-posted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Google App Engine with ShowMeDo</title>
		<link>http://blog.showmedo.com/news/learn-google-app-engine-with-showmedo/</link>
		<comments>http://blog.showmedo.com/news/learn-google-app-engine-with-showmedo/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 09:03:10 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Club Videos]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=333</guid>
		<description><![CDATA[<p>Kyran has published the first five episodes of A Gentle Introduction to the Google App Engine Python SDK in Club ShowMeDo, more will follow over the coming weeks.</p>
<p>&#8220;Google has chosen Python as its initial application development language, allowing new users to leverage the considerable power and usability of such frameworks as Django or Pylons. This [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/python-showmedos/google-app-engine-videos-coming-to-showmedo-also-wxdb-videos/' rel='bookmark' title='Permanent Link: Google App Engine videos coming to ShowMeDo (also wx+DB videos)'>Google App Engine videos coming to ShowMeDo (also wx+DB videos)</a></li>
<li><a href='http://blog.showmedo.com/news/choosing-a-python-web-framework-i-bottling-it/' rel='bookmark' title='Permanent Link: Choosing a Python Web Framework I &#8211; bottling it'>Choosing a Python Web Framework I &#8211; bottling it</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/showmedo-learn-django-create-a-wiki-in-20-minutes-1-video/' rel='bookmark' title='Permanent Link: ShowMeDo: Learn Django: Create a Wiki in 20 minutes (1 video)'>ShowMeDo: Learn Django: Create a Wiki in 20 minutes (1 video)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Kyran has published the first five episodes of <a href="http://showmedo.com/videos/series?name=FtBpzKiWL">A Gentle Introduction to the Google App Engine Python SDK</a> in <a href="http://showmedo.com/club">Club ShowMeDo</a>, more will follow over the coming weeks.</p>
<blockquote><p>&#8220;Google has chosen Python as its initial application development language, allowing new users to leverage the considerable power and usability of such frameworks as Django or Pylons. This series will introduce the GAE, focussing on the use of its Python SDK and webapp framework. &#8230;&#8221;</p></blockquote>
<p>This series currently looks at:</p>
<ul>
<li><a href="http://showmedo.com/videos/video?name=2690000&amp;fromSeriesID=269">Overview of the series</a></li>
<li><a href="http://showmedo.com/videos/video?name=2690010&amp;fromSeriesID=269">Installing the SDK + &#8216;Hello world&#8217;</a></li>
<li><a href="http://showmedo.com/videos/video?name=2690020&amp;fromSeriesID=269">Using the framework</a></li>
<li><a href="http://showmedo.com/videos/video?name=2690030&amp;fromSeriesID=269">Google&#8217;s User Service</a></li>
<li><a href="http://showmedo.com/videos/video?name=2690040&amp;fromSeriesID=269">Handling Forms</a></li>
</ul>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/python-showmedos/google-app-engine-videos-coming-to-showmedo-also-wxdb-videos/' rel='bookmark' title='Permanent Link: Google App Engine videos coming to ShowMeDo (also wx+DB videos)'>Google App Engine videos coming to ShowMeDo (also wx+DB videos)</a></li>
<li><a href='http://blog.showmedo.com/news/choosing-a-python-web-framework-i-bottling-it/' rel='bookmark' title='Permanent Link: Choosing a Python Web Framework I &#8211; bottling it'>Choosing a Python Web Framework I &#8211; bottling it</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/showmedo-learn-django-create-a-wiki-in-20-minutes-1-video/' rel='bookmark' title='Permanent Link: ShowMeDo: Learn Django: Create a Wiki in 20 minutes (1 video)'>ShowMeDo: Learn Django: Create a Wiki in 20 minutes (1 video)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/news/learn-google-app-engine-with-showmedo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

