<?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>Pi/Pi &#187; python</title>
	<atom:link href="http://www.pioverpi.net/category/tech/python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pioverpi.net</link>
	<description>...but that&#039;s just one!</description>
	<lastBuildDate>Thu, 24 Nov 2011 05:04:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>kääntää Deployed!</title>
		<link>http://www.pioverpi.net/2010/04/27/kaantaa-deployed/</link>
		<comments>http://www.pioverpi.net/2010/04/27/kaantaa-deployed/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 22:29:55 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[UofT]]></category>
		<category><![CDATA[bluehost]]></category>
		<category><![CDATA[csc309]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[kaantaa]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1602</guid>
		<description><![CDATA[Edit: And of course, the obligatory Project Page entry here: http://www.pioverpi.net/projects/csc309-a3-kaantaa-translations/ Now that I&#8217;m done with exams I can start blogging and coding for fun again.  Freedom! My first item on the tasklist was to deploy my CSC309 Django app (aka kääntää) on Bluehost.  Google again was my friend, and I found a few resources [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/04/27/kaantaa-deployed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django Models and Templates</title>
		<link>http://www.pioverpi.net/2010/03/30/django-models-and-templates/</link>
		<comments>http://www.pioverpi.net/2010/03/30/django-models-and-templates/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 17:52:47 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[regroup]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[template tags]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1563</guid>
		<description><![CDATA[When doing web development, you tend to lose a lot of flexibility regardless of the framework that you&#8217;re working with. You end up doing things the &#8220;Django-way&#8221; or the &#8220;RoR-way&#8221;.  That became painfully clear to me this weekend while I was working on my CSC309 assignment. The Model Let&#8217;s say that you have a model [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/03/30/django-models-and-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Organizing Django Tests into Folders</title>
		<link>http://www.pioverpi.net/2010/03/10/organizing-django-tests-into-folders/</link>
		<comments>http://www.pioverpi.net/2010/03/10/organizing-django-tests-into-folders/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 03:13:45 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[pyunit]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[unit test]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1524</guid>
		<description><![CDATA[Update: Due to some strange Django error, Django will refuse to run your app&#8217;s tests if your application doesn&#8217;t have a models.py file. You&#8217;ll need to create an empty models.pyin your app&#8217;s folder if you don&#8217;t have one Django comes with a nice testing  rig that lets you individually test each app.  By using a [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/03/10/organizing-django-tests-into-folders/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Creating Django Apps</title>
		<link>http://www.pioverpi.net/2010/02/19/creating-django-apps/</link>
		<comments>http://www.pioverpi.net/2010/02/19/creating-django-apps/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 16:11:12 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[new app]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1426</guid>
		<description><![CDATA[I&#8217;ve been doing a bit of work with the Django framework lately, and because I&#8217;m a total noob at it, Derek has been nice enough to hold my hand throughout the dev process. Django relies on the MVC design pattern, so you&#8217;ll want to modularize your components by creating Django apps.  From the Django book: [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/19/creating-django-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python Shell Commands, /bin/sh: Syntax error</title>
		<link>http://www.pioverpi.net/2010/01/29/shell-commands-in-python-sh-errors/</link>
		<comments>http://www.pioverpi.net/2010/01/29/shell-commands-in-python-sh-errors/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 18:58:04 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[/bin/sh]]></category>
		<category><![CDATA[bad]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fd]]></category>
		<category><![CDATA[sh]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1351</guid>
		<description><![CDATA[This semester, Derek and I have been doing some work on Postgres&#8217; buffer management system for my CSC443 Database Systems Technology course.  Derek, wrote a nice little Python script that parses various Postgres outputs and does a bit of math on it. However, when I tried to run his script on my machine, I got [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/01/29/shell-commands-in-python-sh-errors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Merging Text Files</title>
		<link>http://www.pioverpi.net/2009/11/09/merging-text-files/</link>
		<comments>http://www.pioverpi.net/2009/11/09/merging-text-files/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:29:01 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[python]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[plaintext]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1254</guid>
		<description><![CDATA[Because I&#8217;m taking a lot of &#8220;artsy&#8221; courses this year, I&#8217;m actually spending quite a bit of time to actually take proper notes when I do my readings.  When I used my Mac, this was a relatively simple task; I&#8217;d simply fired up DevonThink and just hammer away. Now that I&#8217;ve switched over to Windows [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2009/11/09/merging-text-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python + MS Word = A Bag of Hurt</title>
		<link>http://www.pioverpi.net/2009/03/21/python-msword-a-bag-of-hurt/</link>
		<comments>http://www.pioverpi.net/2009/03/21/python-msword-a-bag-of-hurt/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 09:15:09 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[python]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[doc]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[MSWord]]></category>
		<category><![CDATA[Project Gibson]]></category>
		<category><![CDATA[win32]]></category>
		<category><![CDATA[win32com.client]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=487</guid>
		<description><![CDATA[My uncle from Hong Kong recently contacted me about some problems that he was having with his research.  My uncle is a professor of Theology in Hong Kong; I&#8217;m not exactly sure what he does, or where he teaches, but apparently he needed some help with MSWord doc files. So I told him to e-mail [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2009/03/21/python-msword-a-bag-of-hurt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

