<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Occasional insights into the mind of an awesomeness.</title>
	<link>http://grimboy.co.uk/blawg</link>
	<description>Pushing the boundaries of egotism since 2006!</description>
	<pubDate>Mon, 08 Sep 2008 08:33:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>

	<item>
		<title>Comment on Where&#8217;s my vi &#60;textarea&#62;? by Mark Edgar</title>
		<link>http://grimboy.co.uk/blawg/wheres-my-vi-textarea/#comment-3353</link>
		<author>Mark Edgar</author>
		<pubDate>Mon, 31 Dec 2007 20:09:08 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/wheres-my-vi-textarea/#comment-3353</guid>
					<description>You missed three, by my count:

http://www.migniot.com/matrix/projects/jsvim/

http://vian.sourceforge.net/

http://alee.anj.kr/misc/vita.html

Alas, none of these are yet good enough to use either.</description>
		<content:encoded><![CDATA[<p>You missed three, by my count:</p>
<p><a href="http://www.migniot.com/matrix/projects/jsvim/" rel="nofollow">http://www.migniot.com/matrix/projects/jsvim/</a></p>
<p><a href="http://vian.sourceforge.net/" rel="nofollow">http://vian.sourceforge.net/</a></p>
<p><a href="http://alee.anj.kr/misc/vita.html" rel="nofollow">http://alee.anj.kr/misc/vita.html</a></p>
<p>Alas, none of these are yet good enough to use either.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on A guide to django on dreamhost (and django deployment in general) and my experience so far by grimboy</title>
		<link>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-393</link>
		<author>grimboy</author>
		<pubDate>Mon, 07 May 2007 18:38:59 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-393</guid>
					<description>Yeah, cron.

If you are on dreamhost you can go to https://panel.dreamhost.com/index.cgi?tree=goodies.cron&#038; otherwise login via shell and do crontab -e

The alternative is to write a middleware that if the difference between the current time and the last running time is more than an hour then run the desired code. But cron is a much easier, established solution.</description>
		<content:encoded><![CDATA[<p>Yeah, cron.</p>
<p>If you are on dreamhost you can go to <a href="https://panel.dreamhost.com/index.cgi?tree=goodies.cron&#038;" rel="nofollow">https://panel.dreamhost.com/index.cgi?tree=goodies.cron&#038;</a> otherwise login via shell and do crontab -e</p>
<p>The alternative is to write a middleware that if the difference between the current time and the last running time is more than an hour then run the desired code. But cron is a much easier, established solution.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on A guide to django on dreamhost (and django deployment in general) and my experience so far by Altu</title>
		<link>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-392</link>
		<author>Altu</author>
		<pubDate>Mon, 07 May 2007 17:48:55 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-392</guid>
					<description>Is there a way to run some piece of django code repeatedly, like every one hour?

Cheers,
Altu</description>
		<content:encoded><![CDATA[<p>Is there a way to run some piece of django code repeatedly, like every one hour?</p>
<p>Cheers,<br />
Altu</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on A guide to django on dreamhost (and django deployment in general) and my experience so far by Occasional insights into the mind of an awesomeness. &#187; Blog Archive &#187; Django on dreamhost problem</title>
		<link>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-56</link>
		<author>Occasional insights into the mind of an awesomeness. &#187; Blog Archive &#187; Django on dreamhost problem</author>
		<pubDate>Tue, 26 Dec 2006 20:23:19 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-56</guid>
					<description>[...] My mum&#8217;s site is set up using Django on Apache running in a shared hosting environment with Dreamhost as laid out in the official documentation and my own write-up. I was having a few problems with it. The problem was an intermittent, unpredictable error about a third of the time which lead to /internal_error.html being displayed. This means that Django wasn&#8217;t even starting or was starting and failing very early on because if it was starting it would display the 500.html template instead of /internal_error.html. I took a look at the error.log and sure enough there were errors in the following format for each failed request: [time and date] [error] [client xxx.xxx.xxx.xxx] (104)Connection reset by peer: FastCGI: comm with server "/home/grimboy/example.com/django.fcgi" aborted: read failed [time and date] [error] [client xxx.xxx.xxx.xxx] FastCGI: incomplete headers (0 bytes) received from server "/home/grimboy/example.com/django.fcgi" [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] My mum&#8217;s site is set up using Django on Apache running in a shared hosting environment with Dreamhost as laid out in the official documentation and my own write-up. I was having a few problems with it. The problem was an intermittent, unpredictable error about a third of the time which lead to /internal_error.html being displayed. This means that Django wasn&#8217;t even starting or was starting and failing very early on because if it was starting it would display the 500.html template instead of /internal_error.html. I took a look at the error.log and sure enough there were errors in the following format for each failed request: [time and date] [error] [client xxx.xxx.xxx.xxx] (104)Connection reset by peer: FastCGI: comm with server &#8220;/home/grimboy/example.com/django.fcgi&#8221; aborted: read failed [time and date] [error] [client xxx.xxx.xxx.xxx] FastCGI: incomplete headers (0 bytes) received from server &#8220;/home/grimboy/example.com/django.fcgi&#8221; [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Django on dreamhost problem by Automatthias</title>
		<link>http://grimboy.co.uk/blawg/django-on-dreamhost-problem/#comment-55</link>
		<author>Automatthias</author>
		<pubDate>Tue, 26 Dec 2006 00:47:17 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/django-on-dreamhost-problem/#comment-55</guid>
					<description>It fixed my problem, which appeared when they switched 2.4 kernel to 2.6. Well, I don't know if it was the kernel version that caused problems, but it happened at the same time.

Thanks!</description>
		<content:encoded><![CDATA[<p>It fixed my problem, which appeared when they switched 2.4 kernel to 2.6. Well, I don&#8217;t know if it was the kernel version that caused problems, but it happened at the same time.</p>
<p>Thanks!</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on A guide to django on dreamhost (and django deployment in general) and my experience so far by henry</title>
		<link>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-54</link>
		<author>henry</author>
		<pubDate>Mon, 25 Dec 2006 12:09:56 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/a-guide-to-django-on-dreamhost-and-django-deployment-in-general-and-my-experiance-so-far/#comment-54</guid>
					<description>I also made a crontab to pkill dispath.fcgi every two hours.
It works well.</description>
		<content:encoded><![CDATA[<p>I also made a crontab to pkill dispath.fcgi every two hours.<br />
It works well.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Vim is teh awesombe! by grimboy</title>
		<link>http://grimboy.co.uk/blawg/vim-is-teh-awesombe/#comment-52</link>
		<author>grimboy</author>
		<pubDate>Wed, 20 Dec 2006 04:24:33 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/vim-is-teh-awesombe/#comment-52</guid>
					<description>Heh, so emacs allows you to travel back in time and then centre in on a certain point of time and difficulty? That's pretty weird. So emacs users get to live forever? I can see the appeal but immortality isn't my thing. Also vi is more difficult than gvim in that you can't fall back on traditional gui editing techniques when you need to (for example, until I learnt the key for it I would use the menus for spell check). What is it saying about Visual Studio? That it suddenly becomes very easy? Anyway, interesting method of comparison. I'm not sure if it inspires conclusions though :D.</description>
		<content:encoded><![CDATA[<p>Heh, so emacs allows you to travel back in time and then centre in on a certain point of time and difficulty? That&#8217;s pretty weird. So emacs users get to live forever? I can see the appeal but immortality isn&#8217;t my thing. Also vi is more difficult than gvim in that you can&#8217;t fall back on traditional gui editing techniques when you need to (for example, until I learnt the key for it I would use the menus for spell check). What is it saying about Visual Studio? That it suddenly becomes very easy? Anyway, interesting method of comparison. I&#8217;m not sure if it inspires conclusions though :D.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Vim is teh awesombe! by Alexandre</title>
		<link>http://grimboy.co.uk/blawg/vim-is-teh-awesombe/#comment-51</link>
		<author>Alexandre</author>
		<pubDate>Wed, 20 Dec 2006 04:23:32 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/vim-is-teh-awesombe/#comment-51</guid>
					<description>But, at the end, we are both &lt;a href="http://www.saki.com.au/mirror/vi/mirror/knottenbelt_william.vi_vs_emacs_study..txt" rel="nofollow"&gt;winners&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>But, at the end, we are both <a href="http://www.saki.com.au/mirror/vi/mirror/knottenbelt_william.vi_vs_emacs_study..txt" rel="nofollow">winners</a>.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Vim is teh awesombe! by Alexandre</title>
		<link>http://grimboy.co.uk/blawg/vim-is-teh-awesombe/#comment-50</link>
		<author>Alexandre</author>
		<pubDate>Wed, 20 Dec 2006 04:14:38 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/vim-is-teh-awesombe/#comment-50</guid>
					<description>A while ago, I came across the &lt;a href="http://unix.rulez.org/~calver/pictures/curves.jpg" rel="nofollow"&gt;following picture&lt;/a&gt;.

So true, so true. :)</description>
		<content:encoded><![CDATA[<p>A while ago, I came across the <a href="http://unix.rulez.org/~calver/pictures/curves.jpg" rel="nofollow">following picture</a>.</p>
<p>So true, so true. <img src='http://grimboy.co.uk/blawg/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Django on dreamhost problem by Uros Trebec</title>
		<link>http://grimboy.co.uk/blawg/django-on-dreamhost-problem/#comment-48</link>
		<author>Uros Trebec</author>
		<pubDate>Tue, 19 Dec 2006 02:57:24 +0000</pubDate>
		<guid>http://grimboy.co.uk/blawg/django-on-dreamhost-problem/#comment-48</guid>
					<description>THANK YOU!!!! It works for me too!
I was trying to make it work again for a month now and I tried everything (even tried proxy-ing to lighttpd I compiled and made django work with it - needless to say it didn't work). But it never occurred to me that I might try changing method of fastcgi execution :(

Thanks again! Rock on!</description>
		<content:encoded><![CDATA[<p>THANK YOU!!!! It works for me too!<br />
I was trying to make it work again for a month now and I tried everything (even tried proxy-ing to lighttpd I compiled and made django work with it - needless to say it didn&#8217;t work). But it never occurred to me that I might try changing method of fastcgi execution <img src='http://grimboy.co.uk/blawg/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Thanks again! Rock on!</p>
]]></content:encoded>
				</item>
</channel>
</rss>
