That's right, the women are smarter
Girls Close the "Math Gap" [Alternet] Gender Similarities Characterize Math Performance [Science Magazine] Girls Bridge Gender Divide in Math [ABC News]
Read More
Read More
Oh Django, how do I love thee? Let me count the joins ...
Let's say I have three simple models - news articles, their categories, and the table that defines which articles are in which categories:
Read More
class Article(models.Model): title = models.CharField(max_length=40, unique=True) body = models.TextField() class Category(models.Model): name = models.CharField(max_length=40, unique=True) class ArticleCategory(models.Model): article = models.ForeignKey(Article) category = models.ForeignKey(Category)
To get ...Read More
Newforms-admin
I wish I could say I were more excited about yesterday's merge of the newforms-admin branch into the Django trunk. Of course, I think it's great - all those inner Admin classes in my models never really made sense as a way to hook models into the admin site. But ...
Read More
Read More
Dynamic choices on a ForeignKey field
One proviso before I get started - this example works with the old (as of a few days ago) version of admin, prior to the newforms-admin merge, where the models still use inner admin classes. I haven't started changing my current project to work with the merge, but as I ...
Read More
Waiting for Djangocon tickets
Ugh - still no word on DjangoCon tickets, although the site is up and most of the schedule has been announced. Meanwhile, if you'd like to contribute to the Django Software Foundation, they've put up a donations page. Over the weekend, I came across this article - ...
Read More
Read More


