User Big 40wt Svetlyak - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:35:33Z http://stackoverflow.com/feeds/user/15776 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/82653/is-there-any-list-of-blog-engines-written-in-django 1 Is there any list of blog engines, written in Django? Big 40wt Svetlyak 2008-09-17T12:37:48Z 2009-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-for 4 What are .git/info/grafts for? Big 40wt Svetlyak 2008-10-02T12:05:16Z 2008-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-python 8 How to parse ISO formatted date in python? Big 40wt Svetlyak 2008-09-24T15:17:00Z 2008-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 -5 Answer by Big 40wt Svetlyak for Reasons not to use django Big 40wt Svetlyak 2008-09-18T09:06:09Z 2008-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#127825 Comment by Big 40wt Svetlyak on How to parse ISO formatted date in python? Big 40wt Svetlyak 2008-09-24T15:49:57Z 2008-09-24T15:49:57Z You 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#82753 Comment by Big 40wt Svetlyak on Is there any list of blog engines, written in Django? Big 40wt Svetlyak 2008-09-17T12:50:13Z 2008-09-17T12:50:13Z Because blog requires comments, pingbacks, openid, atom/rss feeds, publishing api, etc.