<?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; New ShowMeDo Videos</title>
	<atom:link href="http://blog.showmedo.com/category/new-showmedo-videos/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: C++ Tutorial (1) &#8211; Absolute n00b spoonfeed</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-c-tutorial-1-absolute-n00b-spoonfeed/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-c-tutorial-1-absolute-n00b-spoonfeed/#comments</comments>
		<pubDate>Thu, 27 May 2010 19:45:18 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[Linux ShowMeDos]]></category>
		<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=752</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:C++ Tutorial (1) &#8211; Absolute n00b spoonfeed [ID:1274], a video-tutorial by antiRTFM This video is part of the series C++ Tutorials &#8211; Absolute n00b spoonfeed 

<p>Video tutorials about programming in the C++ programming language.</p>
<p>Forum: http://cpptutorials.freeforums.org/</p>
<p>Part 1:
* Introduction
* Program / Programming
* Programming languages
* C++ Programming language</p>

<p></p>


<p>Related posts:New Video Published: C++ Tutorial (30) [...]


Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/more-c-video-tutorials/' rel='bookmark' title='Permanent Link: More C++ video-tutorials'>More C++ video-tutorials</a></li>
<li><a href='http://blog.showmedo.com/news/c-tutorial-video-series/' rel='bookmark' title='Permanent Link: C tutorial video series.'>C tutorial video series.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=6780000&#038;fromSeriesID=678'><b>C++ Tutorial (1) &#8211; Absolute n00b spoonfeed <small>[ID:1274]</small></b></a>, a video-tutorial by <a class='authorTitle' href='http://localhost:2849/videotutorials/?author=14849'>antiRTFM</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=7Ja4c8YuL'>C++ Tutorials &#8211; Absolute n00b spoonfeed</a><br /> 
<div class="document">
<p>Video tutorials about programming in the C++ programming language.</p>
<p>Forum: <a class="reference external" href="http://cpptutorials.freeforums.org/">http://cpptutorials.freeforums.org/</a></p>
<p>Part 1:<br />
* Introduction<br />
* Program / Programming<br />
* Programming languages<br />
* C++ Programming language</p>
</div>
<p><object width="425" height="344" id="_1274" data="http://showmedo.com/static/flowplayer/flowplayer-3.1.5.swf" type="application/x-shockwave-flash"><param name="movie" value="http://showmedo.com/static/flowplayer/flowplayer-3.1.5.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value='config={&quot;key&quot;:&quot;#$824e5316466b69d76dc&quot;,&quot;logo&quot;:{&quot;url&quot;:&quot;http://showmedo.com/static/images/showmedo_logo_vp.png&quot;,&quot;fullscreenOnly&quot;:false,&quot;top&quot;:20,&quot;right&quot;:20,&quot;opacity&quot;:0.5,&quot;displayTime&quot;:0,&quot;linkUrl&quot;:&quot;http://showmedo.com&quot;},&quot;clip&quot;:{&quot;baseUrl&quot;:&quot;http://showmedo.com&quot;,&quot;autoPlay&quot;:false,&quot;autoBuffering&quot;:true},&quot;playlist&quot;:[{&quot;url&quot;:&quot;http://videos1.showmedo.com/ShowMeDos/6780000.flv&quot;,&quot;title&quot;:&quot;C++ Tutorial (1) - Absolute n00b spoonfeed&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/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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/more-c-video-tutorials/' rel='bookmark' title='Permanent Link: More C++ video-tutorials'>More C++ video-tutorials</a></li>
<li><a href='http://blog.showmedo.com/news/c-tutorial-video-series/' rel='bookmark' title='Permanent Link: C tutorial video series.'>C tutorial video series.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-c-tutorial-1-absolute-n00b-spoonfeed/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>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: Help! Manuals, Forums and Mail lists</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-help-manuals-forums-and-mail-lists/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-help-manuals-forums-and-mail-lists/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 01:48:16 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=598</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1444] Help! Manuals, Forums and Mail lists, a video-tutorial by Ian Ozsvald This video is part of the series OpenOffice Writer 3.1 for Microsoft Word users 

<p>For help, the first place to start is TutorialsForOpenOffice.  The official documentation is complete but a bit heavy.</p>
<p>OpenOffice&#8217;s Support section gives many links which [...]


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-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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7500040&#038;fromSeriesID=750'><b>[1444] Help! Manuals, Forums and Mail lists</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=2'>Ian Ozsvald</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=jeHP2r34E'>OpenOffice Writer 3.1 for Microsoft Word users</a><br /> 
<div class="document">
<p>For help, the first place to start is <a class="reference external" href="http://www.tutorialsforopenoffice.org/category_index/wordprocessing.html">TutorialsForOpenOffice</a>.  The <a class="reference external" href="http://documentation.openoffice.org/">official documentation</a> is complete but a bit heavy.</p>
<p>OpenOffice&#8217;s <a class="reference external" href="http://support.openoffice.org/">Support section</a> gives many links which include free material, courses and books.</p>
<p>If you have questions the most active forum seems to be the independent <a class="reference external" href="http://www.oooforum.org/">OpenOffice Forum</a> and although a little bit less active, the <a class="reference external" href="http://user.services.openoffice.org/en/forum/">official forum</a> should be your other port of call.</p>
<p>If you prefer, there are many <a class="reference external" href="http://www.openoffice.org/mail_list.html">mailing lists</a>.</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-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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-help-manuals-forums-and-mail-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Working with an OpenDocument Format (.odt) file</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-an-opendocument-format-odt-file/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-an-opendocument-format-odt-file/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 01:48:13 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=597</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1443] Working with an OpenDocument Format (.odt) file, a video-tutorial by Ian Ozsvald This video is part of the series OpenOffice Writer 3.1 for Microsoft Word users 

<p>Now let&#8217;s look at a native document &#8211; OpenOffice works with .odt files (OpenDocument Text).  Normally these are zipped structures that contain xml [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
<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-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=7500030&#038;fromSeriesID=750'><b>[1443] Working with an OpenDocument Format (.odt) file</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=2'>Ian Ozsvald</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=jeHP2r34E'>OpenOffice Writer 3.1 for Microsoft Word users</a><br /> 
<div class="document">
<p>Now let&#8217;s look at a native document &#8211; OpenOffice works with .odt files (<a class="reference external" href="http://en.wikipedia.org/wiki/OpenDocument">OpenDocument Text</a>).  Normally these are zipped structures that contain xml and binary data &#8211; here we look at what&#8217;s inside an .odt file.<br />
If you&#8217;re curious, you can poke inside your own .odt files using my instructions.<br />
You&#8217;ll find more tips at at <a class="reference external" href="http://3monkeyweb.com/3monkeys/2007/01/12/openoffice-odt-opened-up-part-1/">3monkeyweb</a>.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
<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-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-working-with-an-opendocument-format-odt-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Working with Word (.doc) files</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 01:48:10 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=594</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1442] Working with Word (.doc) files, a video-tutorial by Ian Ozsvald This video is part of the series OpenOffice Writer 3.1 for Microsoft Word users 

<p>An early hurdle when switching to OpenOffice will be the question of whether you can still share documents with MS Office users.  Of course you [...]


Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-an-opendocument-format-odt-file/' rel='bookmark' title='Permanent Link: New Video Published: Working with an OpenDocument Format (.odt) file'>New Video Published: Working with an OpenDocument Format (.odt) file</a></li>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7500020&#038;fromSeriesID=750'><b>[1442] Working with Word (.doc) files</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=2'>Ian Ozsvald</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=jeHP2r34E'>OpenOffice Writer 3.1 for Microsoft Word users</a><br /> 
<div class="document">
<p>An early hurdle when switching to OpenOffice will be the question of whether you can still share documents with MS Office users.  Of course you can!  Here we edit a document in both MS Word 2003 and OpenOffice 3.1 Writer to show that all formatting is preserved.</p>
<p>You can read a bit more about <a class="reference external" href="http://www.tutorialsforopenoffice.org/tutorial/Microsoft_Office_And_OpenOffice.html">MS Office and OpenOffice</a>.</p>
</div>


<p>Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-an-opendocument-format-odt-file/' rel='bookmark' title='Permanent Link: New Video Published: Working with an OpenDocument Format (.odt) file'>New Video Published: Working with an OpenDocument Format (.odt) file</a></li>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Installing OpenOffice 3.1 on Windows XP</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-installing-openoffice-3-1-on-windows-xp/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-installing-openoffice-3-1-on-windows-xp/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 01:48:09 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=593</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1441] Installing OpenOffice 3.1 on Windows XP (Free), a video-tutorial by Ian Ozsvald This video is part of the series OpenOffice Writer 3.1 for Microsoft Word users 

<p>In just over 2 minutes we run you through the installation of OpenOffice 3.1 on Windows XP.  We also show you how you [...]


Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/open-source-software/openoffice-31-writer-tutorial/' rel='bookmark' title='Permanent Link: OpenOffice 3.1 Writer Tutorial'>OpenOffice 3.1 Writer Tutorial</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7500010&#038;fromSeriesID=750'><b>[1441] Installing OpenOffice 3.1 on Windows XP (Free)</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=2'>Ian Ozsvald</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=jeHP2r34E'>OpenOffice Writer 3.1 for Microsoft Word users</a><br /> 
<div class="document">
<p>In just over 2 minutes we run you through the installation of OpenOffice 3.1 on Windows XP.  We also show you how you can download a version of OpenOffice for Windows, Mac or Linux in different languages.<br />
Visit <a class="reference external" href="http://www.openoffice.org/">OpenOffice.org</a> to get started.</p>
</div>


<p>Related posts:<ol><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>
<li><a href='http://blog.showmedo.com/open-source-software/openoffice-31-writer-tutorial/' rel='bookmark' title='Permanent Link: OpenOffice 3.1 Writer Tutorial'>OpenOffice 3.1 Writer Tutorial</a></li>
<li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-installing-openoffice-3-1-on-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Published: Series Overview in 4 minutes (OpenOffice 3.1 for Word users)</title>
		<link>http://blog.showmedo.com/new-showmedo-videos/new-video-published-series-overview-in-4-minutes-openoffice-3-1-for-word-users/</link>
		<comments>http://blog.showmedo.com/new-showmedo-videos/new-video-published-series-overview-in-4-minutes-openoffice-3-1-for-word-users/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 03:14:32 +0000</pubDate>
		<dc:creator>wizzy</dc:creator>
				<category><![CDATA[New ShowMeDo Videos]]></category>
		<category><![CDATA[Open Source Software]]></category>

		<guid isPermaLink="false">http://blog.showmedo.com/?p=591</guid>
		<description><![CDATA[<p>Showmedo is proud to publish:[1440] Series Overview in 4 minutes (OpenOffice 3.1 for Word users) (Free), a video-tutorial by Ian Ozsvald This video is part of the series OpenOffice Writer 3.1 for Microsoft Word users 

<p>In this series we help you move from Microsoft Word (2003 is our example) to OpenOffice 3.1.  We show [...]


Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
<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-working-with-an-opendocument-format-odt-file/' rel='bookmark' title='Permanent Link: New Video Published: Working with an OpenDocument Format (.odt) file'>New Video Published: Working with an OpenDocument Format (.odt) file</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Showmedo is proud to publish:<a href='http://showmedo.com/videotutorials/video?name=7500000&#038;fromSeriesID=750'><b>[1440] Series Overview in 4 minutes (OpenOffice 3.1 for Word users) (Free)</b></a>, a video-tutorial by <a class='authorTitle' href='http://showmedo.com/videotutorials/?author=2'>Ian Ozsvald</a><br /> This video is part of the series <a href='http://showmedo.com/videotutorials/series?name=jeHP2r34E'>OpenOffice Writer 3.1 for Microsoft Word users</a><br /> 
<div class="document">
<p>In this series we help you move from Microsoft Word (2003 is our example) to OpenOffice 3.1.  We show you how to use both Word and Office to edit the same document and how to do all the usual functions in OpenOffice, as well as where to go to get your questions answered.<br />
Visit <a class="reference external" href="http://www.openoffice.org/">OpenOffice.org</a> to get started, see the live <a class="reference external" href="http://marketing.openoffice.org/marketing_bouncer.html">download counter</a> and read more background at <a class="reference external" href="http://en.wikipedia.org/wiki/Openoffice">WikiPedia</a>.</p>
</div>


<p>Related posts:<ol><li><a href='http://blog.showmedo.com/new-showmedo-videos/new-video-published-working-with-word-doc-files/' rel='bookmark' title='Permanent Link: New Video Published: Working with Word (.doc) files'>New Video Published: Working with Word (.doc) files</a></li>
<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-working-with-an-opendocument-format-odt-file/' rel='bookmark' title='Permanent Link: New Video Published: Working with an OpenDocument Format (.odt) file'>New Video Published: Working with an OpenDocument Format (.odt) file</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.showmedo.com/new-showmedo-videos/new-video-published-series-overview-in-4-minutes-openoffice-3-1-for-word-users/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>
	</channel>
</rss>

