#How-To.
5 posts filed under this topic.
How to Install Ollama and Run LLMs Locally
Ollama lets you run large language models on your own machine — no API keys, no cloud, no data leaving your computer. Here's how to install it, download models, and use them.
Docker Compose in Production: What You Need to Know
Running Docker Compose in production is different from dev. Here's what to change — health checks, restart policies, secrets, logging, networking, and resource limits — before you ship.
Python Virtual Environments: venv, uv, and When to Use Each
Virtual environments keep your Python projects isolated — separate dependencies, separate Python versions, no conflicts. Here's how to set them up with venv and uv, and which to use in 2026.
How to Set Up WSL2 for Windows Developers
WSL2 gives you a real Linux environment on Windows — same terminal, same tools, same commands as a Linux server. Here's how to install it, configure it, and make it actually useful.
How to Set Up CI/CD with GitHub Actions (Complete Guide)
Learn how to set up a CI/CD pipeline with GitHub Actions from scratch — running tests, building, deploying to staging and production, and handling secrets safely.