Jason Dilworth

Avoiding missed auto_now fields in Django when using update_or_create

An oft-used pattern in the Django world is to add something like the following to some models: class SomeModel(models.Model): created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) These are great properties to add to models, because they help to answer a

HOW-TO: Add Live Chat To Your Site Within 10 Minutes

Live chat on a retail site can increase sales and customer satisfaction, while also giving an edge on your competition. Allowing customers to engage with your customer service team will also give a boost to your conversion rates. In many cases, you will also increase customer service efficiency. How? By

Jason Dilworth © 2026