How to handle Unicode in Python, brilliantly explained. If I ever again wonder what 'decode' and 'encode' exactly mean, I'll come back to this article.
An excellent writeup of how Django components can be used in standalone scripts. You may set DJANGO_SETTINGS_MODULE, use setup_environ() or settings.configure(). Each method is discussed with pros and cons. Even more wisdoms in the comments.
How do I set a foreign key to User to automatically be filled in with request.user? James Bennett explains what is "probably the #1 most-frequently-asked question about the admin". Also: how to ensure that people can only see/edit things they “own” (i.e., that they created) in the admin.