Infra Learning Club
Author

Infra Learning Club

Infra Learning Club shares study notes, cutting-edge technology, and career discussions.

72
Articles
0
Likes
0
Views
0
Comments
Recent Articles

Latest from Infra Learning Club

72 recent articles
Infra Learning Club
Infra Learning Club
Apr 8, 2026 · Artificial Intelligence

Can a Whip Speed Up Claude Code? Exploring BadClaude and GoodClaude Tools

The article introduces two GitHub projects—badclaude, which uses a simulated whip, and goodclaude, which uses a magical wand—to interact with Anthropic's Claude Code by sending keyboard shortcuts and random phrases, and provides step‑by‑step installation and usage instructions for both Electron‑based tools.

AI toolingClaude CodeElectron
0 likes · 4 min read
Can a Whip Speed Up Claude Code? Exploring BadClaude and GoodClaude Tools
Infra Learning Club
Infra Learning Club
May 15, 2025 · R&D Management

How This Pioneer Programmer Coded Until 60: The Key Practices Behind His Longevity

The article examines the 60‑year coding career of OceanBase founder Yang Zhenkun, outlining five concrete strategies—deep technical focus, embracing change, building soft‑skill influence, maintaining health, and proactive career planning—that enable programmers to sustain relevance and vitality in a fast‑moving industry.

career longevitycontinuous learningdistributed systems
0 likes · 7 min read
How This Pioneer Programmer Coded Until 60: The Key Practices Behind His Longevity
Infra Learning Club
Infra Learning Club
May 10, 2025 · Artificial Intelligence

Testing Gemini 2.5 Pro’s Programming Skills with Cursor

The author evaluates Gemini 2.5 Pro’s coding capabilities inside the Cursor IDE, detailing setup steps, regional API‑key limitations, hands‑on attempts to generate a front‑end project, a comparison with Augment Code’s Sonnet 3.5 model, and overall impressions of AI‑driven code generation.

AI code generationAugment CodeCursor IDE
0 likes · 5 min read
Testing Gemini 2.5 Pro’s Programming Skills with Cursor
Infra Learning Club
Infra Learning Club
Apr 27, 2025 · Cloud Native

Why Containerd 2.x Fails to Find nvidia‑smi with GPU‑Operator and How to Fix It

When deploying a Kubernetes cluster with kubespray and the NVIDIA runtime, Containerd 2.x reports "nvidia‑smi not found" because the go‑toml v2 parser treats the "binaryName" key differently, causing the wrong runtime wrapper to be used; the article details the configuration inspection, version comparison, code demonstrations, and practical work‑arounds.

containerdgo-tomlkubespray
0 likes · 8 min read
Why Containerd 2.x Fails to Find nvidia‑smi with GPU‑Operator and How to Fix It
Infra Learning Club
Infra Learning Club
Apr 4, 2025 · Artificial Intelligence

Testing Augment Code: A Powerful New Rival to Cursor

The article evaluates Augment Code, an AI‑powered coding assistant with 200K token context, persistent memory, multimodal input, and top SWE‑bench scores, walks through its installation, explores its use on vllm and PagedAttention, demonstrates adding a new model and auto‑generating a WeChat mini‑program, and compares its capabilities and speed to Cursor.

AI coding assistantAugment CodeCursor
0 likes · 8 min read
Testing Augment Code: A Powerful New Rival to Cursor
Infra Learning Club
Infra Learning Club
Mar 23, 2025 · Artificial Intelligence

Getting Started with cuda‑python and an Introduction to cuTicle

This article explains the cuda‑python ecosystem—including its core packages, installation via pip or conda, the experimental cuda.core API, a full Python‑to‑CUDA workflow with NVRTC compilation, performance comparison to C++, the covered APIs, and an overview of NVIDIA's new cuTicle programming model.

CUDAGPUNVRTC
0 likes · 11 min read
Getting Started with cuda‑python and an Introduction to cuTicle
Infra Learning Club
Infra Learning Club
Mar 22, 2025 · Artificial Intelligence

How to Write CUDA Kernels in Python – Insights from Nvidia GTC 2025

The article reviews Nvidia GTC 2025’s session on writing CUDA kernels with Python, compares tools such as Numba, CuPy, PyTorch extensions and cuda‑python, demonstrates a segmented reduction example with C++ and Python code, explains the underlying CUDA concepts, and shows how to install and use cuda‑python to simplify kernel development.

CUDACuPyGPU
0 likes · 10 min read
How to Write CUDA Kernels in Python – Insights from Nvidia GTC 2025
Infra Learning Club
Infra Learning Club
Mar 20, 2025 · Artificial Intelligence

How GPU Frequency, Power Consumption, and FLOPS Interrelate

The article explains the theoretical and practical relationships between GPU clock frequencies, power consumption, and FLOPS, describes key hardware metrics such as SM, memory, and video clocks, shows how to query and set these values with nvidia‑smi, and presents experiments on a Tesla P4 that reveal the non‑linear trade‑offs between performance, power, and temperature.

Clock SpeedDVFSFLOPS
0 likes · 15 min read
How GPU Frequency, Power Consumption, and FLOPS Interrelate
Infra Learning Club
Infra Learning Club
Mar 18, 2025 · Fundamentals

Can You Direct a CUDA Kernel to a Specific SM?

The article explains CUDA’s architecture and SM basics, describes how the warp scheduler and dispatch units assign thread blocks to SMs, and concludes that external control cannot target a specific SM, while mentioning the NanoFlow intra‑device parallelism approach as a possible indirect optimization.

CUDAGPU ArchitectureKernel Scheduling
0 likes · 7 min read
Can You Direct a CUDA Kernel to a Specific SM?