Wednesday, October 29, 2008

Django From the Ground Up: Episode 13

with host Eric Florenzano

In this episode we take our server that we started in Episode 1, and we install everything necessary to deploy our site. That includes Apache, nginx, Django, some reusable apps, and PostgreSQL.

  • Running Time: 20:32
Bookmark and Share

Continue reading… Join the Discussion, 10 people have left comments.

Monday, October 13, 2008

Django From the Ground Up: Episode 12

with host Eric Florenzano

In this episode, we first enable development media serving, and then we use jQuery and some of Django's built-in constructs to easily add AJAX-like capabilities to our site.

  • Running Time: 15:31
Bookmark and Share

Continue reading… Join the Discussion, 7 people have left comments.

Monday, October 6, 2008

Django From the Ground Up: Episode 11

with host Eric Florenzano

In this episode we update our events app to take advantage of the social networking features that we have built, using some more advanced QuerySet techniques (including one tip by reader janr). I also discover a bug on the live site, and give a preview of how deployment will work.

  • Running Time: 13:25
Bookmark and Share

Continue reading… Join the Discussion, 12 people have left comments.

Friday, October 3, 2008

Django From the Ground Up: Episode 10

with host Eric Florenzano

In this episode we use Django's generic views to create a list of all the new users, write a performance-oriented inclusion tag, and write some code that lets users follow their friends from that page as well. All of the code that we go over this week is the latest code from GitHub.

  • Running Time: 13:54
Bookmark and Share

Continue reading… Join the Discussion, 8 people have left comments.

Wednesday, October 1, 2008

Django From the Ground Up: Episode 9

with host Eric Florenzano

In this episode, we use the techniques that we have learned in creating our events app to continue building out the social networking aspects of the site. We're able to use the technique of passing in extra parameters to a view via the url configuration to re-use one function to serve three separate slices of data.

  • Running Time: 15:21
Bookmark and Share

Continue reading… Join the Discussion, 3 people have left comments.


Recent Blog Posts view all

  1. Time For a Change

    January 7, 2009 / 21 Comments

    Brian Rosner takes over as host of This Week in Django and joining him will be Eric Florenzano.

  2. This Week in Django Delayed

    January 6, 2009 / 0 Comments

    We're running behind on getting Episode 49 out to everyone.

Incoming Links view all

  1. NEWA Detailed Django Tutorial: Blog Basics Part

    March 30, 2009 / 0 Comments

    Jeff Hui begins what appears to be the first of a lengthy, detailed series in getting your first (blog) Django applicati...

  2. Static Google Map Generator

    March 25, 2009 / 0 Comments

    This isn't a truly pluggable reusable Django app (meaning no Django related code is required, this could be used on any...

Recent Callcast view all

Discussion with Corey Oordt talking OpenSource Washington Times

A conversation with Corey Oordt discussing the new OpenSource Washington Times project and their forthcoming collection of reusable apps, along with greater goals for becoming a platform for Django newspaper/media applications.

Listen now.

Featured Screencasts view all

  1. Django From the Ground Up: Episode 13

    October 29, 2008 / 10 Comments

    Deployment, Part I

  2. Django From the Ground Up: Episode 12

    October 13, 2008 / 7 Comments

    Media and AJAX

Recent Articles view all

  1. Abstract Base Classes vs Model Table Inheritance

    June 17, 2008 / 0 Comments

    With the recent QuerySet-Refactor branch merged into trunk the django developer community is finally gifted with one of the more popular, outstanding ticket requests they've been waiting for... model inheritance.

  2. Retrieving Selective Fields with Django

    December 21, 2007 / 2 Comments

    This article discusses how to retrieve only selective fields instead of everything at once.