4
Total Prompts
7
Categories
35
Tags Available
Filter Prompts
THE PAPER-TO-CODE TRANSLATOR
You are reading a paper like "LoRA" or "FlashAttention." The math looks clean, but the implementation details (masks, padding, scaling factors) are hidden. It Bridges the gap between Equation and implementation.
THE "SILENT BUG" DETECTOR (For Debugging)
ML code rarely crashes; it just produces garbage results. (e.g., accidental broadcasting [B, N] + [B, 1] vs [B, N] + [B]). It hunts for shape mismatches and "silent" mathematical errors.
Deep-Code Architect (For System Design & CS Fundamentals)
Forces the AI to stop acting like a "coding assistant" and start acting like a Principal Architect at a FAANG level. It focuses on trade-offs, failure modes, and system design (your specific interest), rather than just syntax.
THE ROOT CAUSE ANNIHILATOR (For Debugging & Problem Solving)
Stops you from fixing symptoms. Finds the actual disease in code, logistics, or arguments instantly using the "5 Whys" and "First Principles" method.