<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Tekivex Tutorials</title>
    <link>https://tekivex.com/tutorials</link>
    <description>In-depth tutorials on system design, software architecture, frontend &amp; backend patterns, and AI/ML — published by Tekivex.</description>
    <language>en-us</language>
    <lastBuildDate>Thu, 28 May 2026 00:00:00 GMT</lastBuildDate>
    <atom:link href="https://tekivex.com/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Introduction to System Design</title>
      <link>https://tekivex.com/tutorials/system-design/intro-to-system-design</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/intro-to-system-design</guid>
      <description>What is system design, why it matters for engineers, and a high-level overview of the design process from requirements to deployment.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Scalability: Horizontal vs Vertical</title>
      <link>https://tekivex.com/tutorials/system-design/scalability</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/scalability</guid>
      <description>Learn the difference between horizontal and vertical scaling, when to use each, and how to implement basic horizontal scaling with Node.js clustering.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>CAP Theorem</title>
      <link>https://tekivex.com/tutorials/system-design/cap-theorem</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/cap-theorem</guid>
      <description>Understand the CAP theorem — Consistency, Availability, and Partition Tolerance — and learn which distributed databases prioritize which guarantees.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Latency &amp; Throughput</title>
      <link>https://tekivex.com/tutorials/system-design/latency-throughput</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/latency-throughput</guid>
      <description>Understand the difference between latency and throughput, learn common latency numbers every engineer should know, and how to optimize both.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Load Balancing</title>
      <link>https://tekivex.com/tutorials/system-design/load-balancing</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/load-balancing</guid>
      <description>Learn load balancing algorithms (round-robin, least connections, consistent hashing), Layer 4 vs Layer 7, and see a practical nginx configuration example.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Caching Strategies</title>
      <link>https://tekivex.com/tutorials/system-design/caching-strategies</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/caching-strategies</guid>
      <description>Master cache-aside, write-through, write-behind, and read-through caching patterns with practical Redis examples and trade-off analysis.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>CDN &amp; Edge Computing</title>
      <link>https://tekivex.com/tutorials/system-design/cdn-edge</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/cdn-edge</guid>
      <description>How Content Delivery Networks work, the concept of Points of Presence, cache hit ratios, and the difference between CDN-served and origin-served requests.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Rate Limiting</title>
      <link>https://tekivex.com/tutorials/system-design/rate-limiting</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/rate-limiting</guid>
      <description>Protect your API with rate limiting using token bucket, leaky bucket, and sliding window algorithms, with a practical Express middleware implementation.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Database Design: SQL vs NoSQL</title>
      <link>https://tekivex.com/tutorials/system-design/database-design</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/database-design</guid>
      <description>Compare SQL and NoSQL databases, understand normalization, indexing strategies, and see practical schema design examples for both PostgreSQL and MongoDB.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Sharding &amp; Replication</title>
      <link>https://tekivex.com/tutorials/system-design/sharding-replication</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/sharding-replication</guid>
      <description>Understand database sharding strategies (horizontal, vertical, directory-based) and replication topologies (master-replica, multi-master) for scaling data systems.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Message Queues</title>
      <link>https://tekivex.com/tutorials/system-design/message-queues</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/message-queues</guid>
      <description>Understand message queue patterns (point-to-point, pub/sub), when to use them, and implement a simple queue with practical code examples.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Microservices vs Monolith</title>
      <link>https://tekivex.com/tutorials/system-design/microservices-vs-monolith</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/microservices-vs-monolith</guid>
      <description>Compare monolithic and microservice architectures, understand when to use each, and learn about communication patterns between services.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>API Design: REST, GraphQL &amp; gRPC</title>
      <link>https://tekivex.com/tutorials/system-design/api-design</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/api-design</guid>
      <description>Compare REST, GraphQL, and gRPC API styles, learn RESTful design best practices, versioning strategies, and see practical code examples for each.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Case Study: Design a URL Shortener</title>
      <link>https://tekivex.com/tutorials/system-design/design-url-shortener</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/design-url-shortener</guid>
      <description>A complete system design walkthrough for building a URL shortener like bit.ly, covering requirements, estimation, architecture, database schema, and scaling.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Understanding IP Addresses</title>
      <link>https://tekivex.com/tutorials/system-design/understanding-ip-addresses</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/understanding-ip-addresses</guid>
      <description>IPv4 vs IPv6, public vs private addresses, subnetting basics, and how IP addresses are used in distributed system design.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>How DNS Works</title>
      <link>https://tekivex.com/tutorials/system-design/how-dns-works</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/how-dns-works</guid>
      <description>DNS resolution from browser to root servers, record types, TTL, caching, and using DNS for traffic routing and failover.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Client-Server Model Explained</title>
      <link>https://tekivex.com/tutorials/system-design/client-server-model</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/client-server-model</guid>
      <description>How clients and servers communicate, the request-response cycle, stateless vs stateful servers, and practical implications for distributed system design.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>What Is an API Gateway?</title>
      <link>https://tekivex.com/tutorials/system-design/api-gateway</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/api-gateway</guid>
      <description>API gateways as a single entry point for microservices: routing, auth, rate limiting, protocol translation, and observability — with design trade-offs.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>TCP &amp; UDP</title>
      <link>https://tekivex.com/tutorials/system-design/tcp-and-udp</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/tcp-and-udp</guid>
      <description>How TCP and UDP differ, when to choose each transport protocol, and the implications for reliability, ordering, and latency in distributed systems.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Introduction to Security in System Design</title>
      <link>https://tekivex.com/tutorials/system-design/introduction-to-security-in-system-design</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/system-design/introduction-to-security-in-system-design</guid>
      <description>Threat modelling, the OWASP Top 10, defence-in-depth, and the security principles every system designer must bake in from day one.</description>
      <category>System Design</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Domain-Driven Design Fundamentals</title>
      <link>https://tekivex.com/tutorials/software-architecture/ddd-fundamentals</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/software-architecture/ddd-fundamentals</guid>
      <description>Master the building blocks of DDD: Entities, Value Objects, Aggregates, Repositories, and Bounded Contexts.</description>
      <category>Software Architecture</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Command Query Responsibility Segregation (CQRS)</title>
      <link>https://tekivex.com/tutorials/software-architecture/cqrs</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/software-architecture/cqrs</guid>
      <description>Separate read and write models for scalability and flexibility. Learn when CQRS adds value and when it adds unnecessary complexity.</description>
      <category>Software Architecture</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Creational Design Patterns</title>
      <link>https://tekivex.com/tutorials/software-architecture/creational-patterns</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/software-architecture/creational-patterns</guid>
      <description>Master the five GoF creational patterns: Factory Method, Abstract Factory, Builder, Singleton, and Prototype. Each with when-to-use guidance and TypeScript examples.</description>
      <category>Software Architecture</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Structural &amp; Behavioral Patterns</title>
      <link>https://tekivex.com/tutorials/software-architecture/structural-behavioral</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/software-architecture/structural-behavioral</guid>
      <description>Learn key GoF structural patterns (Adapter, Facade, Decorator) and behavioral patterns (Observer, Strategy, Command, Chain of Responsibility) with practical TypeScript examples.</description>
      <category>Software Architecture</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Data Fetching Patterns</title>
      <link>https://tekivex.com/tutorials/frontend-patterns/data-fetching</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/frontend-patterns/data-fetching</guid>
      <description>Fetching data with useEffect, SWR, React Query, and Suspense patterns.</description>
      <category>Frontend Patterns</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Rendering Patterns</title>
      <link>https://tekivex.com/tutorials/frontend-patterns/rendering-patterns</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/frontend-patterns/rendering-patterns</guid>
      <description>CSR, SSR, SSG, and ISR: how each rendering strategy works and when to use them.</description>
      <category>Frontend Patterns</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Error Handling</title>
      <link>https://tekivex.com/tutorials/frontend-patterns/error-handling</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/frontend-patterns/error-handling</guid>
      <description>Error boundaries, fallback UIs, retry patterns, and global error handling in React.</description>
      <category>Frontend Patterns</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Authentication Patterns</title>
      <link>https://tekivex.com/tutorials/backend-patterns/auth-patterns</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/backend-patterns/auth-patterns</guid>
      <description>JWT, OAuth 2.0, and session-based authentication flows with practical implementation.</description>
      <category>Backend Patterns</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Introduction to AI &amp; Machine Learning</title>
      <link>https://tekivex.com/tutorials/ai-ml/intro-to-ai-ml</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/intro-to-ai-ml</guid>
      <description>What is AI/ML? Types of learning, real-world examples, and core intuition behind how machines learn.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>The Math Behind Machine Learning</title>
      <link>https://tekivex.com/tutorials/ai-ml/math-behind-ml</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/math-behind-ml</guid>
      <description>Linear algebra, calculus, and probability fundamentals for ML — with visual explanations and gradient descent from scratch.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Neural Network Basics</title>
      <link>https://tekivex.com/tutorials/ai-ml/neural-network-basics</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/neural-network-basics</guid>
      <description>How neurons, layers, weights, biases, and activation functions work together — with a perceptron from scratch.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Your First ML Model</title>
      <link>https://tekivex.com/tutorials/ai-ml/first-ml-model</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/first-ml-model</guid>
      <description>Build a complete ML pipeline from scratch — data collection through deployment with linear regression in Python.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Classification vs Regression</title>
      <link>https://tekivex.com/tutorials/ai-ml/classification-regression</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/classification-regression</guid>
      <description>Understand the two core ML tasks, decision boundaries, evaluation metrics, and logistic regression implementation.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Training Deep Neural Networks</title>
      <link>https://tekivex.com/tutorials/ai-ml/training-deep-networks</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/training-deep-networks</guid>
      <description>Forward pass, backpropagation, loss functions, optimizers, and the full training process explained visually.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Convolutional Neural Networks (CNNs)</title>
      <link>https://tekivex.com/tutorials/ai-ml/cnn</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/cnn</guid>
      <description>How convolution works, pooling, feature maps, and a complete CNN architecture for image classification.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>RNNs &amp; Sequence Models</title>
      <link>https://tekivex.com/tutorials/ai-ml/rnn-sequence-models</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml/rnn-sequence-models</guid>
      <description>Recurrent neural networks, vanishing gradients, LSTM cells, and comparison of sequence model architectures.</description>
      <category>AI &amp; Machine Learning</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>The Attention Mechanism</title>
      <link>https://tekivex.com/tutorials/ai-ml-transformers/attention-mechanism</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-transformers/attention-mechanism</guid>
      <description>Self-attention explained simply — Query, Key, Value, attention scores, and a code implementation.</description>
      <category>Transformers &amp; Large Language Models</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>The Transformer Architecture</title>
      <link>https://tekivex.com/tutorials/ai-ml-transformers/transformer-architecture</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-transformers/transformer-architecture</guid>
      <description>Complete Transformer breakdown — encoder, decoder, positional encoding, multi-head attention, and feed-forward networks.</description>
      <category>Transformers &amp; Large Language Models</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Large Language Models (LLMs)</title>
      <link>https://tekivex.com/tutorials/ai-ml-transformers/large-language-models</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-transformers/large-language-models</guid>
      <description>How GPT and Claude work — tokenization, embeddings, transformer blocks, next-token prediction, and sampling strategies.</description>
      <category>Transformers &amp; Large Language Models</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Fine-Tuning &amp; Transfer Learning</title>
      <link>https://tekivex.com/tutorials/ai-ml-transformers/fine-tuning-transfer</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-transformers/fine-tuning-transfer</guid>
      <description>Pre-training vs fine-tuning, LoRA, QLoRA, PEFT methods, and when to fine-tune vs prompt engineer.</description>
      <category>Transformers &amp; Large Language Models</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>The Model Training Pipeline</title>
      <link>https://tekivex.com/tutorials/ai-ml-training/model-training-pipeline</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-training/model-training-pipeline</guid>
      <description>Full production ML pipeline from data collection through deployment and monitoring — every step explained.</description>
      <category>Training, Optimization &amp; Deployment</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Hyperparameter Tuning</title>
      <link>https://tekivex.com/tutorials/ai-ml-training/hyperparameter-tuning</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-training/hyperparameter-tuning</guid>
      <description>Learning rate, batch size, and architecture choices — grid search, random search, and Bayesian optimization.</description>
      <category>Training, Optimization &amp; Deployment</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Model Evaluation &amp; Metrics</title>
      <link>https://tekivex.com/tutorials/ai-ml-training/model-evaluation</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-training/model-evaluation</guid>
      <description>ROC curves, AUC, cross-validation, overfitting vs underfitting, and choosing the right evaluation metrics.</description>
      <category>Training, Optimization &amp; Deployment</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>What is an AI Agent?</title>
      <link>https://tekivex.com/tutorials/ai-ml-agents/what-is-ai-agent</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-agents/what-is-ai-agent</guid>
      <description>The Observe-Think-Act loop, ReAct pattern, tool use, and how modern AI agents work.</description>
      <category>AI Agents &amp; Multi-Agent Systems</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Agent Architectures</title>
      <link>https://tekivex.com/tutorials/ai-ml-agents/agent-architectures</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-agents/agent-architectures</guid>
      <description>Single agent, multi-agent, hierarchical orchestration, memory systems, and orchestrator/worker patterns.</description>
      <category>AI Agents &amp; Multi-Agent Systems</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Swarm Intelligence</title>
      <link>https://tekivex.com/tutorials/ai-ml-agents/swarm-intelligence</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-agents/swarm-intelligence</guid>
      <description>How agents communicate — message passing, shared state, blackboard architecture, and network topologies.</description>
      <category>AI Agents &amp; Multi-Agent Systems</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Model Context Protocol (MCP) — Complete Guide</title>
      <link>https://tekivex.com/tutorials/ai-ml-agents/mcp-protocol</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-agents/mcp-protocol</guid>
      <description>Master MCP from basics to production: architecture deep-dive, building servers and clients, transports, resources, prompts, security, debugging SOPs, and the MCP ecosystem.</description>
      <category>AI Agents &amp; Multi-Agent Systems</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
    <item>
      <title>LangChain &amp; LangGraph</title>
      <link>https://tekivex.com/tutorials/ai-ml-agents/langchain-langgraph</link>
      <guid isPermaLink="true">https://tekivex.com/tutorials/ai-ml-agents/langchain-langgraph</guid>
      <description>LangChain chains, LangGraph state machines, RAG pipelines, and building practical AI agent workflows.</description>
      <category>AI Agents &amp; Multi-Agent Systems</category>
      <pubDate>Thu, 28 May 2026 00:00:00 GMT</pubDate>
    </item>
  </channel>
</rss>
