Skip to main content

Blog

Deploying Ollama with Open WebUI Locally: A Step-by-Step Guide Pinned

Deep Dive · Jan 11, 2025 · 9 min read
Introduction # Large Language Models (LLMs) have become a cornerstone of modern AI applications, from chatbots that provide customer support to content generation tools for images and videos. They power virtual assistants, automated translation systems, and personalized recommendation engines, showcasing their versatility across industries. However, running these models on a local machine has traditionally been a complex and resource-intensive task, requiring significant configuration and technical expertise. This complexity often deters beginners and even intermediate users who are eager to explore the capabilities of LLMs in a private, local environment.
Deploying Ollama with Open WebUI Locally: A Step-by-Step Guide

Adding .NET Aspire to an Existing Clean Architecture Project

Deep Dive · Dec 20, 2025 · 10 min read
The infrastructure overhead in microservices projects is real. Setting up databases, wiring service discovery, getting distributed tracing working, managing connection strings across environments—this work hits before you’ve written a line of business logic. On more than one project, I’ve watched the first sprint disappear into Docker Compose files and appsettings drift.
Adding .NET Aspire to an Existing Clean Architecture Project

Building Production-Ready Microservices with .NET Aspire: A Complete E-Commerce Demo

Deep Dive · Dec 6, 2025 · 24 min read
If you’ve ever built a microservices architecture, you know the pain points all too well: spending hours setting up PostgreSQL locally, wrestling with Redis configurations, debugging why RabbitMQ won’t connect, managing connection strings across multiple services, and let’s not even talk about implementing distributed tracing manually.
Building Production-Ready Microservices with .NET Aspire: A Complete E-Commerce Demo

Build Custom MCP Catalogs with Docker: Enterprise Control for AI Tooling

Quick Takes · Oct 24, 2025 · 5 min read
Docker has introduced comprehensive MCP (Model Context Protocol) tooling that enables organizations to build custom catalogs with complete control over AI tool access. With over 220+ containerized MCP servers available and the ability to create private catalogs, enterprises can now deploy AI tooling with appropriate security guardrails.
Build Custom MCP Catalogs with Docker: Enterprise Control for AI Tooling

.NET Architecture at Scale: Visual Guide to Modern Design Patterns

Deep Dive · Jul 5, 2025 · 46 min read
.NET Architecture at Scale: Visual Guide to Modern Design Patterns # ⚡ Performance Note: This article contains 16 comprehensive patterns with visual diagrams. For faster loading, consider bookmarking specific sections or using the “Find in Page” (Ctrl+F) feature to jump to relevant patterns.
.NET Architecture at Scale: Visual Guide to Modern Design Patterns

Streamlining AI Development with LiteLLM Proxy: A Comprehensive Guide

Deep Dive · May 25, 2025 · 9 min read
In the rapidly evolving landscape of artificial intelligence, development teams face significant challenges when integrating multiple AI models into their workflows. The proliferation of different providers, APIs, and pricing models creates complexity that can slow down innovation and increase technical debt. This article explores a powerful solution: a Docker-based setup combining LiteLLM proxy with Open WebUI that streamlines AI development and provides substantial benefits for teams of all sizes.
Streamlining AI Development with LiteLLM Proxy: A Comprehensive Guide

Elevating Code Quality with Custom GitHub Copilot Instructions

Deep Dive · May 24, 2025 · 15 min read
In today’s fast-paced development landscape, AI coding assistants have become indispensable tools for developers seeking to maintain high-quality code while meeting demanding deadlines. GitHub Copilot stands at the forefront of this revolution, offering intelligent code suggestions that can significantly accelerate development. However, the true power of Copilot lies not just in its base capabilities, but in how effectively it can be customized to align with your specific project standards and best practices.
Elevating Code Quality with Custom GitHub Copilot Instructions

Building a Comprehensive RAG System: A Deep Dive Into Knowledge Architecture

Deep Dive · Apr 24, 2025 · 16 min read
TL;DR: This guide walks you through building a production-ready RAG system using FastAPI, ChromaDB, MinIO, and OpenAI. Learn document chunking, vector embeddings, hybrid search, and real-world deployment strategies. Introduction # As a .NET developer watching the AI landscape evolve, I found myself both excited and skeptical. When tools like Claude.ai and ChatGPT started offering out-of-the-box RAG solutions, I wanted to build my own system with full control over the implementation.
Building a Comprehensive RAG System: A Deep Dive Into Knowledge Architecture

Stretch Tracker: Advanced Technical Architecture and Implementation

Deep Dive · Apr 20, 2025 · 6 min read
Stretch Tracker : Advanced Technical Architecture and Implementation # The Birth of the Stretch Tracker: A Developer’s Story # As developers, we often find ourselves deeply immersed in our work, sitting for hours on end in front of our screens without even realizing how much time has passed. I was no different. During a particularly intensive project, I noticed the toll these long coding sessions were taking on my physical health - back pain, stiff neck, and decreased productivity became unwelcome companions in my daily routine.
Stretch Tracker: Advanced Technical Architecture and Implementation

Simplify Your Workflow: How to Build Custom Commands with the .NET CLI

Deep Dive · Jan 14, 2025 · 11 min read
In today’s fast-moving world of software development, being able to automate tasks and make your workflows smoother is super important. Many .NET developers already know how to make web apps, services, and libraries. But not everyone realizes that you can also use the .NET CLI (Command-Line Interface) to create custom tools that save time, simplify your work, and make repetitive tasks a breeze. These tools can help streamline your daily activities and provide powerful functionality for your team.
Simplify Your Workflow: How to Build Custom Commands with the .NET CLI

Simplify Git Workflows Across Multiple Repositories with Git Submodules and Meta-Repositories

Deep Dive · Jan 10, 2025 · 6 min read
Introduction # In modern software development, projects often consist of multiple repositories working together seamlessly. For instance, microservices architectures rely on modularity, where each service has its own repository. While this independence is beneficial, managing numerous repositories as a single cohesive unit can be daunting. Enter the meta-repository: a powerful tool that simplifies the management of multiple interdependent Git repositories, enabling streamlined workflows without sacrificing modularity.
Simplify Git Workflows Across Multiple Repositories with Git Submodules and Meta-Repositories