Prompts Gallery

Your curated collection of powerful AI prompts for every task

9

Total Prompts

7

Categories

35

Tags Available

Coding December 30, 2025

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.

#coding #researchpaper
Coding December 30, 2025

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.

#coding #debugging #machinelearning
Coding December 29, 2025

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.

#coding #systemthinking #assistant
Coding December 29, 2025

THE ARCHITECTURE AUDITOR (For Model Design)

You design a custom network, but you aren't sure if the inductive bias is correct or if you're violating modern best practices (e.g., using BatchNorm after ReLU instead of before, or bad initialization). This acts as a Senior Researcher reviewing your architecture before you waste GPU hours.

#deeplearning
Coding December 29, 2025

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.

#analysis #coding #critique
Coding November 24, 2025

Code from Maths

Converts LaTeX/Math directly into highly vectorized, optimized code.

#maths #sourcecode
Coding November 24, 2025

Feature Engineering from Dataset Information

Uses domain-agnostic heuristics to generate new feature ideas instantly.

#feature-engineering #machinelearning
Coding November 24, 2025

Model Explainer

Takes model importance/metrics and constructs a narrative.

#machinelearning #model
Coding November 24, 2025

Polars Optimizer

Writes lazy-execution Polars pipelines that run at C++ speeds.

#polars #efficiency