RSSAmplifier

Blog

mirkenan's blog

mirkenan's blog

kenan7.comRSS feed ↗6 posts

Latest posts

The Ultimate Guide to LLM Observability Tools & Platforms (2025)

Large Language Models (LLMs) have taken the world by storm, powering everything from smart search engines to intelligent business automation. But as their use grows, so does the need to monitor, evaluate, and debug these complex AI systems in real ti...

Understanding Dependency Injection in Go: A Practical Guide

Have you ever had your code become too tightly coupled, making it hard to test and maintain? Some people certainly have. Let me share a story about how dependency injection would help you write better, more maintainable Go code. The Problem: A Coffee...

Understanding Domain-Driven Design (DDD) with Go: A Practical Guide

Domain-Driven Design (DDD) is an approach to software development that focuses on understanding and modeling the business domain. In this post, we'll explore how to implement DDD principles using Go, with practical examples and clear explanations. Wh...

Achieving Symmetrical ManyToMany Filtering in Django Admin

I recently tackled an interesting challenge that I think could benefit others in the community. The problem? Creating a symmetrical ManyToMany filter widget in the Django admin dashboard. You know, the kind where you can filter and select related obj...

Understanding Django Middleware: A Practical Guide

Django middleware is a powerful tool that allows you to process requests and responses globally across your entire Django application. In this post, we'll explore what middleware is, how it works, and walk through some practical examples. What is Dja...

How to set up and use proxy in your server | Docker | Docker-compose | Proxy.py

I wanted to run a proxy in my server, I tried everything but still failed to set it up. I tried mitmproxy, squid, and some other proxies that I forgot, yet I somehow failed in all of them. After researching a little more I finally found a solution t...