CODESEED
Code real apps.
Learn faster.
Fork a real GitHub repo, build production-grade features step-by-step, and get your code reviewed by industry engineers.
Real GitHub repositories, not sandboxes
Direct code review from human mentors
Personalized pathways for your stack
Build a CLI task manager in Rust
PR Review
app/services/query.ts
- const user = await db.query(sql);
+ const user = await cache.getOrSet();
M
Mentorapproved
Excellent optimization. Moving this query to the cache reduced latency significantly.