Python Visualize 3D Meshes Using the Marching Cubes Algorithm My Python script displays 3D meshes of cancerous tumors using the marching cubes algorithm. Here, I'll outline how the algorithm works.
Extracurricular Activities Build a Joke-Telling Chatbot with LangGraph and Streamlit Let's explore how to build an interactive joke-telling chatbot - including a setup and punchline - using LangGraph, LangChain, and Streamlit.
Developer Tools Simplify RAG with Pinecone + LangChain Implementing Retrieval Augmented Generation (RAG) is surprisingly easy using Pinecone's vector database and the LangChain ecosystem.
Python Make Sick Beats with Python I enjoy creating music-related software in my free time. Let's make some sick beats on a drum machine with Python and the pygame library.
Developer Tools A Foray into Mac and Python Automation A recent scripting spike aimed at automating a workflow led me down a deeper rabbit hole: AppleScript/AppleEvents and Python GUI automations.
Development Practices Prevent Frame Buffering with OpenCV Our theory was that OpenCV was buffering every frame sent by the HTTP stream, and we were seeing the frames come through one at a time
Developer Tools Diversify Dev Tooling to Support Collaboration on Custom Software We diversified our developer tooling to enable direct collaboration with our custom software client. Here's how it worked out.
DevOps & System Admin. Docker Compose Dependency Management Isn’t a Silver Bullet The dependency management in Docker Compose, particularly with the depends_on attribute, isn't a silver bullet.
Python Resolving Error in Mongo: “Cannot create field ‘None’ in element” Recently, I worked with a non-relational database for the first time. I kept running into the error: Cannot create field 'None' in element.
Python Use Selenium and Python with the New Chrome Headless Mode This tutorial shows how use the new headless version of Chrome with Selenium and Python. A simple Python script is included.
Python How to Automate STL File Generation with Fusion 360 I'll walk you through an example and provides sample files to demonstrate STL file export automation in Fusion 360.
Python How to Compile Python with a Statically Linked OpenSSL on macOS Statically linking OpenSSL to Python is not officially supported, but there are a couple of ways it can be done.