Tag: tools
All the articles with the tag "tools".
Jekyll to Astro: an AI-assisted migration
Published: at 10:00 AMI migrated my old Jekyll blog to Astro using AI tools. It cut the time in half, and I learned a lot about what AI is good at (repetitive tasks) and where it still needs human guidance.
Load Testing Guide
Published: at 06:22 PMWe built a new service that handled 20x more traffic than expected. When we load tested it, it died at 20% of expected traffic. My complete guide to load testing, from choosing tools to interpreting results.
Programmer Resources
Published: at 03:50 PMA friend asked me what I've used to improve as a software engineer. When he asked for a list, I realized I didn't have one yet. Here are the blogs, books, and online courses that have helped me grow as a developer.
DevOps from Scratch, Part 1: Vagrant & Ansible
Published: at 12:32 PMEver wondered how to build and deploy a web app from scratch? This is the first part of my 'DevOps from Scratch' series, where we'll get hands-on with Vagrant and Ansible to automate our local development setup for a Python web application.
Using Bandit in the Field
Published: at 03:17 PMAfter talking about Bandit, I wanted to see how it actually performed in the real world. This post shares my experience using Bandit to find vulnerabilities in Python projects and practical tips for integrating it into your workflow.
Finding Vulnerabilities with Bandit
Published: at 03:37 PMPython's dynamic nature makes it hard to catch security vulnerabilities statically. Bandit scans your Python code for common security issues. Learn how to use it to find problems before they reach production.