Managing localhost states

When developing locally, it’s pretty common to have a bunch of cookies that do not pertain to the application being currently run. This is because all your cookies in your local development tend to share the same namespace localhost:{port} (where {port »

Storing images (or files) on S3 with Django

There comes a time when you need to upload stuff to your server via your Django app. You can upload it to the machine serving up your app (which isn’t a good idea in most cases) or upload it to a server/service which specializes in delivering you content »