<?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</title>
	<atom:link href="http://www.pioverpi.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pioverpi.net</link>
	<description>...but that&#039;s just one!</description>
	<lastBuildDate>Wed, 10 Mar 2010 03:15:06 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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[Tech]]></category>
		<category><![CDATA[python]]></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[Django comes with a nice testing  rig that lets you individually test each app.  By using a combination of pyunit &#38; Django&#8217;s testing tools, you&#8217;ll be able to whip up a testing suite for each of your site&#8217;s apps (more information here: http://docs.djangoproject.com/en/dev/topics/testing/)
However there is some strangeness as to how Django expects the tests to [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/03/10/organizing-django-tests-into-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django Unit Test Failure in auth Package</title>
		<link>http://www.pioverpi.net/2010/03/01/django-unit-test-failure-in-auth-package/</link>
		<comments>http://www.pioverpi.net/2010/03/01/django-unit-test-failure-in-auth-package/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 17:49:19 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[unit]]></category>
		<category><![CDATA[unit test]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1502</guid>
		<description><![CDATA[We&#8217;ve been using the django.contrib.auth app to handle all of our user login/logout/registration/etc. needs, and it has worked great for us so far.  However, when we tried to run the unit tests for our project we found 10 or so errors with regards to the auth package itself.
At first, I thought it was because we [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/03/01/django-unit-test-failure-in-auth-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Confirm Password Change</title>
		<link>http://www.pioverpi.net/2010/03/01/confirm-password-change/</link>
		<comments>http://www.pioverpi.net/2010/03/01/confirm-password-change/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 17:04:54 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[confirm password change]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1498</guid>
		<description><![CDATA[I was working with Django&#8217;s view.password_change today when I encountered the dialog box above.  As far as I could tell all of my information was being passed to Django correctly; but for reasons unknown to me I was still getting this &#8220;Confirm Password Change&#8221; message.
After a bit of Googling, I found out that this is [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/03/01/confirm-password-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incomplete Execution of Callbacks on JQuery POST</title>
		<link>http://www.pioverpi.net/2010/02/24/incomplete-execution-of-callbacks-on-jquery-post/</link>
		<comments>http://www.pioverpi.net/2010/02/24/incomplete-execution-of-callbacks-on-jquery-post/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 20:39:43 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[callback]]></category>
		<category><![CDATA[complete]]></category>
		<category><![CDATA[datatables]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1487</guid>
		<description><![CDATA[In JQuery, you can use the $.post() function to make a client-side AJAX request (more info here).
If you want to POST JSON objects to your server, you basically want to do something like this:

$.post( URL, [data], [CALLBACK FUNCTION], "json")

In the project that I&#8217;m working on, I&#8217;m rendering a table using JQuery + DataTables plugin.  [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/24/incomplete-execution-of-callbacks-on-jquery-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MRU Buffer Replacement Policy</title>
		<link>http://www.pioverpi.net/2010/02/23/mru-buffer-replacement-policy/</link>
		<comments>http://www.pioverpi.net/2010/02/23/mru-buffer-replacement-policy/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 19:15:05 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1481</guid>
		<description><![CDATA[This is what we saw on Google today when we looked up the MRU Buffer Replacement policy for our CSC443 midterm:
Read more about cache algorithms here: http://en.wikipedia.org/wiki/Cache_algorithms#Most_Recently_Used
]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/23/mru-buffer-replacement-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passing Parameters to a Function on HTML Events</title>
		<link>http://www.pioverpi.net/2010/02/21/passing-parameters-to-a-fn-on-html-events/</link>
		<comments>http://www.pioverpi.net/2010/02/21/passing-parameters-to-a-fn-on-html-events/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 23:16:32 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[dblclick]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[onclick]]></category>
		<category><![CDATA[ondblclick]]></category>
		<category><![CDATA[setAttr]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1433</guid>
		<description><![CDATA[Let&#8217;s say I have some function foo that needs to be called when some HTML element is clicked:

function foo(a, b) {
    :
    :
    :
}

:

i = 100;
j = 200;
element.setAttribute("onclick", "foo(i, j)");

In the example above, the Javascript interperter will see the line element.setAttribute("onclick", "foo(i, j)"); and automatically figure [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/21/passing-parameters-to-a-fn-on-html-events/feed/</wfw:commentRss>
		<slash:comments>0</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[Tech]]></category>
		<category><![CDATA[python]]></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:
if you’re [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/19/creating-django-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a Project to SVN in Eclipse</title>
		<link>http://www.pioverpi.net/2010/02/19/adding-a-project-to-svn-in-eclipse/</link>
		<comments>http://www.pioverpi.net/2010/02/19/adding-a-project-to-svn-in-eclipse/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 04:21:44 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[subclipse]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1422</guid>
		<description><![CDATA[This happens to me a lot.  I&#8217;ll be working away on some test application in Eclipse, and after a bit of tinkering I&#8217;ll realize that the code is actually good enough to commit into the repo.  So what do you do?
Well back when I didn&#8217;t know anything about Subclipse, I&#8217;d actually checkout the [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/19/adding-a-project-to-svn-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selenium and Firefox</title>
		<link>http://www.pioverpi.net/2010/02/11/selenium-and-firefox/</link>
		<comments>http://www.pioverpi.net/2010/02/11/selenium-and-firefox/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 19:41:06 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[selenium]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1416</guid>
		<description><![CDATA[Derek and I have been working on a Django web app as a side project, and of course, we decided that we needed to do some testing on it.
Derek at set up some basic Selenium tests, but I was having some difficulty running them with Firefox.  The error message that I got said:
Could not start [...]]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/11/selenium-and-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seriously?</title>
		<link>http://www.pioverpi.net/2010/02/09/seriously/</link>
		<comments>http://www.pioverpi.net/2010/02/09/seriously/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 05:34:51 +0000</pubDate>
		<dc:creator>jama22</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pioverpi.net/?p=1411</guid>
		<description><![CDATA[New blog time!  Less techno jargon and more opinion! http://life.pioverpi.net/
]]></description>
		<wfw:commentRss>http://www.pioverpi.net/2010/02/09/seriously/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
