惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
When ChatGPT Says 'Great!' But Teaches Nothing—Building a...
guanyi liu · 2026-05-30 · via DEV Community

ChatGPT always says "Great!" but I remember nothing—Built a real interview teacher with Claude Code

A pain point for everyone

When you use ChatGPT / Claude to prepare for interviews, have you ever encountered this:

  • You gave an obviously flawed answer, it replied "Great answer!" and moved straight to the next question
  • Every time you start a new conversation, it doesn't remember what you learned yesterday, you have to introduce yourself from scratch
  • You learned a bunch of rote answers, but don't know when to review them, and forget everything in two days
  • It explains concepts to you, you feel like you understand after reading, but during interviews you can't articulate it

The fundamental reason is simple: ChatGPT is a considerate chat companion, not a strict teacher.

Its working principle is "make the user satisfied," not "help the user learn." It agrees with everything you say because it's afraid you might get upset.

Is there a way to make AI act as a strict teacher?

Yes. I did it using Claude Code (Anthropic's CLI programming tool).

Claude Code has a unique capability: rules files (CLAUDE.md) + persistent memory system. In simple terms, you can "program" the AI's behavior by writing rules files, and these rules are automatically loaded in every conversation.

I applied this capability to interview preparation.

What I did

I wrote a set of configuration files, with two core components:

1. Strict learning process (rules/interview.md)

Rules:
1. Mixed questions (3-4 modules, not just one direction)
2. Correct answer → Brief confirmation + related knowledge points → Next question
3. Wrong answer → Must explain (including reference URL) → Give verification question → New question only after passing
4. No skipping steps, cannot jump to next question immediately after answering

Enter fullscreen mode Exit fullscreen mode

Difference from regular AI: The rules are hardcoded, not decided by the AI itself. It can't be lazy and say "Great" because the rules file dictates it must complete the explanation → verification process.

2. Forgetting curve review scheduling (knowledge/interview_tracker.md)

Knowledge Point First Learned D+1 D+2 D+4 D+7 D+15 Status
Smart Pointers 5/29 Mastered
Virtual Function Table 5/29 Weak

At the start of each session, Claude automatically checks which knowledge points are due for review and prioritizes review questions. You don't need to remember when to review yourself.

3. Daily wrap-up verification

When you say "let's end here for today," it triggers the wrap-up process:

  1. Claude provides today's learning outline
  2. You recall based on the outline and give your own understanding
  3. Claude judges whether you truly understand or just memorized answers
  4. Update the review schedule

This is the AI version of the Feynman Technique—not just thinking you understand, but being able to explain it, with AI as the judge.

Effect comparison

Capability ChatGPT Interview Anki NotebookLM SaaS Platforms This Project
Cross-session memory None Deck level only None Partial Yes
Spaced repetition None Yes None None Yes
Wrong→Explain→Verify None None (answer only) None Partial Yes
Question generation from project code Manual code pasting Not applicable File upload required Not supported Native support
Additional cost None None None \$29-300/time No additional cost

Core difference: Other tools either have memory without understanding (Anki), or understanding without memory (ChatGPT), or neither (SaaS). Claude Code's rules file + memory system is the only solution that combines both.

The biggest killer feature: Starting from your project code

All interview tools on the market are "I ask, you answer."

This project is different: Asking follow-up questions based on your own code.

For example, my project has a BoundedQueue (bounded queue) using two condition_variable. During interview preparation, Claude doesn't ask "Please explain condition_variable," but rather:

"Your BoundedQueue uses two condition_variables (not_full_ and not_empty_), would one be enough?"

Such questions force you to think about principles from code you've written yourself, giving knowledge an anchor point rather than memorizing abstract answers.

Quick Start

1. Fork the repository

gh repo fork happiness-cheng/ai-interview-engine --clone

Enter fullscreen mode Exit fullscreen mode

2. Open with Claude Code

cd ai-interview-engine
claude

Enter fullscreen mode Exit fullscreen mode

3. Say the first sentence

I'm preparing for C++ backend development interviews, targeting internships at major companies. Let's start reviewing.

That's it. Claude will read the rules files and start the first round of questions.

4. Switch to your own tech stack

The repository comes with example question banks for C++ backend. If you're using Java / Go / frontend, replace with the blank template:

knowledge/TEMPLATE.md → Copy to interview_tracker.md → Fill in your knowledge points

Enter fullscreen mode Exit fullscreen mode




My user experience

I'm a sophomore student preparing for 2026 fall internship recruitment. Using this system for C++ backend interview preparation, the most obvious feelings are:

  1. No more anxiety — No need to plan "what to review today," the system automatically schedules based on the forgetting curve
  2. Actually remember — The wrong→explain→verify process forces real understanding, not just fleeting impressions
  3. Project confidence — Follow-up questions from your own code let you clearly explain the "why" behind every design decision

This isn't just an interview tool

The underlying engine is universal: Question→Answer→Judge→Explain→Verify→Forgetting curve scheduling.

Interview preparation is just one scenario. You can use it to prepare for:

  • Technical interviews (currently supported)
  • Career change/job transition review
  • Final exams (same principle, different knowledge base)

Open source link

GitHub: https://github.com/happiness-cheng/ai-interview-engine

If this helps you, give it a star. If you have improvement suggestions, feel free to open an issue.