Nested List Comprehension Syntax

I have a list of objects and would like to transform it into a list of lists of objects. That sounds like the start of tongue twister so it may be easier to demonstrate visually:

Conditional Response Class in FastAPI

I discovered recently that I could create a custom response class for use with FastAPI and that I could use this to create a pretty printed json-like reponse for my API. I didn’t want to force all my responses to...

Bash Shortcuts

CTRL + A – takes you to the beginning of the line CTRL + E – takes you to the end of the line CTRL + K – “yank” everything after the cursor CTRL + U – “yank” everything before...