Django: persist some session state across login/logout boundaries
By definition session state is tied to the session. When you log out, you obviously don't want the server remembering who you are. Likewise, session state i...
By definition session state is tied to the session. When you log out, you obviously don't want the server remembering who you are. Likewise, session state i...
Django has a "multiple databases" feature that lets you read/write data from more than just the default database. I'm going to show you how to switch databa...
Trying to get started with Django nose today on an existing project, I kept getting the following error trying to run my empty test suite:
Every week I take a look at a report generated by the excellent pgFouine tool for our production Postgres database. This week, there was a surprising query ...
New Relic is an excellent web application performance reporting tool. After a great experience using it on Heroku, I went to enable it for an existing self-...
Starting in Django 1.3, you can use the built-in staticfiles feature to bundle up css, javascript, images and other static resources for deployment to a CDN...
Dumping Django data to a fixture and loading it back up again are accomplished with the built-in management commands dumpdata and loaddata. However, loading...
Getting a brand new Django application running on Heroku is fairly simple. There is a great tutorial for it on devcenter.heroku.com. I would recommend going...
Here are some quick recipes for getting information from varnish about top offending IP addresses, which pages those IP addresses are accessing, and which I...
If you're writing a Facebook app, you may have to jump through hoops to test it out against your local development machine. Facebook requires that you confi...