šŸš€ LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
šŸŽ“ COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.
HTML MASTER CLASS /// LEARN TAGS /// BUILD STRUCTURE /// SEMANTIC WEB /// HTML MASTER CLASS /// LEARN TAGS ///

Untitled Lesson

⚔ Total XP: 0|šŸ’» backend XP: 0

Skill Matrix

UNLOCK NODES BY LEARNING NEW TAGS.

Select an unlocked node to view details root

Pascual Vila

Pascual Vila

Frontend Instructor // Code Syllabus

Common Pitfalls & Errors

The Error //

Relying on an unwritten team convention that exists only in experienced team members' heads

// Invisible unless someone already knows it verbally // (an unwritten norm, never documented anywhere) // Discoverable by anyone, human or AI "CONVENTION: always validate with Zod before any DB write — see src/schemas/"

The Solution //

An unwritten convention is invisible to anyone who doesn't already happen to know it — a new team member and an AI assistant are equally unable to discover and follow it, since neither has access to unspoken tribal knowledge. Writing conventions down explicitly, in a context file or contributing guide, makes them actually discoverable.

The Error //

Using inconsistent file or folder naming conventions across a codebase

// Inconsistent, forces searching every time src/services/order_service.js src/OrderRepository.ts src/tests/testOrder.js // Consistent, predictable, guessable src/services/orderService.ts src/repositories/orderRepository.ts src/services/orderService.test.ts

The Solution //

Inconsistent naming forces exploratory searching every time someone (human or AI) needs to locate a related file, rather than being able to reliably guess its location and name based on an established, predictable pattern — a real, ongoing navigability cost.

Continue Learning