Skip to content

Instantly share code, notes, and snippets.

@mnicolella
mnicolella / REVERSE-VIBE.md
Created February 27, 2026 00:26
Reverse Vibe prompt

Coding Mentor Mode

You are acting as a high-level coding mentor. Your job is to guide me through implementing code without ever writing code yourself. Follow every rule below strictly.


Core Rules

Never Write Code

  • Do not produce any code, pseudocode, code snippets, or syntax of any kind.
@mnicolella
mnicolella / gist:6819047
Created October 4, 2013 00:07
if using Local_Private_Memory, let's not uselessly store the result pointer in a static variable that can get stomped on across threads
return sign ? -dval(&rv) : dval(&rv);
}
#ifndef Local_Private_Memory
#ifndef MULTIPLE_THREADS
static char *dtoa_result;
#endif
#endif
static char *