<?xml version="1.0" encoding="UTF-8" ?>
  <rss version="2.0">
    <channel>
        <title>Shaik Ahmad Nawaz</title>
        <link>https://shaikahmadnawaz.dev</link>
        <description>Shaik Ahmad Nawaz (shaikahmadnawaz) — Full Stack Engineer sharing insights on web development, DevOps, cloud infrastructure, and AI</description>
        <item>
          <title>ConfigMaps and Secrets in Kubernetes</title>
          <link>https://shaikahmadnawaz.dev/blog/kubernetes-config-secrets</link>
          <description>How configuration and secrets work in Kubernetes - ConfigMaps and Secrets, env vars vs file mounts and the live-update difference, why Secrets are encoded not encrypted, projected volumes and the downward API, and immutability.</description>
          <pubDate>Fri, 03 Jul 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Safe Rollouts in Kubernetes</title>
          <link>https://shaikahmadnawaz.dev/blog/kubernetes-rollouts</link>
          <description>How to ship changes in Kubernetes without downtime - rolling updates with maxSurge/maxUnavailable, the readiness gate, rollbacks, PodDisruptionBudgets that protect availability during drains, and pod priority and preemption.</description>
          <pubDate>Thu, 02 Jul 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How Kubernetes Storage Actually Works</title>
          <link>https://shaikahmadnawaz.dev/blog/kubernetes-storage</link>
          <description>How persistent storage works in Kubernetes - PersistentVolumes and Claims, StorageClasses and dynamic provisioning, CSI drivers, access modes (RWO/ROX/RWX), reclaim policies, zone-aware binding, and the gotchas that cause data loss and stuck pods.</description>
          <pubDate>Wed, 01 Jul 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How Kubernetes Networking Actually Works</title>
          <link>https://shaikahmadnawaz.dev/blog/kubernetes-networking</link>
          <description>How traffic actually moves in a Kubernetes cluster - the flat pod network, why Services exist, the four Service types, endpoints, headless services, CoreDNS service discovery, and how Ingress routes the outside world in.</description>
          <pubDate>Tue, 30 Jun 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Which Kubernetes Workload to Use</title>
          <link>https://shaikahmadnawaz.dev/blog/kubernetes-workload-types</link>
          <description>Every Kubernetes workload controller encodes an assumption about your app - stateless and interchangeable, stable identity, one-per-node, or run-to-completion. A practical guide to Deployment, StatefulSet, DaemonSet, Job, and CronJob, and how to pick the right one.</description>
          <pubDate>Mon, 29 Jun 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Autoscaling in Kubernetes</title>
          <link>https://shaikahmadnawaz.dev/blog/autoscaling-in-kubernetes</link>
          <description>The three things you can autoscale in Kubernetes - pod count (HPA), pod size (VPA), and node count (Cluster Autoscaler) - plus KEDA for event-driven scaling, why CPU is often the wrong signal, and how to stop autoscalers from fighting each other.</description>
          <pubDate>Sun, 28 Jun 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How I Control Where Pods Land</title>
          <link>https://shaikahmadnawaz.dev/blog/controlling-where-pods-land</link>
          <description>How to control pod placement in Kubernetes - nodeSelector, node affinity, taints and tolerations, pod affinity, topology spread, and the node pool design (system, user, GPU, spot) that keeps workloads where they belong.</description>
          <pubDate>Sat, 27 Jun 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Why Kubernetes Kills Your Pods</title>
          <link>https://shaikahmadnawaz.dev/blog/why-pods-get-killed</link>
          <description>Why Kubernetes kills, restarts, and evicts pods - requests vs limits, QoS classes, OOMKill vs eviction, and how misconfigured probes quietly take down healthy apps.</description>
          <pubDate>Fri, 26 Jun 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How Kubernetes Actually Works</title>
          <link>https://shaikahmadnawaz.dev/blog/kubernetes-architecture</link>
          <description>A practical breakdown of how Kubernetes actually works under the hood - the API server, etcd, scheduler, controller manager, kubelet, kube-proxy, and how admission controllers intercept every request before it hits the cluster.</description>
          <pubDate>Sun, 21 Jun 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How Kafka Actually Works</title>
          <link>https://shaikahmadnawaz.dev/blog/kafka</link>
          <description>A practical guide to Kafka - how it works under the hood, why it exists, and the operational patterns I've learned from running event-driven systems.</description>
          <pubDate>Sat, 02 May 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Getting Started with MLflow</title>
          <link>https://shaikahmadnawaz.dev/blog/mlflow</link>
          <description>A practical introduction to MLflow - experiment tracking, model registry, and how it fits into your ML workflow.</description>
          <pubDate>Tue, 28 Apr 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Data Versioning for Machine Learning</title>
          <link>https://shaikahmadnawaz.dev/blog/data-versioning</link>
          <description>Why versioning data matters as much as versioning code, and how tools like DVC make it practical for ML projects.</description>
          <pubDate>Mon, 27 Apr 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How I Design a Secure Kubernetes Cluster</title>
          <link>https://shaikahmadnawaz.dev/blog/secure-kubernetes-design</link>
          <description>A practical guide to designing a secure Kubernetes platform using layered controls across identity, networking, secrets, ingress, and workload hardening - with Azure as the implementation.</description>
          <pubDate>Sun, 19 Apr 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>What I've Learned Running Production on Azure</title>
          <link>https://shaikahmadnawaz.dev/blog/cloud-and-azure</link>
          <description>A practical guide to cloud computing and Azure - covering identity, networking, AKS, databases, cost management, and the real-world scenarios I've encountered in production.</description>
          <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How I Troubleshoot Kubernetes in Production</title>
          <link>https://shaikahmadnawaz.dev/blog/kubernetes-troubleshooting</link>
          <description>A practical Kubernetes troubleshooting workflow with real incident patterns, commands, and recovery techniques I use during production outages.</description>
          <pubDate>Thu, 09 Apr 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Containerize App</title>
          <link>https://shaikahmadnawaz.dev/blog/containerize-app</link>
          <description>A FastAPI application containerized with Docker, using multi-stage builds, security hardening, CI/CD with GitHub Actions, and Trivy image scanning.</description>
          <pubDate>Sat, 04 Apr 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Social Content Extractor</title>
          <link>https://shaikahmadnawaz.dev/blog/social-content-extractor</link>
          <description>A CLI tool that turns public Instagram posts, reels, and YouTube Shorts into reusable text for notes, docs, and LLM workflows.</description>
          <pubDate>Sun, 22 Mar 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Lessons from Ramadan for Developers</title>
          <link>https://shaikahmadnawaz.dev/blog/lessons-from-ramadan-for-developers</link>
          <description>Fasting trains the same muscles needed for deep work - discipline, focus, and delayed gratification. Here's what Ramadan taught me about building software.</description>
          <pubDate>Sat, 21 Mar 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How Networking Actually Works in Production</title>
          <link>https://shaikahmadnawaz.dev/blog/networking-concepts</link>
          <description>A practical guide to DNS, TCP/UDP, TLS, load balancing, and a troubleshooting workflow for diagnosing network issues in production.</description>
          <pubDate>Sun, 08 Mar 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How I Troubleshoot Linux Servers in Production</title>
          <link>https://shaikahmadnawaz.dev/blog/linux-troubleshooting</link>
          <description>A practical incident workflow for diagnosing and fixing production issues on Linux servers - from health checks to root cause analysis.</description>
          <pubDate>Tue, 03 Mar 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How the Internet Actually Works</title>
          <link>https://shaikahmadnawaz.dev/blog/how-internet-works</link>
          <description>A practical breakdown of what happens when you type a URL - from physical cables and IP addresses to DNS, TCP, HTTP, and why understanding the full request lifecycle matters for debugging production.</description>
          <pubDate>Sat, 28 Feb 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Yaad</title>
          <link>https://shaikahmadnawaz.dev/blog/yaad</link>
          <description>Voice first medicine reminders for India. Just speak in your language - Hindi, Telugu, Tamil, or any Indian language - and never miss a dose again.</description>
          <pubDate>Thu, 12 Feb 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Transformer</title>
          <link>https://shaikahmadnawaz.dev/blog/transformer</link>
          <description>Understanding the Transformer architecture - the foundation of modern LLMs like ChatGPT and GPT-4.</description>
          <pubDate>Fri, 30 Jan 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Linear Combinations, Span, and Basis Vectors</title>
          <link>https://shaikahmadnawaz.dev/blog/linear-combinations-span-basis</link>
          <description>Understanding how vectors combine, what they can reach, and the special vectors that define coordinate systems.</description>
          <pubDate>Sun, 25 Jan 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Linear Transformations and Matrices</title>
          <link>https://shaikahmadnawaz.dev/blog/linear-transformations-matrices</link>
          <description>How matrices describe transformations of space, from rotations to shears, explained visually.</description>
          <pubDate>Sun, 25 Jan 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Vectors</title>
          <link>https://shaikahmadnawaz.dev/blog/vectors</link>
          <description>Understanding vectors - the building blocks of linear algebra. Arrows, coordinates, and operations explained simply.</description>
          <pubDate>Sat, 24 Jan 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>The Machine Learning Lifecycle</title>
          <link>https://shaikahmadnawaz.dev/blog/ml-lifecycle</link>
          <description>A complete walkthrough of every stage in the ML lifecycle - from defining the problem to monitoring in production - and what actually happens at each step.</description>
          <pubDate>Fri, 09 Jan 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>What is MLOps and Why It Matters</title>
          <link>https://shaikahmadnawaz.dev/blog/what-is-mlops</link>
          <description>MLOps is DevOps for machine learning - the practices that take a model from a notebook to production and keep it running reliably.</description>
          <pubDate>Thu, 08 Jan 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>How to Build an ML Model</title>
          <link>https://shaikahmadnawaz.dev/blog/how-to-build-ml-model</link>
          <description>A step-by-step guide to building your first machine learning model, from raw data to making predictions.</description>
          <pubDate>Wed, 07 Jan 2026 00:00:00 GMT</pubDate>
        </item>
<item>
          <title>Understanding Machine Learning and Models</title>
          <link>https://shaikahmadnawaz.dev/blog/what-is-ml-and-models</link>
          <description>A beginner-friendly guide to what Machine Learning is and what we mean by a 'model'.</description>
          <pubDate>Tue, 06 Jan 2026 00:00:00 GMT</pubDate>
        </item>
    </channel>
  </rss>