User Big 40wt Svetlyak - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T11:35:33Zhttp://stackoverflow.com/feeds/user/15776http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/82653/is-there-any-list-of-blog-engines-written-in-django1Is there any list of blog engines, written in Django?Big 40wt Svetlyak2008-09-17T12:37:48Z2009-01-13T04:41:40Z
<p>Is there any list of blog engines, written in Django?</p>
http://stackoverflow.com/questions/161928/what-are-git-info-grafts-for4What are .git/info/grafts for?Big 40wt Svetlyak2008-10-02T12:05:16Z2008-10-02T12:11:07Z
<p>I am trying to figure out what is the 'grafts' in the Git.</p>
<p>For example, in one of the latest comments <a href="http://log.emmanuelebassi.net/archives/2007/09/when-the-levee-breaks/" rel="nofollow">here</a>, Tobu suppose to use <b>git-filter-branch</b> and <b>.git/info/grafts</b> to join two repositories.</p>
<p>But I don't undestand why I need these <em>grafts</em>? It seems, that all work without last two commands.</p>
http://stackoverflow.com/questions/127803/how-to-parse-iso-formatted-date-in-python8How to parse ISO formatted date in python?Big 40wt Svetlyak2008-09-24T15:17:00Z2008-09-24T15:54:38Z
<p>I need to parse strings like that "2008-09-03T20:56:35.450686Z" into the python's datetime?</p>
<p>I have found only strptime in the python 2.5 std lib, but it not so convinient.</p>
<p>Which is the best way to do that?</p>
<p><strong>Update:</strong></p>
<p>It seems, that python-dateutil works very well. I have found that solution:</p>
<pre><code>d1 = '2008-09-03T20:56:35.450686Z'
d2 = dateutil.parser.parse(d1)
d3 = d2.astimezone(dateutil.tx.tzutc())
</code></pre>
http://stackoverflow.com/questions/90032/reasons-not-to-use-django/91082#91082-5Answer by Big 40wt Svetlyak for Reasons not to use djangoBig 40wt Svetlyak2008-09-18T09:06:09Z2008-09-18T09:06:09Z<p>There is no any reasons not to use Django. Anyway, it depends from your project.</p>
http://stackoverflow.com/questions/127803/how-to-parse-iso-formatted-date-in-python/127825#127825Comment by Big 40wt Svetlyak on How to parse ISO formatted date in python?Big 40wt Svetlyak2008-09-24T15:49:57Z2008-09-24T15:49:57ZYou can't just strip .Z because it means timezone and can be different. I need to convert date to the UTC timezone.http://stackoverflow.com/questions/82653/is-there-any-list-of-blog-engines-written-in-django/82753#82753Comment by Big 40wt Svetlyak on Is there any list of blog engines, written in Django?Big 40wt Svetlyak2008-09-17T12:50:13Z2008-09-17T12:50:13ZBecause blog requires comments, pingbacks, openid, atom/rss feeds, publishing api, etc.