I am a software engineer at Bevy, doing primarily back end work in Django. If you want to learn more about me, check out my portfolio.
In my work at Bevy, I recently implemented a streaming endpoint in our Django app using StreamingHttpResponse. For anyone unfamiliar with this class,...
I just finished Codecrafters.io Build Your Own HTTP Server course (my code, for the curious). This was my first time using Codecrafters, and I really...
For a while now, we've had semi-frequent WorkerLostErrors on one of our Celery queues. These can happen for a few reasons, but one of the most common...
If you ever need to access the raw SQL executed during any unit test, the CaptureQueriesContext context manager can help. It's very simple: from...
When using Python in an interactive environment (i.e., the shell), the _ variable stores the result of your most recent operation. This is useful if,...
Background I'm working on a side project for my wife, and the data structure for this project involves models with a recursive foreign key...