These are some optimization I use on a regular basis:
frontend:
Use a js loading library like labjs, requirejs or yepnope. You should still compress/merge your js files, but in most use cases it seems to be better to make several requests to several js files and run them in parallel as to have 1 huge js file to run on each page. I always split them up in groups that make sense to balance requests and parellel loading. Some also allow for conditional loading and failovers (i.e. if for some reason, your cdn'd jquery is not there anymore)
Use sprites where posible.
Backend:
- configure django-compressor (django-static is fine)
- Enable gzip compression in nginx.
- If you are using postgresql (which is the recommended sql database), use something like pgbouncer or pgpool2.
- Use and configure cache (I use redis)
- (already mentioned - use celery for everything that might take longer)
- Small database work: use indexes where it's needed, look out for making too many queries (common when not using select_related where you are supposed to) or slow queries (enable log slow queries in your db). Always use select_related with arguments.
- If implementing search, I always use a standalone search engine. (elasticsearch/solr)
- Now comes profiling the app and looking for code specific improvements. Some things to keep an eye on.