<?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; Python ShowMeDos</title>
	<atom:link href="http://blog.showmedo.com/category/python-showmedos/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>New Video Published: Self-modifying code</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-self-modifying-code/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-self-modifying-code/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 01:01:38 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=732</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1483] Self-modifying code, a video-tutorial by David Fung This video is part of the series Self-modifying code 

<p>Using the inspect and re modules, write a piece of code that update itself every time it is run.</p>
<p>The idea is come from the PEAK ez_setup.py script.</p>



<p>Related posts:New Video Published: Pygame tutorial &#8211; Installation
New [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-pygame-tutorial-installation/' rel='bookmark' title='Permanent Link: New Video Published: Pygame tutorial &#8211; Installation'>New Video Published: Pygame tutorial &#8211; Installation</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-using-the-ipython-library/' rel='bookmark' title='Permanent Link: New Video Published: Using the IPython Library'>New Video Published: Using the IPython Library</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7610000&#038;fromSeriesID=761'><b>[1483] Self-modifying code</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=771'>David Fung</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=vz80inXpo'>Self-modifying code</a><br /> 
<div class="document">
<p>Using the inspect and re modules, write a piece of code that update itself every time it is run.</p>
<p>The idea is come from the PEAK ez_setup.py script.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-pygame-tutorial-installation/' rel='bookmark' title='Permanent Link: New Video Published: Pygame tutorial &#8211; Installation'>New Video Published: Pygame tutorial &#8211; Installation</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-using-the-ipython-library/' rel='bookmark' title='Permanent Link: New Video Published: Using the IPython Library'>New Video Published: Using the IPython Library</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-self-modifying-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: PyConPads</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-pyconpads/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-pyconpads/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 16:16:47 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=703</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1829] PyConPads, a video-tutorial by John Graves This video is part of the series PyCon 2010 Slides and Notes 

<p>Video showing how to remotely participate in the PyCon 2010 conference in Atlanta by watching the live note taking of some thoughtful and friendly participants using EtherPad. Go to https://twitter.com/pyconpads to find [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/growth-in-python-project-popularity/' rel='bookmark' title='Permanent Link: Growth in Python Project Popularity'>Growth in Python Project Popularity</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>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=10050010&#038;fromSeriesID=1005'><b>[1829] PyConPads</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=17764'>John Graves</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=BQYz1Ga8C'>PyCon 2010 Slides and Notes</a><br /> 
<div class="document">
<p>Video showing how to remotely participate in the PyCon 2010 conference in Atlanta by watching the live note taking of some thoughtful and friendly participants using EtherPad. Go to <a class="reference external" href="https://twitter.com/pyconpads">https://twitter.com/pyconpads</a> to find pads. (Author: John Graves from Auckland, New Zealand has other videos at <a class="reference external" href="http://bit.ly/openallure">http://bit.ly/openallure</a> and an Open Source project <a class="reference external" href="http://openallureds.org">http://openallureds.org</a> )</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/growth-in-python-project-popularity/' rel='bookmark' title='Permanent Link: Growth in Python Project Popularity'>Growth in Python Project Popularity</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/new-showmedo-videos/new-video-published-pyconpads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Flowplayer embedding script</title>
		<link>http://blog.showmedo.com/python-showmedos/testing-flowplayer-embedding-script/</link>
		<comments>http://blog.showmedo.com/python-showmedos/testing-flowplayer-embedding-script/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 14:20:44 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[Building a Website]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=696</guid>
		<description><![CDATA[<p>This little script, appearing below Showmedo&#8217;s video-boxes should allow easy embedding of the videos in blogs, articles and the like. As ever, avoid the WYSIWYG editors or the pristine HTML is likely to be horribly mangled.</p>
<p>If everything goes according to plan, you should be seeing a Showmedo video below (The first part of Chris Perkins&#8217; [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/xmlrpc-and-unit-testing-screencasts-by-florian-mayer/' rel='bookmark' title='Permanent Link: XMLRPC and unit-testing screencasts by Florian Mayer'>XMLRPC and unit-testing screencasts by Florian Mayer</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/using-python-strings-and-dictionaries-to-create-video-embedding-templates/' rel='bookmark' title='Permanent Link: Using Python  strings and dictionaries to create video embedding templates'>Using Python  strings and dictionaries to create video embedding templates</a></li>
<li><a href='http://blog.showmedo.com/kyrans-thought-for-the-day/taming-flowplayer-pt-1/' rel='bookmark' title='Permanent Link: Taming Flowplayer Pt. 1'>Taming Flowplayer Pt. 1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This little script, appearing below Showmedo&#8217;s video-boxes should allow easy embedding of the videos in blogs, articles and the like. As ever, avoid the WYSIWYG editors or the pristine HTML is likely to be horribly mangled.</p>
<p>If everything goes according to plan, you should be seeing a Showmedo video below (The first part of Chris Perkins&#8217; rather wonderful series on <a href="http://showmedo.com/videotutorials/series?name=mcfckfJ4w">Agile Development Tools in Python</a>):</p>
<p><object width="425" height="344" id="_785" 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;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://showmedovideos4.com/ShowMeDos/2910000.flv&quot;,&quot;title&quot;:&quot;Using Virtualenv and PasteScript&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/new-showmedo-videos/xmlrpc-and-unit-testing-screencasts-by-florian-mayer/' rel='bookmark' title='Permanent Link: XMLRPC and unit-testing screencasts by Florian Mayer'>XMLRPC and unit-testing screencasts by Florian Mayer</a></li>
<li><a href='http://blog.showmedo.com/showmedo-front-page/using-python-strings-and-dictionaries-to-create-video-embedding-templates/' rel='bookmark' title='Permanent Link: Using Python  strings and dictionaries to create video embedding templates'>Using Python  strings and dictionaries to create video embedding templates</a></li>
<li><a href='http://blog.showmedo.com/kyrans-thought-for-the-day/taming-flowplayer-pt-1/' rel='bookmark' title='Permanent Link: Taming Flowplayer Pt. 1'>Taming Flowplayer Pt. 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/python-showmedos/testing-flowplayer-embedding-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Pygame tutorial &#8211; Installation</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-pygame-tutorial-installation/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-pygame-tutorial-installation/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 00:12:03 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[Linux ShowMeDos]]></category>
		<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=642</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1780] Pygame tutorial &#8211; Installation, a video-tutorial by Kenny X This video is part of the series Using Pygame for Games 

<p>In this tutorial screencast you will learn how to install pygame on Linux, Mac, and Windows. I explain what you can find on http://pygame.org/download.shtml and how to find out if [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-installing-openoffice-3-1-on-windows-xp/' rel='bookmark' title='Permanent Link: New Video Published: Installing OpenOffice 3.1 on Windows XP'>New Video Published: Installing OpenOffice 3.1 on Windows XP</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-c-tutorial-1-absolute-n00b-spoonfeed/' rel='bookmark' title='Permanent Link: New Video Published: C++ Tutorial (1) &#8211; Absolute n00b spoonfeed'>New Video Published: C++ Tutorial (1) &#8211; Absolute n00b spoonfeed</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-c-tutorial-30-absolute-n00b-spoonfeed/' rel='bookmark' title='Permanent Link: New Video Published: C++ Tutorial (30) &#8211; Absolute n00b spoonfeed'>New Video Published: C++ Tutorial (30) &#8211; Absolute n00b spoonfeed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=9670000&#038;fromSeriesID=967'><b>[1780] Pygame tutorial &#8211; Installation</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=17666'>Kenny X</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=wESAtIvNJ'>Using Pygame for Games</a><br /> 
<div class="document">
<p>In this tutorial screencast you will learn how to install pygame on Linux, Mac, and Windows. I explain what you can find on <a class="reference external" href="http://pygame.org/download.shtml">http://pygame.org/download.shtml</a> and how to find out if pygame wasn&#8217;t installed correctly.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-installing-openoffice-3-1-on-windows-xp/' rel='bookmark' title='Permanent Link: New Video Published: Installing OpenOffice 3.1 on Windows XP'>New Video Published: Installing OpenOffice 3.1 on Windows XP</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-c-tutorial-1-absolute-n00b-spoonfeed/' rel='bookmark' title='Permanent Link: New Video Published: C++ Tutorial (1) &#8211; Absolute n00b spoonfeed'>New Video Published: C++ Tutorial (1) &#8211; Absolute n00b spoonfeed</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-c-tutorial-30-absolute-n00b-spoonfeed/' rel='bookmark' title='Permanent Link: New Video Published: C++ Tutorial (30) &#8211; Absolute n00b spoonfeed'>New Video Published: C++ Tutorial (30) &#8211; Absolute n00b spoonfeed</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-pygame-tutorial-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Closing remarks and using dictionaries effectively for scientific computing</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-closing-remarks-and-using-dictionaries-effectively-for-scientific-computing/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-closing-remarks-and-using-dictionaries-effectively-for-scientific-computing/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 01:48:21 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=602</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1452] Closing remarks and using dictionaries effectively for scientific computing, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this final segment, we highlight concepts important for new scientific Python programmers, especially those coming from a Matlab environment. We discuss effective use [...]


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/news/scientific-and-parallel-computing-using-ipython/' rel='bookmark' title='Permanent Link: Scientific and Parallel Computing Using IPython'>Scientific and Parallel Computing Using IPython</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200170&#038;fromSeriesID=720'><b>[1452] Closing remarks and using dictionaries effectively for scientific computing</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this final segment, we highlight concepts important for new scientific Python programmers, especially those coming from a Matlab environment. We discuss effective use of Python dictionaries and the timeit profiling module. We also discuss the defaultdict object for quick and easy database creation useful for keeping track of data in multiple parameter runs.</p>
</div>


<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/news/scientific-and-parallel-computing-using-ipython/' rel='bookmark' title='Permanent Link: Scientific and Parallel Computing Using IPython'>Scientific and Parallel Computing Using IPython</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-closing-remarks-and-using-dictionaries-effectively-for-scientific-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Garbage Collection in Python &#8211; Part II -</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-ii/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-ii/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 01:48:18 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=600</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1451] Garbage Collection in Python &#8211; Part II -, a video-tutorial by gasto This video is part of the series Python from zero. 

<p>How to instantiate the previously created class ( Foo ) is shown, using IDLE (the Integrated Development Environment , that comes with the standard CPython distribution). 2 referrers [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i-2/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python'>New Video Published: Case Study: Robust Regression Methods Using Python</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=2470030&#038;fromSeriesID=247'><b>[1451] Garbage Collection in Python &#8211; Part II -</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=3253'>gasto</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=cqZALPzt8'>Python from zero.</a><br /> 
<div class="document">
<p>How to instantiate the previously created class ( Foo ) is shown, using IDLE (the Integrated Development Environment , that comes with the standard CPython distribution). 2 referrers are created to understand that up until all referrers are deleted, the Python garbage collector may claim the associated instance (destruct it, deallocate it).</p>
<p>variables in Python are simple names associated to an instance (it could be a value). Examples are shown to enforce this concept.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i-2/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python'>New Video Published: Case Study: Robust Regression Methods Using Python</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:14:26 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=587</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1439] Case Study: Robust Regression Methods Using Python and Parallel IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this segment, we continue with the case study of robust regression methods, but here we show how to use generators and the [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-continued/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python continued'>New Video Published: Case Study: Robust Regression Methods Using Python continued</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python'>New Video Published: Case Study: Robust Regression Methods Using Python</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200160&#038;fromSeriesID=720'><b>[1439] Case Study: Robust Regression Methods Using Python and Parallel IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this segment, we continue with the case study of robust regression methods, but here we show how to use generators and the parallel computing features of IPython to accelerate the computation.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-continued/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python continued'>New Video Published: Case Study: Robust Regression Methods Using Python continued</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python'>New Video Published: Case Study: Robust Regression Methods Using Python</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Case Study: Robust Regression Methods Using Python continued</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-continued/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-continued/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:14:23 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=586</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1438] Case Study: Robust Regression Methods Using Python continued, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this segment, we discuss how the least-median estimate can be computed from the sample dataset using generators.</p>



<p>Related posts:New Video Published: Case Study: Robust Regression [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python'>New Video Published: Case Study: Robust Regression Methods Using Python</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython'>New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200150&#038;fromSeriesID=720'><b>[1438] Case Study: Robust Regression Methods Using Python continued</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this segment, we discuss how the least-median estimate can be computed from the sample dataset using generators.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python'>New Video Published: Case Study: Robust Regression Methods Using Python</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython'>New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-continued/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Case Study: Robust Regression Methods Using Python</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:14:21 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=585</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1437] Case Study: Robust Regression Methods Using Python , a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this case study, we pull together everything we have learned so far in order to compute the least MEDIAN squared estimate of a line [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-continued/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python continued'>New Video Published: Case Study: Robust Regression Methods Using Python continued</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython'>New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200140&#038;fromSeriesID=720'><b>[1437] Case Study: Robust Regression Methods Using Python </b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this case study, we pull together everything we have learned so far in order to compute the least MEDIAN squared estimate of a line given data with outliers present. This segment describes the fundamental problem.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-continued/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python continued'>New Video Published: Case Study: Robust Regression Methods Using Python continued</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython'>New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Finer Control for Parallel Computing in IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython-2/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython-2/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:14:19 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=583</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1435] Finer Control for Parallel Computing in IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this segment, we discuss the push, pull, and push_function, features of IPython that allow finer control over individual namespaces of remote nodes and over the [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200130&#038;fromSeriesID=720'><b>[1435] Finer Control for Parallel Computing in IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this segment, we discuss the push, pull, and push_function, features of IPython that allow finer control over individual namespaces of remote nodes and over the computations that run on them.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Distributing Parallel Computations Using IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-distributing-parallel-computations-using-ipython/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-distributing-parallel-computations-using-ipython/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 02:56:03 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=580</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1434] Distributing Parallel Computations Using IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this segment, we discuss the map feature to distribute computations across the available nodes, how to use targets to specify which nodes to use, and how to [...]


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>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200120&#038;fromSeriesID=720'><b>[1434] Distributing Parallel Computations Using IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this segment, we discuss the map feature to distribute computations across the available nodes, how to use targets to specify which nodes to use, and how to use blocking to avoid waiting for long computations to finish.</p>
</div>


<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/new-showmedo-videos/new-video-published-distributing-parallel-computations-using-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Basic Parallel Computing Using IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython-2/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython-2/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 02:56:00 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=578</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1433] Basic Parallel Computing Using IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this segment, we discuss cover importing modules for the remote nodes and how to distribute data (i.e. scatter, gather) to and from these nodes.</p>



<p>Related posts:New Video Published: [...]


Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200110&#038;fromSeriesID=720'><b>[1433] Basic Parallel Computing Using IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this segment, we discuss cover importing modules for the remote nodes and how to distribute data (i.e. scatter, gather) to and from these nodes.</p>
</div>


<p>Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Getting Started with Parallel IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython-2/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython-2/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 02:55:57 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=576</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1432] Getting Started with Parallel IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>IPython provides excellent interactive parallel computing tools.  In this segment, we discuss how to set up remote computational engines using ipcluster and how to use special magic [...]


Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200100&#038;fromSeriesID=720'><b>[1432] Getting Started with Parallel IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>IPython provides excellent interactive parallel computing tools.  In this segment, we discuss how to set up remote computational engines using ipcluster and how to use special magic commands in IPython to use these remote engines.</p>
<p>Here we show how to run the IPython interpreter on the Windows PC (as usual), but connect to and interact with remote computational engines.</p>
</div>


<p>Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Garbage Collection in Python &#8211; Part I -</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i-2/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i-2/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 02:55:56 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=575</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1431] Garbage Collection in Python &#8211; Part I -, a video-tutorial by gasto This video is part of the series Python from zero. 

<p>We view an animated illustration of how the garbage collector collects objects under Python 3.0 . That is, two referrers are created by being associated to the Foo [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-ii/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part II -'>New Video Published: Garbage Collection in Python &#8211; Part II -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-series-overview-in-4-minutes-openoffice-3-1-for-word-users/' rel='bookmark' title='Permanent Link: New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)'>New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=2470020&#038;fromSeriesID=247'><b>[1431] Garbage Collection in Python &#8211; Part I -</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=3253'>gasto</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=cqZALPzt8'>Python from zero.</a><br /> 
<div class="document">
<p>We view an animated illustration of how the garbage collector collects objects under Python 3.0 . That is, two referrers are created by being associated to the Foo class instance, and the Foo class instance itself its created when at least one referrer is left, destroyed when no referrers to it are left.<br />
the weakref being associated to the Foo instance, at the end of the animation, is not accounted for the reference count (as seen in the refcount counter at the top-right side of the animation).<br />
I type in the class Foo that we will be using in further videos, to explain garbage collection.</p>
<p><strong>Note :</strong> the class created here is not intended for any practical purpose. It is just of use for the exercise on learning the concepts behind garbage collection in Python.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-ii/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part II -'>New Video Published: Garbage Collection in Python &#8211; Part II -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-series-overview-in-4-minutes-openoffice-3-1-for-word-users/' rel='bookmark' title='Permanent Link: New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)'>New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Finer Control for Parallel Computing in IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 01:15:12 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=569</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1435] Finer Control for Parallel Computing in IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this segment, we discuss the push, pull, and push_function, features of IPython that allow finer control over individual namespaces of remote nodes and over the [...]


Related posts:<ol><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>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200130&#038;fromSeriesID=720'><b>[1435] Finer Control for Parallel Computing in IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this segment, we discuss the push, pull, and push_function, features of IPython that allow finer control over individual namespaces of remote nodes and over the computations that run on them.</p>
</div>


<p>Related posts:<ol><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>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Basic Parallel Computing Using IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 01:15:06 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=566</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1433] Basic Parallel Computing Using IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>In this segment, we discuss cover importing modules for the remote nodes and how to distribute data (i.e. scatter, gather) to and from these nodes.</p>



<p>Related posts:New Video Published: [...]


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-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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200110&#038;fromSeriesID=720'><b>[1433] Basic Parallel Computing Using IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>In this segment, we discuss cover importing modules for the remote nodes and how to distribute data (i.e. scatter, gather) to and from these nodes.</p>
</div>


<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-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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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/new-showmedo-videos/new-video-published-basic-parallel-computing-using-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Getting Started with Parallel IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 01:15:03 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=564</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1432] Getting Started with Parallel IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>IPython provides excellent interactive parallel computing tools.  In this segment, we discuss how to set up remote computational engines using ipcluster and how to use special magic [...]


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-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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200100&#038;fromSeriesID=720'><b>[1432] Getting Started with Parallel IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>IPython provides excellent interactive parallel computing tools.  In this segment, we discuss how to set up remote computational engines using ipcluster and how to use special magic commands in IPython to use these remote engines.</p>
<p>Here we show how to run the IPython interpreter on the Windows PC (as usual), but connect to and interact with remote computational engines.</p>
</div>


<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-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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-finer-control-for-parallel-computing-in-ipython/' 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/new-showmedo-videos/new-video-published-getting-started-with-parallel-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Garbage Collection in Python &#8211; Part I -</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 01:15:00 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=562</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1431] Garbage Collection in Python &#8211; Part I -, a video-tutorial by gasto This video is part of the series Python from zero. 

<p>We view an animated illustration of how the garbage collector collects objects under Python 3.0 . That is, two referrers are created by being associated to the Foo [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i-2/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-ii/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part II -'>New Video Published: Garbage Collection in Python &#8211; Part II -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-series-overview-in-4-minutes-openoffice-3-1-for-word-users/' rel='bookmark' title='Permanent Link: New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)'>New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=2470020&#038;fromSeriesID=247'><b>[1431] Garbage Collection in Python &#8211; Part I -</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=3253'>gasto</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=cqZALPzt8'>Python from zero.</a><br /> 
<div class="document">
<p>We view an animated illustration of how the garbage collector collects objects under Python 3.0 . That is, two referrers are created by being associated to the Foo class instance, and the Foo class instance itself its created when at least one referrer is left, destroyed when no referrers to it are left.<br />
the weakref being associated to the Foo instance, at the end of the animation, is not accounted for the reference count (as seen in the refcount counter at the top-right side of the animation).<br />
I type in the class Foo that we will be using in further videos, to explain garbage collection.</p>
<p><strong>Note :</strong> the class created here is not intended for any practical purpose. It is just of use for the exercise on learning the concepts behind garbage collection in Python.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i-2/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part I -'>New Video Published: Garbage Collection in Python &#8211; Part I -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-ii/' rel='bookmark' title='Permanent Link: New Video Published: Garbage Collection in Python &#8211; Part II -'>New Video Published: Garbage Collection in Python &#8211; Part II -</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-series-overview-in-4-minutes-openoffice-3-1-for-word-users/' rel='bookmark' title='Permanent Link: New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)'>New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-garbage-collection-in-python-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Getting started with Matplotlib</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-matplotlib/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-matplotlib/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 01:50:10 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=560</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1430] Getting started with Matplotlib, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>Matplotlib is one of the best, if not the best, plotting package for scientific Python. In this segment, we discuss how to best use the Matplotlib website to get [...]


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-closing-remarks-and-using-dictionaries-effectively-for-scientific-computing/' rel='bookmark' title='Permanent Link: New Video Published: Closing remarks and using dictionaries effectively for scientific computing'>New Video Published: Closing remarks and using dictionaries effectively for scientific computing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200090&#038;fromSeriesID=720'><b>[1430] Getting started with Matplotlib</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>Matplotlib is one of the best, if not the best, plotting package for scientific Python. In this segment, we discuss how to best use the Matplotlib website to get started with plotting with Matplotlib.</p>
</div>


<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-closing-remarks-and-using-dictionaries-effectively-for-scientific-computing/' rel='bookmark' title='Permanent Link: New Video Published: Closing remarks and using dictionaries effectively for scientific computing'>New Video Published: Closing remarks and using dictionaries effectively for scientific computing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-getting-started-with-matplotlib/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Introducing Sympy &#8212; Symbolic Mathematics within IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-introducing-sympy-symbolic-mathematics-within-ipython/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-introducing-sympy-symbolic-mathematics-within-ipython/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 01:49:55 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=555</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1413] Introducing Sympy &#8212; Symbolic Mathematics within IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>Introducing Sympy for symbolic mathematics within IPython. Basic operations and advice for Windows users.</p>



<p>Related posts:New Video Published: Getting Started with Parallel IPython
New Video Published: Getting Started [...]


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-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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200080&#038;fromSeriesID=720'><b>[1413] Introducing Sympy &#8212; Symbolic Mathematics within IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>Introducing Sympy for symbolic mathematics within IPython. Basic operations and advice for Windows users.</p>
</div>


<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-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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-introducing-sympy-symbolic-mathematics-within-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Profiling in IPython</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-profiling-in-ipython/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-profiling-in-ipython/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 01:49:53 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=553</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1412] Profiling in IPython, a video-tutorial by unpingco This video is part of the series Scientific and parallel computing using IPython 

<p>Basic profiling methods available in IPython.</p>



<p>Related posts:New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython
New Video Published: Basic Parallel Computing Using IPython
New Video Published: Basic Parallel [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython'>New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7200070&#038;fromSeriesID=720'><b>[1412] Profiling in IPython</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=N49qyIFOh'>Scientific and parallel computing using IPython</a><br /> 
<div class="document">
<p>Basic profiling methods available in IPython.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-case-study-robust-regression-methods-using-python-and-parallel-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython'>New Video Published: Case Study: Robust Regression Methods Using Python and Parallel IPython</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-profiling-in-ipython/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Using the IPython Library</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-using-the-ipython-library/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-using-the-ipython-library/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 01:40:38 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Python ShowMeDos]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=549</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1406] Using the IPython Library, a video-tutorial by unpingco This video is part of the series Visual Parallel Computing Using Python-based VISION/HPC 

<p>This segment discusses the MEC and MECXLocal nodes in the IPython library to quickly prototype a parallel computation without having a prior connection to a backend cluster.</p>



<p>Related posts:New Video [...]


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-distributing-parallel-computations-using-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Distributing Parallel Computations Using IPython'>New Video Published: Distributing Parallel Computations Using IPython</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7430040&#038;fromSeriesID=743'><b>[1406] Using the IPython Library</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=6237'>unpingco</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=XCsI4bsup'>Visual Parallel Computing Using Python-based VISION/HPC</a><br /> 
<div class="document">
<p>This segment discusses the MEC and MECXLocal nodes in the IPython library to quickly prototype a parallel computation without having a prior connection to a backend cluster.</p>
</div>


<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-distributing-parallel-computations-using-ipython/' rel='bookmark' title='Permanent Link: New Video Published: Distributing Parallel Computations Using IPython'>New Video Published: Distributing Parallel Computations Using IPython</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-using-the-ipython-library/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>Python 411 podcast interview &#8211; thanks Ron!</title>
		<link>http://blog.showmedo.com/python-showmedos/python-411-podcast-interview-thanks-ron/</link>
		<comments>http://blog.showmedo.com/python-showmedos/python-411-podcast-interview-thanks-ron/#comments</comments>
		<pubDate>Thu, 28 May 2009 19:41:16 +0000</pubDate>
		<dc:creator>Ian</dc:creator>
				<category><![CDATA[Python ShowMeDos]]></category>
		<category><![CDATA[Showmedo Front-page]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=494</guid>
		<description><![CDATA[<p>Ron Stephens, creator of the rather excellent Python411 podcast series was good enough to interview Kyran and myself a couple of weeks back: An interview with the founders of ShowMeDo: May 25, 2009</p>
<p>We cover the history of how we started ShowMeDo with Python screencasts, Kyran&#8217;s innovative Learning Paths (which caught MIT&#8217;s eye), the special learn-Python-quickly [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/news/ubuntu-uk-podcast-interviews-showmedo/' rel='bookmark' title='Permanent Link: Ubuntu UK Podcast interviews ShowMeDo'>Ubuntu UK Podcast interviews ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-advocacy-podcast-python411/' rel='bookmark' title='Permanent Link: Python Advocacy Podcast (Python411)'>Python Advocacy Podcast (Python411)</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>Ron Stephens, creator of the rather excellent <a href="http://www.awaretek.com/python/index.html">Python411</a> podcast series was good enough to interview Kyran and myself a couple of weeks back: <a href="http://media.libsyn.com/media/awaretek/Python411_20090525_ShowMeDo.mp3">An interview with the founders of ShowMeDo: May 25, 2009</a></p>
<p>We cover the history of how we started <a href="http://showmedo.com/">ShowMeDo</a> with <a href="http://showmedo.com/videotutorials/python">Python</a> screencasts, Kyran&#8217;s innovative <a href="http://showmedo.com/learningpaths/">Learning Paths</a> (which caught MIT&#8217;s eye), the special learn-Python-quickly tutorials in our <a href="http://showmedo.com/joinus">Club</a>, our authors and the 1,000 educational screencasts we&#8217;ve built between us to date.</p>
<p>We also discuss how you can <a href="http://showmedo.com/addVideoInstructions">share your own knowledge</a> with 100,000 global viewers and end with a light chat about Python 3.0.</p>
<p>Ron has a long list of <a href="http://www.awaretek.com/python/index.html">podcast interviews</a>, check them out if you want to know about topics like Django, Python Visualisation and the Python Learning Foundation.  He also lists many <a href="http://www.awaretek.com/tutorials.html">Python tutorials</a> across the web, they are great short-cuts to find what you need.</p>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/news/ubuntu-uk-podcast-interviews-showmedo/' rel='bookmark' title='Permanent Link: Ubuntu UK Podcast interviews ShowMeDo'>Ubuntu UK Podcast interviews ShowMeDo</a></li>
<li><a href='http://blog.showmedo.com/python-showmedos/python-advocacy-podcast-python411/' rel='bookmark' title='Permanent Link: Python Advocacy Podcast (Python411)'>Python Advocacy Podcast (Python411)</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/python-showmedos/python-411-podcast-interview-thanks-ron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://media.libsyn.com/media/awaretek/Python411_20090525_ShowMeDo.mp3" length="52723934" type="audio/mpeg" />
		</item>
	</channel>
</rss>

