<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>My Python &#38; co. stuff</title>
	<atom:link href="http://ython.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ython.wordpress.com</link>
	<description>Constant fight!</description>
	<lastBuildDate>Thu, 05 Jan 2012 08:57:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ython.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My Python &#38; co. stuff</title>
		<link>http://ython.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ython.wordpress.com/osd.xml" title="My Python &#38; co. stuff" />
	<atom:link rel='hub' href='http://ython.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Qt Creator 1.1.3 extremely slow on Windows</title>
		<link>http://ython.wordpress.com/2011/11/08/qt-creator-1-1-3-extremely-slow-on-windows/</link>
		<comments>http://ython.wordpress.com/2011/11/08/qt-creator-1-1-3-extremely-slow-on-windows/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 10:06:36 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[QT]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=73</guid>
		<description><![CDATA[Qt Creator from Qt SDK 1.1.3 was very slow for me. My setup? VAIO equipped with i5 + 8 GB RAM + 500GB of Seagate Momentus XT. Symptoms? Qt Creator started up in about minute. During that time, it didn&#8217;t utilize any of CPU (0-1%) and steadily grown in memory from about 50MB up to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=73&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://qt.nokia.com/downloads/" />Qt Creator</a> from <a href="http://qt.nokia.com/downloads/" />Qt SDK 1.1.3</a> was very slow for me.
<p>
My setup? VAIO equipped with i5 + 8 GB RAM + 500GB of Seagate Momentus XT. </p>
<p>
Symptoms? </p>
<ul>
<li>Qt Creator started up in about minute. During that time, it didn&#8217;t utilize any of CPU (0-1%) and steadily grown in memory from about 50MB up to 80MB
<li>typing anything in Options search box caused the whole program to hang
<li>clicking &#8220;Analyzer&#8221; or &#8220;Version control systems&#8221; in options&#8230; yes, you guessed it. Hang.
</ul>
<p>The whole situation looked like a single false click &#8211; and I am doomed to wait for around 30 seconds until it starts working again.</p>
<p>
Antivirus? Turned off. Didn&#8217;t help.</p>
<p>
Solution? Yes, I found it. This is my path:<br />
<code><br />
C:\Users\dotz\Desktop&gt;echo %PATH%<br />
C:\Program Files (x86)\AMD APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\ActiveState Komodo IDE 6\;C:\Program Files (x86)\ActiveState Komodo Edit 6\;C:\GTK\bin;C:\Program Files (x86)\PC Connectivity Solution\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;\;C:\Program Files (x86)\Sony\VAIO Startup Setting Tool;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;c:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Calibre2\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\TortoiseHg\;C:\Program Files (x86)\Bazaar;C:\Program Files (x86)\VisualSVN\bin;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Nmap;c:\python27;c:\python27\scripts;c:\gnuwin32\bin;c:\Program Files (x86)\PuTTY<br />
</code><br />
As you can see, I have <a href="http://gnuwin32.sourceforge.net/" />GnuWin32</a> in it and a few version control systems (<a href="http://tortoisesvn.tigris.org/" />TortoiseSVN</a>, for example). I have no idea which caused Qt Creator to lag. Instead, I created a simple batch file to start it up, like this:<br />
</code><br />
@echo off<br />
set PATH=c:\windows;c:\windows\system32<br />
start c:\qtsdk\QtCreator\bin\qtcreator.exe
</pre>
<p>Qt Creator starts quickly and works fast. </p>
<p>
Are you affected by this bug too? You can comment on <a href="https://bugreports.qt.nokia.com/browse/QTCREATORBUG-6501">the bug report page</a> I created.</p>
<hr />
<b>Update:</b> Solved. The offending path entry? <code><br />
set PATH=\<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=73&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2011/11/08/qt-creator-1-1-3-extremely-slow-on-windows/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>Pyglet: set window as &#8220;always on top&#8221; (topmost) on win32</title>
		<link>http://ython.wordpress.com/2011/03/23/pyglet-set-window-as-always-on-top-topmost-on-win32/</link>
		<comments>http://ython.wordpress.com/2011/03/23/pyglet-set-window-as-always-on-top-topmost-on-win32/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 21:55:21 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=64</guid>
		<description><![CDATA[Short snippet for settings window as topmost in Pyglet on win32 platform:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=64&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Short snippet for settings window as topmost in Pyglet on win32 platform:</p>
<p><pre class="brush: python;">
    from pyglet.window.win32 import _user32
    from pyglet.window.win32.constants import *

    def set_topmost(window):
        _user32.SetWindowPos(
            window._hwnd, HWND_TOPMOST, 0, 0, 0, 0,
            SWP_NOMOVE | SWP_NOSIZE)
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=64&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2011/03/23/pyglet-set-window-as-always-on-top-topmost-on-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>Test Django application without creating a project</title>
		<link>http://ython.wordpress.com/2011/03/11/test-django-application-without-creating-a-project/</link>
		<comments>http://ython.wordpress.com/2011/03/11/test-django-application-without-creating-a-project/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 01:28:03 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=61</guid>
		<description><![CDATA[&#8230; and settings.py, and urls.py, and so on. Customize as you like. &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=61&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230; and settings.py, and urls.py, and so on. Customize as you like.</p>
<p>&nbsp;<br />
<pre class="brush: python;">
from django.conf import settings
from django.core import management

MY_APP = '' # Your app name here
if not MY_APP_NAME:
    import sys
    MY_APP_NAME = sys.argv[1]

settings.configure(
    DEBUG=True, 
    TEMPLATE_DEBUG=True,
    INSTALLED_APPS = [MY_APP],
    DATABASES = {
        'default': {
            'ENGINE':'django.db.backends.sqlite3',
            'NAME': ':memory:',
            }
        }
    )

management.call_command('test', MY_APP)
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=61&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2011/03/11/test-django-application-without-creating-a-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>X11 forwarding + FreeBSD = no DISPLAY variable?</title>
		<link>http://ython.wordpress.com/2010/12/18/x11-forwarding-freebsd-no-display-variable/</link>
		<comments>http://ython.wordpress.com/2010/12/18/x11-forwarding-freebsd-no-display-variable/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 22:24:01 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=57</guid>
		<description><![CDATA[No DISPLAY variable on FreeBSD (or anything else) when you use SSH with X11Forwarding? Install xauth package.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=57&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No DISPLAY variable on FreeBSD (or anything else) when you use SSH with X11Forwarding?</p>
<p>Install xauth package.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=57&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2010/12/18/x11-forwarding-freebsd-no-display-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>flowplayer not working?</title>
		<link>http://ython.wordpress.com/2010/08/03/flowplayer-not-working/</link>
		<comments>http://ython.wordpress.com/2010/08/03/flowplayer-not-working/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 23:34:53 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=54</guid>
		<description><![CDATA[flowplayer working from time to time? flowplayer black window problem? flowplayer shows black window sometimes? flowplayer sometimes not working? Enough Google feeding. The solution is simple and not as obvious. Make sure you do not serve SWF files gzipped ﻿(server-side, by Apache&#8217;s mod_gzip for example). I already wasted 3 hours for this.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=54&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>flowplayer working from time to time?</p>
<p>flowplayer black window problem?</p>
<p>flowplayer shows black window sometimes?</p>
<p>flowplayer sometimes not working?</p>
<p>Enough Google feeding. The solution is simple and not as obvious.</p>
<p><strong>Make sure you do not serve SWF files gzipped ﻿</strong>(server-side, by Apache&#8217;s mod_gzip for example).</p>
<p>I already wasted 3 hours for this.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=54&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2010/08/03/flowplayer-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>django-emailtemplates</title>
		<link>http://ython.wordpress.com/2010/08/03/django-emailtemplates/</link>
		<comments>http://ython.wordpress.com/2010/08/03/django-emailtemplates/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 20:59:24 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=52</guid>
		<description><![CDATA[Would you like to send an e-mail with Django? Would you like to use an admin-editable template, which is stored in the db? Well, here&#8217;s a small code snippet for you : http://code.google.com/p/django-emailtemplates/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=52&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Would you like to send an e-mail with Django? Would you like to use an admin-editable template, which is stored in the db? Well, here&#8217;s a small code snippet for you : <a href="http://code.google.com/p/django-emailtemplates/">http://code.google.com/p/django-emailtemplates/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=52&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2010/08/03/django-emailtemplates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>django-pgsql-interval-field &#8211; more backends, anyone?</title>
		<link>http://ython.wordpress.com/2010/07/31/django-pgsql-interval-field-more-backends-anyone/</link>
		<comments>http://ython.wordpress.com/2010/07/31/django-pgsql-interval-field-more-backends-anyone/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 23:23:00 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=50</guid>
		<description><![CDATA[I am trying to add more backends support for django-pgsql-interval-field . Unfortunatley, as my current work involves PostgreSQL-based Django application, I am unable to test on anything else, than PostgreSQL. Anybody interested in helping me with this project?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=50&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am trying to add more backends support for <a href="http://code.google.com/p/django-pgsql-interval-field/">django-pgsql-interval-field</a> . Unfortunatley, as my current work involves PostgreSQL-based Django application, I am unable to test on anything else, than PostgreSQL. Anybody interested in helping me with this project?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=50&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2010/07/31/django-pgsql-interval-field-more-backends-anyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>Dojango + dojo.DataGrid = dojango-datable</title>
		<link>http://ython.wordpress.com/2010/07/25/dojango-dojo-datagrid-dojango-datable/</link>
		<comments>http://ython.wordpress.com/2010/07/25/dojango-dojo-datagrid-dojango-datable/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 12:24:06 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=47</guid>
		<description><![CDATA[I&#8217;d like to announce my new, simple project for Dojango &#8211; dojango-datable, available here: http://code.google.com/p/dojango-datable/ This project allows you to create a definition of a table (in Python). Then, by adding 3 simple tags to your HTML template, you can render a pretty dojo.DataGrid table. Then, by chaning the request&#8217;s GET parameters, you can generate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=47&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to announce my new, simple project for Dojango &#8211; dojango-datable, available here: <a href="http://code.google.com/p/dojango-datable/">http://code.google.com/p/dojango-datable/</a></p>
<p>This project allows you to create a definition of a table (in Python). Then, by adding 3 simple tags to your HTML template, you can render a pretty dojo.DataGrid table. Then, by chaning the request&#8217;s GET parameters, you can generate XLS or CSV file with the data.</p>
<p>Patches welcome.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=47&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2010/07/25/dojango-dojo-datagrid-dojango-datable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>Django, PostgreSQL and INTERVAL (IntervalField) &#8211; again</title>
		<link>http://ython.wordpress.com/2010/07/25/django-postgresql-and-interval-intervalfield-again/</link>
		<comments>http://ython.wordpress.com/2010/07/25/django-postgresql-and-interval-intervalfield-again/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 12:21:56 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=43</guid>
		<description><![CDATA[Please have a look at http://code.google.com/p/django-pgsql-interval-field/ if you are using PostgreSQL with Django and want to implement INTERVAL fields. No bigints, no fancy timedelta-to-seconds conversion, just plain old simple PostgreSQL&#8217;s native INTERVAL type. Isn&#8217;t this cool? I already use this simple implementation in a commercial setting and it does work pretty well. Problems? Feel free to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=43&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Please have a look at <a href="http://code.google.com/p/django-pgsql-interval-field/">http://code.google.com/p/django-pgsql-interval-field/</a> if you are using PostgreSQL with Django and want to implement INTERVAL fields. No bigints, no fancy timedelta-to-seconds conversion, just plain old simple PostgreSQL&#8217;s native INTERVAL type. Isn&#8217;t this cool?</p>
<p>I already use this simple implementation in a commercial setting and it does work pretty well.</p>
<p>Problems? Feel free to send me a patch.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=43&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2010/07/25/django-postgresql-and-interval-intervalfield-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
		<item>
		<title>float &gt; Decimal</title>
		<link>http://ython.wordpress.com/2009/10/25/float-decimal/</link>
		<comments>http://ython.wordpress.com/2009/10/25/float-decimal/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 15:30:28 +0000</pubDate>
		<dc:creator>Michał</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://ython.wordpress.com/?p=40</guid>
		<description><![CDATA[Another Python gotcha? &#62;&#62;&#62; a 12.878 &#62;&#62;&#62; b Decimal('15.0') &#62;&#62;&#62; a &#62; b True &#62;&#62;&#62; type(a) &#60;type 'float'&#62; &#62;&#62;&#62; type(b) &#60;class 'decimal.Decimal'&#62; &#62;&#62;&#62; 1.0 &#62; Decimal('1.0') True &#62;&#62;&#62; 0.0 &#62; Decimal('0.0') True &#62;&#62;&#62; 1.0 &#62; Decimal('1.0') True &#62;&#62;&#62; 0.0 &#62; Decimal('0.0') True<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=40&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Another Python gotcha?</p>
<pre>&gt;&gt;&gt; a
12.878
&gt;&gt;&gt; b
Decimal('15.0')
&gt;&gt;&gt; a &gt; b
True
&gt;&gt;&gt; type(a)
&lt;type 'float'&gt;
&gt;&gt;&gt; type(b)
&lt;class 'decimal.Decimal'&gt;
<div id="_mcePaste" style="position:absolute;left:-10000px;top:112px;width:1px;height:1px;">&gt;&gt;&gt; 1.0 &gt; Decimal('1.0')</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:112px;width:1px;height:1px;">True</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:112px;width:1px;height:1px;">&gt;&gt;&gt; 0.0 &gt; Decimal('0.0')</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:112px;width:1px;height:1px;">True</div>

&gt;&gt;&gt; 1.0 &gt; Decimal('1.0')
True
&gt;&gt;&gt; 0.0 &gt; Decimal('0.0')
True</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ython.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ython.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ython.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ython.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ython.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ython.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ython.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ython.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ython.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ython.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ython.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ython.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ython.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ython.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ython.wordpress.com&amp;blog=7255041&amp;post=40&amp;subd=ython&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ython.wordpress.com/2009/10/25/float-decimal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48a18ced5d094701f25f2faeb85741e2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">michalpasternak</media:title>
		</media:content>
	</item>
	</channel>
</rss>
