Screencasts for django/python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T00:26:33Zhttp://stackoverflow.com/feeds/question/39040http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/39040/screencasts-for-django-python6Screencasts for django/python?Eric Holscher2008-09-02T08:43:27Z2009-05-28T09:45:40Z
<p>I am doing a series of Django screencasts, and I am just curious what kind of topics people might want to see covered in relation to django or python.</p>
http://stackoverflow.com/questions/39040/screencasts-for-django-python/39060#390600Answer by Trausti Thor Johannsson for Screencasts for django/python?Trausti Thor Johannsson2008-09-02T09:01:28Z2008-09-02T09:01:28Z<p>Getting started would be great. Not perhaps installing.</p>
<p>I really like the 15 minute blog system that DHH did in his Rails screencast, also cakephp has one, although without doing comments.</p>
<p>So a "Do a 15 minute blog system" would be fantastic, or a simple photo album.</p>
http://stackoverflow.com/questions/39040/screencasts-for-django-python/39076#390761Answer by Bartosz Radaczyński for Screencasts for django/python?Bartosz Radaczyński2008-09-02T09:11:55Z2008-09-02T09:11:55Z<p>Actually the blog tutorial is getting old - all the frameworks have one already. The photo album is great. There is (as usual) <a href="http://rads.stackoverflow.com/amzn/click/0596101325" rel="nofollow">a rails tutorial for this</a>, but sure, django could use one as well. You could go just as the rails original goes:</p>
<ol>
<li>Show some short design (like what entities will be there in the app (photo,slide,slideshow)</li>
<li>Implement the model, show how it behaves in the cosole environment</li>
<li>Show the admin interface</li>
<li>actually implement some stuff (like basic CRUD)</li>
</ol>
<p>perhaps the next cast could base on the work you do in the first part and go on for the AJAXy stuff (like actual slideshow or sorting slides through drag and drop).</p>
http://stackoverflow.com/questions/39040/screencasts-for-django-python/252448#2524480Answer by Youssef for Screencasts for django/python?Youssef2008-10-31T02:27:22Z2008-10-31T02:27:22Z<p>It will be great If you could cover the same topics as the one in peepcode for rails. It will be great if the quality is similar. </p>
http://stackoverflow.com/questions/39040/screencasts-for-django-python/252512#2525122Answer by Rick Harding for Screencasts for django/python?Rick Harding2008-10-31T03:19:49Z2008-10-31T03:19:49Z<p>I'd say go for it all. I mean it's great to have a gallery app, but what about how you'd create an API for that app in Django. What about creating custom template functions for display, incorperate the JS lib for viewing, etc. The key though, is instead of speed of development, showing "best practices". I hate the "we can do this with 5 lines of code...but no sane person would" stuff.</p>
http://stackoverflow.com/questions/39040/screencasts-for-django-python/920040#9200401Answer by Jon Cage for Screencasts for django/python?Jon Cage2009-05-28T09:45:40Z2009-05-28T09:45:40Z<p>Covering the different ways you can set up Django would be good. Mod python, fastcgi etc. - I think that's probably one of the toughest things when you're starting out.</p>
<p>Personally I'm struggling with getting comments and an auth system integrated with the rest of the a site I'm working on. There's not a lot of information on how to use those systems and navigate back to whatever page you were looking at.</p>
<p>Anything on doing AJAXy interactions would be useful too.</p>