<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/assets/rss.xsl"?><rss version="0.92">
<channel>
<title>Aquarionics - Category - Python and Subcategories</title>
<link>http://www.aquarionics.com/category/Python</link>
<description></description>
<language>en-gb</language>
<managingEditor>Aquarion (nicholas@aquarionics.com)</managingEditor>
<webMaster>Site Admin (nicholas@aquarionics.com)</webMaster>
<lastBuildDate>Sun, 27 Jul 2008 17:08:00 +0000</lastBuildDate>
<docs>http://backend.userland.com/rss092</docs>
<item>
	<title>Djingle Django Scarecrow</title>
	<link>http://www.aquarionics.com/journal/2006/10/29/Djingle_Django_Scarecrow</link>
	<description>One of the concepts you may run into if you read into Python and its fans in great depth (and here I mean Python of the programming type rather than the Monty type) is that of &amp;#8220;Guido&amp;#8217;s Time Machine&amp;#8221;, the number of times when you are thinking &amp;#8220;Would it be nice if Python did this&amp;#8230;&amp;#8221; and you suddenly find that yes, that&amp;#8217;s exactly how Python does it, to the...</description>
</item>
<item>
	<title>Aquaintances 2</title>
	<link>http://www.aquarionics.com/journal/2005/05/01/Aquaintances_2</link>
	<description>Aquaintances 2 is an XML Feed reader for Microsoft Windows, Linux and Apple OSX. It will support baysian filtering of posts &amp;#8211; meaning posts you are more interested in will float to the top of your reading lists &amp;#8211; as well as regex field matching. It is built in GTK/Python (on top of LibGlade) using the Mozilla Firefox GTK bindings. It parses feeds with the Ultra Liberal Feed Parser,...</description>
</item>
<item>
	<title>Project Scout</title>
	<link>http://www.aquarionics.com/journal/2005/04/02/Project_Scout</link>
	<description>Somewhat to my suprise, I have recieved not one, but two patches to open source projects that I run. That is that gilmae submitted a better install document for AqWiki, and  John Meadows has submitted a new version of the viewer file for MusicDB 

	Flush with this success, I&amp;#8217;ve started a new project. Well, two. Threeish, really. First, I&amp;#8217;ve gone back to the base system that Cantrip...</description>
</item>
<item>
	<title>Mounting Python</title>
	<link>http://www.aquarionics.com/journal/2005/01/15/Mounting_Python</link>
	<description>How do you work with Python and web development? Do you use quixote, mod_python, normal CGI, Zope or something I&amp;#8217;ve never heard of? Why do you use that instead of something else?</description>
</item>
<item>
	<title>Vampire: The Maskerade: Bloodlines. Plus: Python</title>
	<link>http://www.aquarionics.com/journal/2004/12/10/Vampire%3A_The_Maskerade%3A_Bloodlines._Plus%3A_Python</link>
	<description>(Too much punctuation in one title, perhaps?)

Aquarion returns from playing Bloodlines 
Mandy_Away: good?
Aquarion: Sort of
Aquarion: The story is well done, the characters are very well done, and I'm enjoying it.
Aquarion: And it uses the HL2 engine, so it looks cool
Aquarion: OTOH, it runs like a dog (Even though HL2 - which is far more visually complicated - glides)
Aquarion: and...</description>
</item>
<item>
	<title>Cantrip Diary - ZopeTastic</title>
	<link>http://www.aquarionics.com/journal/2004/09/22/Cantrip_Diary_-_ZopeTastic</link>
	<description>Okay, so my new workplace use Zope, so it&amp;#8217;s probably a good idea for me to use that as a framework. I mean, enough people use it for it not to be too bad, right?

	Dear god does it suck. I mean, Whales though really thin gauze, it sucks that badly. I got it working on my local network after swearing at it quite loudly. It&amp;#8217;s own personal religion of &amp;#8220;Not Invented Here&amp;#8221; is...</description>
</item>
<item>
	<title>The explaination &amp; Python</title>
	<link>http://www.aquarionics.com/journal/2004/09/10/The_explaination_%5Band%5D_Python</link>
	<description>After a number of similer requests, I&amp;#8217;ve done a Goodbye Browserangel FAQ at holistic.

	I leave BA on Friday 15th October, I enter Those Who Evolve so that&amp;#8217;ll be fun.

	Today I&amp;#8217;ve spent attempting to work out how to do Python Web Apps sensibly without being tied to Zope. I&amp;#8217;m grasping the Python Way, I think, but I still think in PHP and Web Dev terms, so actually learning...</description>
</item>
<item>
	<title>Sunday Morning &amp; Python</title>
	<link>http://www.aquarionics.com/journal/2004/08/08/Sunday_Morning_%5Band%5D_Python</link>
	<description>Saturday we had a barbeque. People came around, we played games, we ate home made burgers, nice sausages and barbequed bananas. We dragged people though the streets of Letchworth, forcing them against their will to buy sweets from the World&amp;#8217;s Nicest Sweetshop. Truely, we are bad people.

	Today, being Sunday, I rose late (10 am being late to my commuter-bound sleep patterns), put some...</description>
</item>
<item>
	<title>PFd4-II Design Diary - Part One: Start of a Brand New World</title>
	<link>http://www.aquarionics.com/journal/2004/06/06/PFd4-II_Design_Diary_-_Part_One%3A_Start_of_a_Brand_New_World</link>
	<description>In the first part of a brand new series, I'm going to document the entire process of getting a web-app working.

I've been promising a new version of PFd4 for a while now. I have also been meaning to learn Python properly, so I've decided to combine these two projects into one handy package.

PFd4 was originally concieved when 2d10 - which my girlfriend and a number of my other friends were...</description>
</item>
<item>
	<title>Python annoyance</title>
	<link>http://www.aquarionics.com/journal/2004/05/11/Python_annoyance</link>
	<description>Given the following code:

def index():
        try:
                import MySQLdb
        except:
                return "Couldn't import MySQL module"
        return "Yay Workyness"

	inside a mod_python instance, is there any reason why it should return &amp;#8220;Yay Workyness&amp;#8221; and &amp;#8220;Couldn&amp;#8217;t import MySQL module&amp;#8221; in roughly equal amounts? (MySQLdb in this case is a sub...</description>
</item>
<item>
	<title>Accomplish</title>
	<link>http://www.aquarionics.com/journal/2004/05/10/Accomplish</link>
	<description>Todays accomplishment:

	XML + XSLT + Python = HTML

	(I should point out that the above has required my relearning Python from scratch &amp;#8211; previous efforts have been basically PHP in Python &amp;#8211; learning XSLT, and learning how mod_python works. Lots of work for so little gain)</description>
</item>
<item>
	<title>Write first time</title>
	<link>http://www.aquarionics.com/journal/2004/04/15/Write_first_time</link>
	<description>Workrave is telling me I should stop for the day. I trust it. This should not take long.

	RSI back. Sentances shorter. Feel like am in a bad Bridget Jones parody.

	Possibly Shatner impersonation.

	Learning Python. Have taught python to play Foursquare solitare.

	Badly.

	Am positive that are better ways of doing things I&amp;#8217;m doing. Doing it anyway. Learning Process Considered...</description>
</item>
<item>
	<title>Python Question</title>
	<link>http://www.aquarionics.com/journal/2003/05/08/Python_Question</link>
	<description>I need to save a list into a tab-deliminated text-file. (Mark&amp;#8217;s RSSParser sends me the last-modified of the feed as a list which I need to save to the config file so I can recall it when I next run and feed it to the site to make sure I&amp;#8217;m not grabbing a duplicate).

	The logical way to do this is to serialize the list and save it. For this, I find Pickle which does exactly that. The...</description>
</item>
</channel>
</rss>