Run Individual Cron Routines within Django
When you're looking to run a single cron routine within Django, hit the terminal and run this:
# Running the "build_sitemaps" routine
./manage.py cron build_sitemaps
To see a list of available cron routines, run:
./manage.py cron
Running individual cron routines is probably an obvious flow for Django experts but hopefully this is easier to find than searching through loads of documentation!
![5 Ways that CSS and JavaScript Interact That You May Not Know About]()
CSS and JavaScript:  the lines seemingly get blurred by each browser release.  They have always done a very different job but in the end they are both front-end technologies so they need do need to work closely.  We have our .js files and our .css, but...
![How to Create a Twitter Card]()
One of my favorite social APIs was the Open Graph API adopted by Facebook.  Adding just a few META tags to each page allowed links to my article to be styled and presented the way I wanted them to, giving me a bit of control...
![Detect Pseudo-Element Animation Support]()
![Create Twitter-Style Dropdowns Using MooTools]()
Twitter does some great stuff with JavaScript.  What I really appreciate about what they do is that there aren't any epic JS functionalities -- they're all simple touches.  One of those simple touches is the "Login" dropdown on their homepage.  I've taken...
Hmmm, I’m fairly new to Django but I don’t see any management commands related to cron in Django 1.4 that I’m using.
Were you maybe using some Django app such as Django Cronjobs (https://github.com/jsocol/django-cronjobs), for example, to get that management command?
Keep up the good work with the posts!