November 21, 2022

Maintainable code is can easily be the difference between long-lived, profitable software, and short-lived money pits.
May 9, 2022

Adding a GraphQL endpoint to your Django application is a simple and powerful way to reduce API maintenance and give more power to your frontend developers.
September 10, 2021

Using Docker to isolate my environment has been a game-changer for the teams I've been a part of and me. It is a massive timesaver by installing Docker and then having new developers run 'docker compose up -d' to get going.
September 5, 2021

There is an issue with Heroku's latest Redis version (v6) with the SSL connection. Heroku uses self-signed certificates that you can't verify. The recommendation is to turn off verification in your client.
September 3, 2021

For a simple blog, having a database backend is too much overhead for little to no gain.
September 2, 2021

I’ve wanted to get back to producing developer-focused content mainly because it helps me clarify ideas for myself. Also, it serves as a check for things that I think are “right”—if wrong, people will correct me, and I’ll learn.
July 22, 2020

There are a lot of way to handling styling your Vue project. Making use of single-file components with scoped style has made life a lot easier.
April 21, 2020

Your JavaScript can become stale between releases of a backend that changes the API. Here is one strategy to avoid client errors.