<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for ivixlog</title>
	<link>http://www.ivixor.net</link>
	<description></description>
	<pubDate>Fri, 04 Jul 2008 13:20:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>Comment on A month of Django by dan</title>
		<link>http://www.ivixor.net/2008/04/10/a-month-of-django/#comment-38</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Thu, 10 Apr 2008 23:08:10 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/04/10/a-month-of-django/#comment-38</guid>
		<description>Matt - I didn't &lt;strong&gt;have&lt;/strong&gt; to import the model into an external script. but I thought I might as well try and use the ORM niceness. This is a script that is (currently)  run manually to parse log files. 

Re the ORM needing work - probably, I have no idea since I've only played with it.</description>
		<content:encoded><![CDATA[<p>Matt - I didn&#8217;t <strong>have</strong> to import the model into an external script. but I thought I might as well try and use the ORM niceness. This is a script that is (currently)  run manually to parse log files. </p>
<p>Re the ORM needing work - probably, I have no idea since I&#8217;ve only played with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A month of Django by Matthew Russell</title>
		<link>http://www.ivixor.net/2008/04/10/a-month-of-django/#comment-37</link>
		<dc:creator>Matthew Russell</dc:creator>
		<pubDate>Thu, 10 Apr 2008 23:00:49 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/04/10/a-month-of-django/#comment-37</guid>
		<description>Nice article.
I'm still not a fan of the templating, but for some uses it's cool.  I'm interested why, you had to import the db from an external script as you mention in 'Flexibility'?
As for the python community uniteing behind django, as you say, I think this is already happening.  
I do think that the ORM needs a bit more work  - since you have to adjust your db schema to accomodate for lazy loading concerns.  There is some work going on to intergrate sqlalchemy into django (as an optional ORM), which would be sweet.</description>
		<content:encoded><![CDATA[<p>Nice article.<br />
I&#8217;m still not a fan of the templating, but for some uses it&#8217;s cool.  I&#8217;m interested why, you had to import the db from an external script as you mention in &#8216;Flexibility&#8217;?<br />
As for the python community uniteing behind django, as you say, I think this is already happening. <br />
I do think that the ORM needs a bit more work  - since you have to adjust your db schema to accomodate for lazy loading concerns.  There is some work going on to intergrate sqlalchemy into django (as an optional ORM), which would be sweet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP/Wordpress is daft by ivixlog &#187; Blog Archive &#187; AberQuotes</title>
		<link>http://www.ivixor.net/2008/02/26/phpwordpress-is-daft/#comment-36</link>
		<dc:creator>ivixlog &#187; Blog Archive &#187; AberQuotes</dc:creator>
		<pubDate>Thu, 10 Apr 2008 22:02:19 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/26/phpwordpress-is-daft/#comment-36</guid>
		<description>[...] Pretty silly and will be forgotten about within weeks (if not already), but it at least made me use the majority of the components of Django to some extent. Having said that about blogs, I should probably get around to turning this site into a Django site, if only because wordpress is rubbish. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Pretty silly and will be forgotten about within weeks (if not already), but it at least made me use the majority of the components of Django to some extent. Having said that about blogs, I should probably get around to turning this site into a Django site, if only because wordpress is rubbish. [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django by Matthew Russell</title>
		<link>http://www.ivixor.net/2008/02/25/django/#comment-21</link>
		<dc:creator>Matthew Russell</dc:creator>
		<pubDate>Wed, 27 Feb 2008 02:13:36 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/25/django/#comment-21</guid>
		<description>Having developed with Zope2+3, Pylons, Cheetah, web.py, Turbogears and django, I'd say they all have their merits for different use cases.  Django is so popular right now because it sits in the middle or most use cases.   
If you have a multi database setup, then django doesn't support it within the same app (that is you need two different projects with two settings.py).
In those cases, Pylons or Zope is a better fit.

I personally can't stand the underscore counting django database idiom, and much prefer SQLAlchemy's approach.   
It's not that it uses underscores per say, more that it's not intuitive (to me at least) .  
It does (however much I don't like it) however give users (as in us programmers) a consistant way to use the api, and this is what draws people to django.
SQLAlchemy has too many ways to do the same thing, and you've pretty much got to understand big chunks of the api before you can use it properly.
That being said,  that might not be a bad thing.</description>
		<content:encoded><![CDATA[<p>Having developed with Zope2+3, Pylons, Cheetah, web.py, Turbogears and django, I&#8217;d say they all have their merits for different use cases.  Django is so popular right now because it sits in the middle or most use cases.  <br />
If you have a multi database setup, then django doesn&#8217;t support it within the same app (that is you need two different projects with two settings.py).<br />
In those cases, Pylons or Zope is a better fit.</p>
<p>I personally can&#8217;t stand the underscore counting django database idiom, and much prefer SQLAlchemy&#8217;s approach.  <br />
It&#8217;s not that it uses underscores per say, more that it&#8217;s not intuitive (to me at least) . <br />
It does (however much I don&#8217;t like it) however give users (as in us programmers) a consistant way to use the api, and this is what draws people to django.<br />
SQLAlchemy has too many ways to do the same thing, and you&#8217;ve pretty much got to understand big chunks of the api before you can use it properly.<br />
That being said,  that might not be a bad thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django by Eric Elinow</title>
		<link>http://www.ivixor.net/2008/02/25/django/#comment-20</link>
		<dc:creator>Eric Elinow</dc:creator>
		<pubDate>Tue, 26 Feb 2008 19:35:14 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/25/django/#comment-20</guid>
		<description>I just started working with django a few months ago and from scratch built http://www.inkedmagonline.com for Inked Magazine.  Things were a little messy at first for some of the conventions, but I've quickly learned better (more django-ish) manners of executing what i wanted to do.

I think Cheetah is a nicer template engine, but I've found there is still enough flexibility in Django's template system to get what I need done, done.

Eric</description>
		<content:encoded><![CDATA[<p>I just started working with django a few months ago and from scratch built <a href="http://www.inkedmagonline.com" rel="nofollow">http://www.inkedmagonline.com</a> for Inked Magazine.  Things were a little messy at first for some of the conventions, but I&#8217;ve quickly learned better (more django-ish) manners of executing what i wanted to do.</p>
<p>I think Cheetah is a nicer template engine, but I&#8217;ve found there is still enough flexibility in Django&#8217;s template system to get what I need done, done.</p>
<p>Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django by dan</title>
		<link>http://www.ivixor.net/2008/02/25/django/#comment-19</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Tue, 26 Feb 2008 19:12:01 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/25/django/#comment-19</guid>
		<description>RE templates, yeah it's pretty obvious that anything that spits out HTML can be used in place of the django template system. It works well enough, but doesn't look nice on first glance, that's all.

RE comment responses, Sounds good, I've added something which says it does that.</description>
		<content:encoded><![CDATA[<p>RE templates, yeah it&#8217;s pretty obvious that anything that spits out HTML can be used in place of the django template system. It works well enough, but doesn&#8217;t look nice on first glance, that&#8217;s all.</p>
<p>RE comment responses, Sounds good, I&#8217;ve added something which says it does that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django by Jonathan</title>
		<link>http://www.ivixor.net/2008/02/25/django/#comment-18</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Tue, 26 Feb 2008 17:20:49 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/25/django/#comment-18</guid>
		<description>On Reddit:

It's Pylons.  The FAQ entry is out of date.

http://reddit.com/info/69j0t/comments/c038rlx

(spez is the technical cofounder and lead developer of Reddit).</description>
		<content:encoded><![CDATA[<p>On Reddit:</p>
<p>It&#8217;s Pylons.  The FAQ entry is out of date.</p>
<p><a href="http://reddit.com/info/69j0t/comments/c038rlx" rel="nofollow">http://reddit.com/info/69j0t/comments/c038rlx</a></p>
<p>(spez is the technical cofounder and lead developer of Reddit).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django by Beetle B.</title>
		<link>http://www.ivixor.net/2008/02/25/django/#comment-17</link>
		<dc:creator>Beetle B.</dc:creator>
		<pubDate>Tue, 26 Feb 2008 17:00:40 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/25/django/#comment-17</guid>
		<description>Regarding the template language, it pays to read the FAQ:

"I can’t stand your template language. Do I have to use it?

We happen to think our template engine is the best thing since chunky bacon, but we recognize that choosing a template language runs close to religion. There’s nothing about Django that requires using the template language, so if you’re attached to ZPT, Cheetah, or whatever, feel free to use those."

On an unrelated note, as you're using Wordpress, it would be *really* nice if you could get the plugin that allows people who leave comments to be notified of responses via email so that people like myself can carry on a conversation.</description>
		<content:encoded><![CDATA[<p>Regarding the template language, it pays to read the FAQ:</p>
<p>&#8220;I can’t stand your template language. Do I have to use it?</p>
<p>We happen to think our template engine is the best thing since chunky bacon, but we recognize that choosing a template language runs close to religion. There’s nothing about Django that requires using the template language, so if you’re attached to ZPT, Cheetah, or whatever, feel free to use those.&#8221;</p>
<p>On an unrelated note, as you&#8217;re using Wordpress, it would be *really* nice if you could get the plugin that allows people who leave comments to be notified of responses via email so that people like myself can carry on a conversation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django by ryan</title>
		<link>http://www.ivixor.net/2008/02/25/django/#comment-16</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Tue, 26 Feb 2008 16:49:39 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/25/django/#comment-16</guid>
		<description>For those curious/not in the know:

http://reddit.com/help/faq

(near the bottom)</description>
		<content:encoded><![CDATA[<p>For those curious/not in the know:</p>
<p><a href="http://reddit.com/help/faq" rel="nofollow">http://reddit.com/help/faq</a></p>
<p>(near the bottom)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django by ryan</title>
		<link>http://www.ivixor.net/2008/02/25/django/#comment-15</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Tue, 26 Feb 2008 16:47:54 +0000</pubDate>
		<guid>http://www.ivixor.net/2008/02/25/django/#comment-15</guid>
		<description>I believe reddit uses web.py.

@Adam: 

Re: Templating... Perhaps you are the one who hasn't used many templating languages... The Django default templates are quite simply entirely useless. Name _any_ other templating system and you've got yourself a better alternative. I'm not even going to name any since literally all of them are better than the default Django stuff.

Re: "proving you're an idiot"... Why not, instead of just trolling, give some examples of what you would use it for... I found it a pain to setup for anything but trivial models. Painful to customize and would never consider pointing a client to it to do updates to their site/content. It's marginally better than invoking an interpreter and manually creating and editing your records.</description>
		<content:encoded><![CDATA[<p>I believe reddit uses web.py.</p>
<p>@Adam: </p>
<p>Re: Templating&#8230; Perhaps you are the one who hasn&#8217;t used many templating languages&#8230; The Django default templates are quite simply entirely useless. Name _any_ other templating system and you&#8217;ve got yourself a better alternative. I&#8217;m not even going to name any since literally all of them are better than the default Django stuff.</p>
<p>Re: &#8220;proving you&#8217;re an idiot&#8221;&#8230; Why not, instead of just trolling, give some examples of what you would use it for&#8230; I found it a pain to setup for anything but trivial models. Painful to customize and would never consider pointing a client to it to do updates to their site/content. It&#8217;s marginally better than invoking an interpreter and manually creating and editing your records.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
