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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
博客园_首页
博客园 - 【当耐特】
V
Visual Studio Blog
博客园 - 叶小钗
月光博客
月光博客
美团技术团队
J
Java Code Geeks
小众软件
小众软件
Y
Y Combinator Blog
博客园 - Franky
Martin Fowler
Martin Fowler
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG

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
What I learned building a math fact app for my third grad...
yoan ante · 2026-05-12 · via DEV Community

yoan ante

I'm a developer in New Jersey. About a year ago my daughter, who was in third grade, was hitting the wall on basic math facts. She knew the strategies. She could derive an answer. But the recall was slow enough that anything that depended on the fact, word problems, division, fractions, was eating up all her working memory and crashing the rest of the problem.

I tried the apps everyone tries. Xtramath, Reflex, IXL, Prodigy. They all do practice, and they all give you a session percentage at the end. None of them did the thing I actually needed. Some of them I don't even know how they are allow to call themselves educational apps. Looking at you Prodigy.

So I built it.

The mechanic

The engine is a speed adaptive Leitner plus SM-2 hybrid. Each fact lives in a box. Get the fact right in under three seconds, the fact promotes one box and the interval to the next time she sees it widens. Get it right in three to five seconds, the fact stays in the current box. Take longer than five, the fact demotes two boxes. Wrong, reset to box one. Combined with the spaced reintroduction, the slow facts keep cycling back at short intervals and the fast ones move out of the active queue.

Three to five minute sessions. Stop anytime. That part is non negotiable, because the moment a kid feels trapped in math practice the whole thing breaks and you'll never get them back.

What surprised me

The piece I did not expect was the diagnostic value of the three second cutoff. Session percentage hides the difference between a fact a kid actually retrieves and a fact a kid is reconstructing each time, those two things look identical on paper because they both produce the right answer, but they are completely different from a working memory standpoint and the kid who is reconstructing every fact will hit a wall the moment the problem gets multi step.

The threshold separates them. You can see exactly which facts the kid has and which ones she's faking. That's the actual signal. Everything else is noise.

What the dashboard shows

The stats page surfaces the top 10 most missed facts for each learner, with average response time and times seen on each one. Free tier shows the number one missed fact, the upgrade unlocks the rest. The average response time column is the one that surprises parents most. You can have a fact at 80 percent accuracy but with a six second average response time, which means the kid is still reconstructing every time and the fact is going to break under multi step problems. The list orders by a blended weakness score, not raw error count, so what surfaces is the actual cognitive load driver and not just whichever fact got missed most often last week.

What I built it with

Vite plus React 19 plus TypeScript on the frontend. Material UI for components, Framer Motion for animations, Konva for the scene builder canvas. The backend is Firebase: Firestore for state, Firebase Auth for the sign in paths (anonymous, Google, email link, plus a learner profile PIN flow I built for kids who shouldn't have their own email yet), Cloud Functions in Node 22 for fact provisioning and lifecycle stuff, Firebase Storage for the scene assets. Stripe Checkout for billing, Postmark for transactional email.

The scheduler is time driven, not session count driven. That matters because a kid who blasts through a session getting easy facts fast shouldn't be promoting facts she hasn't actually consolidated. Each session is built from due cards first, then active learning cards (box 3 or below), then new unseen cards. Cards that hit box 4 or above during a session drop out of the active queue so they don't keep getting tested while she's tired.

Where it is now

I am not running pilots. The app has no users to speak of yet except for my daughter. My mom is a teacher, my daughter's third grade teacher is the first person I've actually shown it to outside the family. I have a free tier for everyone and a separate offer of full access for any teacher who wnats to try it with a class, because what I need right now is feedback from real teachers, not signups.

If you have a kid in elementary or you teach elementary math, the site is at https://mathbuilders.com and I'd take any feedback you have, even harsh ones, especially harsh ones honestly.

Thanks for reading.