Subtle Storm
Author

Subtle Storm

The micro era's marvels are boundlessly subtle.

132
Articles
0
Likes
2
Views
0
Comments
Recent Articles

Latest from Subtle Storm

100 recent articles max
Subtle Storm
Subtle Storm
Dec 29, 2025 · Fundamentals

Understanding HTTP: From 1.1 to HTTP/3 and Beyond

The article traces the evolution of HTTP from the persistent‑connection design of HTTP/1.1 through the multiplexed, binary framing of HTTP/2 to the QUIC‑based HTTP/3, while also explaining status codes, cookies, caching directives, RESTful principles, WebSocket upgrades, and practical Python examples.

HTTPHTTP/2HTTP/3
0 likes · 8 min read
Understanding HTTP: From 1.1 to HTTP/3 and Beyond
Subtle Storm
Subtle Storm
Dec 25, 2025 · Operations

AIOps: The Revolution in Intelligent IT Operations

The article explains how AIOps combines AI and machine learning with big‑data techniques to automate, analyze, and predict IT operations, detailing its core features, use cases, technical architecture, implementation roadmap, benefits, challenges, and emerging trends.

AIOpsAutomationIT Operations
0 likes · 9 min read
AIOps: The Revolution in Intelligent IT Operations
Subtle Storm
Subtle Storm
Dec 22, 2025 · Interview Experience

How I Earned Six Certifications in 2025 (Part 1)

In 2025 the author pursued and obtained six technical certifications—including Huawei HCIE‑AI, Alibaba Cloud ACP, an AI Application Engineer credential, and three micro‑certifications—detailing the study methods, motivations, and personal sacrifices involved in this intensive certification journey.

AI Application EngineerAlibaba Cloud ACPHCIE-AI
0 likes · 5 min read
How I Earned Six Certifications in 2025 (Part 1)
Subtle Storm
Subtle Storm
Jul 15, 2025 · Fundamentals

Consistent Hashing Explained: Hash Rings, Virtual Nodes, and Load Balancing

The article details the consistent hashing algorithm, describing how a hash ring and virtual nodes distribute keys across servers, minimize data movement during node changes, compare it with simple modulo hashing, and outline typical use cases such as load balancing, distributed caches, storage systems, and database sharding.

Scalabilityconsistent hashingdistributed caching
0 likes · 10 min read
Consistent Hashing Explained: Hash Rings, Virtual Nodes, and Load Balancing
Subtle Storm
Subtle Storm
Jul 12, 2025 · Artificial Intelligence

Why GPUs Are Essential for Training Large AI Models

The article explains that GPUs, with thousands of simple cores and high‑bandwidth memory, excel at the massive parallel matrix computations required by large‑scale language model training, while CPUs handle control and scheduling, making the two processors complementary for AI workloads.

AICPUGPU
0 likes · 6 min read
Why GPUs Are Essential for Training Large AI Models
Subtle Storm
Subtle Storm
Jul 10, 2025 · Artificial Intelligence

How User, Assistant, and System Roles Shape Large Language Model Interactions

The article explains the three core roles—user, assistant, and system—in large language model conversations, detailing their definitions, functions, characteristics, and how proper role prompting clarifies dialogue structure, controls AI behavior, and improves task handling, illustrated with JSON examples and a full simulated exchange.

AI conversationLarge Language ModelPrompt Engineering
0 likes · 6 min read
How User, Assistant, and System Roles Shape Large Language Model Interactions
Subtle Storm
Subtle Storm
Jul 8, 2025 · Artificial Intelligence

How Temperature Controls Creativity in Large Language Models

The article explains how the temperature parameter (0‑2) governs randomness in LLM outputs, showing low values yield stable, conservative answers while high values produce diverse, imaginative text, and provides task‑specific recommendations, examples, code snippets, and cautions.

AI generationLLMPrompt Engineering
0 likes · 5 min read
How Temperature Controls Creativity in Large Language Models
Subtle Storm
Subtle Storm
Jul 5, 2025 · Fundamentals

Understanding Python Closures: Concepts, Uses, and Common Pitfalls

This article explains what Python closures are, how they capture outer‑scope variables, demonstrates typical patterns such as data hiding, stateful counters, factory functions, callbacks and lazy evaluation, and highlights important pitfalls like memory use and late‑binding bugs.

Pythoncallbackclosure
0 likes · 9 min read
Understanding Python Closures: Concepts, Uses, and Common Pitfalls
Subtle Storm
Subtle Storm
Jul 3, 2025 · Artificial Intelligence

Why Large Language Models Measure Usage in Tokens

The article explains that tokens are the fundamental computational units of large language models, describes how tokenization works, why charging per token reflects the high inference cost, and outlines token characteristics, pricing, and their impact on applications such as dialogue and document Q&A.

AI pricingBPEinference cost
0 likes · 6 min read
Why Large Language Models Measure Usage in Tokens
Subtle Storm
Subtle Storm
Jun 28, 2025 · Fundamentals

Mastering Python Decorators: From Basics to Advanced Use Cases

This article explains Python decorators—functions that return functions—to decouple logic, improve reusability, and extend behavior without modifying original code, covering basic syntax, parameterized and nested decorators, functools utilities, built‑in decorators, and practical examples like logging, timing, permission checks, and caching.

PerformancePythoncaching
0 likes · 18 min read
Mastering Python Decorators: From Basics to Advanced Use Cases