An Example Pelican + Git Blog Post Workflow

On my Windows subsystem for Linux environment, I am now publishing new blog posts following this Pelican-based workflow: The new blog post is now live! This is my own workflow for my Pelican blog, divbull.com, which is hosted for free with Cloudflare Pages. You can read more about connecting Pelican and Cloudflare in this past […]

Documentation is the Gateway to Delegation

The first step to offloading a task is writing down how to complete it. Once the process is typed into a lean text file or wiki page, it can be learned by another human. This helps your team, but what’s in it for you? The most selfish programmers probably want to free up their time […]

Fix Spelling and Grammar with language_tool_python and textblob

Below are two practical Python libraries for text processing. This function uses textblob’s spelling correction along with language_tool_python, which applies grammatical corrections via the Language Tool API. I added these text processing transformations into my concept text generation app. These are free, public APIs up to around 20 requests per second. You can send both […]