Webhooks are useful for bridging multiple applications together, and I often wish more apps supported them.
One use case that could be a fun place to support webhooks are multiplayer game servers.
Read More →
While a lot of my usage is quite simple, tmux is a quite useful tool in my toolbox.
I use it on both remote linux machines and locally on my MacOS install.
Read More →
A challenge of computer work is that the same device used for work, is also a portal to endless distractions.
One of my first projects for this year, was to see if I could update some of my “nag” scripts to help me return to focus quicker.
Read More →
I have been using htmx
and django
for several personal project dashboards.
Instead of doing a full page load, I wanted a way to refresh individual ‘widgets’ and I think I came up with a simple way to handle it.
Read More →
Migrating from Celery
to Django’s Task Framework
is relaltively straight forward.
There are only a few configuration changes needed, and a few simple substitutions.
For more complicated tasks, consulting the tasks framework documentation is recommended.
Read More →
Taking stock of my current development environment.
This could be useful in the future as a comparison point if parts of my development environment change.
Read More →
Most Django models
are managed, and Django will take care of the entire lifecycle.
There are times when working with an external database that it can be useful to use unmanaged
models.
Combined with Django’s inspectdb
command, we can use it to interface with external systems.
Read More →
I have now been in Japan for 11 years.
I still sometimes laugh at how I thought it was a good idea to move between Christmas and New Years, but it ultimately worked out in the end.
Partially due to this, my 来日 (arrival in Japan) anniversary is also a good year-review time.
Though I have not accomplished nearly as much as I had naively hoped for, I still think overall it was a good year.
Hopefully I will be able to show more progress in 2026.
Read More →
Python has a webbrowser
module that allows scripts to open a webbrowser.
In the past, I have often used this for scripts that create some kind of new web resource, so that it will automatically open the page after creation.
While working on one of my headless servers, I became curious about how it works and how I might be able to tap into it.
Read More →
With Django 6.0
a new tasks framework
was added.
Instead of being a full framework like celery
, it provides the core interface for other tools to build off of.
I created django-inspect-tasks
to help me test.
Read More →