Listens to the whole call, not just your mic.
Hears the interviewer, the panel, the recruiter — through macOS audio loopback. Transcribes via Deepgram with sub-400 ms latency.
You blank. They smile. "We went another direction." Copilot answers for you in under a second. Invisible.
macOS setContentProtection tells the OS this window is private. Zoom, Meet, Teams, Discord capture your desktop — never the copilot.
The counter renders 0, ticks once to 1, then freezes. Find the bug. Fix it.
// Counter.jsx — increments once, then stops. Why?
function Counter() {
const [count, setCount] = useState(0);
useEffect(() => {
const id = setInterval(() => {
setCount(count + 1); // ❌ stale closure
}, 1000);
return () => clearInterval(id);
}, []); // ❌ empty deps freeze count
return <span>{count}</span>;
}|
The counter renders 0, ticks once to 1, then freezes. Find the bug. Fix it.
// Counter.jsx — increments once, then stops. Why?
function Counter() {
const [count, setCount] = useState(0);
useEffect(() => {
const id = setInterval(() => {
setCount(count + 1); // ❌ stale closure
}, 1000);
return () => clearInterval(id);
}, []); // ❌ empty deps freeze count
return <span>{count}</span>;
}|
setCount(c => c + 1). Empty deps lock count at 0.
The interval captures count from the first render (0) and reuses it forever. React's setter accepts a function that always sees the latest value — no need to re-run the effect.
Install on Mac to see the real thing.
Not a chatbot HUD. Not a popup. A quiet panel that reads the room and writes one good answer at a time.
Hears the interviewer, the panel, the recruiter — through macOS audio loopback. Transcribes via Deepgram with sub-400 ms latency.
setContentProtection hides the window from every capture API. Zoom, Meet, Teams, Loom — none see it.
Pulls from your CV and notes. Suggestions sound like you on a good day.
Never a stream of bullets to scan-and-panic through. One framed claim, then the reasoning beneath it.
No notifications. No sounds. No popups. Default position is the corner of your screen, dimmed to 70%, until you glance.
"It sits in the corner like an editor — not a teleprompter. You forget it's there until you need it."
macOS 12+. Free, no signup needed to try.
Drag it to a corner. Toggle stealth. It will stay where you put it.
A suggestion is always ready. Copy it, paraphrase it, or ignore it.
For trying it on a low-stakes call before the high-stakes one.
For the week before your interview, and the year of meetings after.
For senior IC and exec interviews, where context matters more than speed.
Install it tonight, learn the keys tomorrow, forget it's there by Thursday.