AI tutorial - IT technology blog

Building a Multi-Agent AI System with Microsoft AutoGen v0.4: Orchestrate Specialized Agents for Data Analysis and Code Generation

Learn how to build a multi-agent AI system with Microsoft AutoGen v0.4 by creating a Planner, Data Analyst, and Code Reviewer agent that collaborate to automate data analysis workflows. This step-by-step guide covers installation, agent configuration, team setup, and monitoring — everything a junior developer needs to get started.
DevOps tutorial - IT technology blog

Using mise (mise-en-place) in DevOps: Consistent Tool Version Management for kubectl, Terraform, Node, and Python

Tool version mismatches between local machines and CI/CD pipelines are a constant source of frustration in DevOps teams. mise (mise-en-place) solves this with a single .mise.toml config file that manages kubectl, Terraform, Node.js, Python, and 400+ other tools consistently across every environment. This guide walks through setup, GitHub Actions integration, and production tips.
Programming tutorial - IT technology blog

SQLModel in FastAPI: Building Type-Safe APIs Without the Pydantic + SQLAlchemy Boilerplate

SQLModel unifies SQLAlchemy ORM and Pydantic validation in a single class definition, eliminating the need to maintain synchronized database and API schemas. After six months in production, it has consistently reduced model code by around 40% with no loss in type safety. This guide covers the complete workflow: quick setup, the Base/Table/Read class pattern, relationships, Alembic migrations, async support, and the production gotchas worth knowing before you hit them.