Skip to content

Django Andy

My travels through the worlds of Django, Python, DevOps and Full Stack web development.

  • By Andy Ide
  • Based in Australia
  • Roughly nine posts per year
  • First post on

Posts per year

Data for this chart is available in the table below
Posts per year
Year starting Posts
2022 1
2023 24
2024 5

Any gaps could be due to errors when fetching the blog’s feed.

Most recent posts

My current test for each new ChatGPT Model
OpenAI (who owns ChatGPT) released a new model today. It is called o1. The main difference between models like 4o is it inherently performs chain of thought reasoning when producing an answer. What is chain …
On , by djangoandy, 833 words
Cost Reduction by switching to GPT-4o Mini
In mid July 2024, OpenAI released a new model – named GPT-4o Mini. GPT-4o Mini was touted as a cheaper, faster model that was just as good, and probably better than the previous model GPT-3.5 …
On , by djangoandy, 238 words
Enabling WAL in SQLite in Django
Write Ahead Logging (WAL) mode is a mode that enables more concurrent writes in SQLite. I implemented this as I have a local Django app that uses SQLite, and sometimes I would get database locks …
On , by djangoandy, 178 words