One very useful thing you can do with Claude Code is create rapid prototypes. Recently I was asked to create a small project to translate…
Tag: Python
Claude Code is rapidly turning into a go to resource for AI assisted coding. Here are some Claude Code hints and tips to help with…
A couple of years ago I used Streamlit as an interface for an LLM chatbot. However it seems there is a better alternative which is…
UV is a powerful package manager for Python. UV can supplement or even replace other tools like pip, conda, and venv. However it works a…
GIMP 3.0 has released and has numerous new features making it a better choice for image editing than GIMP 2.10. However one issue is that…
When doing rapid prototyping with Cursor AI, it is useful to keep you environments separate. Venv can help with this. But how do you get…
Last month I produced a proof of concept zero shot categoriser for images using OpenAI’s GPT-4 Vision-Language model (VLM) capabilities. However this had the disadvantage…
Streamlit is a very useful Python package for creating interactive web pages. It has excellent documentation and offers a quick and easy way to prototype…
The usual approach to prediction problems these days is to create a machine learning model. However machine learning models can struggle to train on sparse…
I recently needed to handle some arguments for a command line Python program. I considered using the built in sys.argv approach, but decided that it…