Recent Posts

Django aggregation, group by day

This week we had a hackathon to develop a better internal dashboard page that shows things like records added to the system over time. Not having generated ...

Django reset database connection

Django handles database connections transparently in almost all cases. It will start a new connection when your request starts up, and commit it at the end ...

nginx + SSL reverse proxy tutorial

If you have an existing HTTP application that you want to enable SSL for, nginx provides a convenient reverse proxy mode. In this mode, nginx is just respon...