Header image for The Quick Tutorial on Python Lambda Functions That You Never Asked For

The Quick Tutorial on Python Lambda Functions That You Never Asked For

Let's be real, nobody wakes up in the morning thinking, "You know what I need more of in my life? Python lambda functions." But here we are. Buckle up, because this is the lambda tutorial you didn't ask for—but secretly need.

Header image for Using the BytesIO Class in Python

Using the BytesIO Class in Python

The io.BytesIO class in Python is an in-memory stream for binary data. It provides a file-like interface that lets you read and write bytes just like you would with a file, but all the data is kept in memory rather than on disk. This can be extremely useful when …

Header image for Linking to Posts in Python Pelican

Linking to Posts in Python Pelican

Pelican provides a syntax for linking to another post by its filename.

Header image for __main__.py file in a project

__main__.py file in a project

This is, to a Python project / module, what if __name__ == '__main__ is to an individual Python file.

Header image for A nice workflow for creating Python projects with AI

A nice workflow for creating Python projects with AI

First, create a new project using poetry

Header image for Debugging Python programs that require CLI arguments in VSCode

Debugging Python programs that require CLI arguments in VSCode

Command Palette (CTRL+SHIFT+P): Debug: Add Configuration

Header image for Debugging Python Tests in VSCode

Debugging Python Tests in VSCode

VSCode offers native test capabilities that are quite useful. Testing Python in Visual Studio Code

Header image for Suppressing Rich Tracebacks in Typer Apps

Suppressing Rich Tracebacks in Typer Apps

This must be applied to the configuration of the Typer object created for the CLI.

Header image for Uninstalling Poetry Completions for zsh

Uninstalling Poetry Completions for zsh

Here’s how to enable: https://python-poetry.org/docs/#enable-tab-completion-for-bash-fish-or-zsh

Header image for Launching a Web App from Stream Deck

Launching a Web App from Stream Deck

This is actually much more of a hassle than I’d have expected …