Core Computing Tracks
Every serious developer specializes. Open a track to see what it means and how to start learning it from scratch.
Core Computing Tracks
Frontend engineering turns designs into interactive interfaces that run in the browser. You'll work with HTML for structure, CSS for style, and JavaScript / TypeScript to make things move and react.
- 01Learn HTML5 semantics and CSS Flexbox/Grid.
- 02Master JavaScript ES2023 + TypeScript basics.
- 03Pick a framework: React (recommended) or Vue.
- 04Learn state management (Zustand, TanStack Query).
- 05Study accessibility (WCAG), performance, and Core Web Vitals.
- 06Ship 3 production-quality apps and deploy them.
Backend engineering is the invisible engine — servers, APIs, authentication, and databases. You design how data flows, is stored, and is secured.
- 01Pick a language: Node.js, Python, Go, or C#.
- 02Learn HTTP, REST, and JSON deeply.
- 03Master SQL with PostgreSQL, then explore Redis/NoSQL.
- 04Understand auth: JWT, OAuth 2, sessions.
- 05Learn ORMs (Prisma, SQLAlchemy) and testing.
- 06Deploy an API with CI/CD to a real cloud provider.
DSA is the language of problem solving. Big-O analysis, arrays, trees, graphs, and dynamic programming form the foundation of every serious engineer.
- 01Learn Big-O notation and complexity analysis.
- 02Master arrays, strings, hash maps, linked lists.
- 03Study trees, graphs, heaps, and tries.
- 04Learn sorting, searching, recursion, backtracking.
- 05Practice dynamic programming and greedy algorithms.
- 06Solve 200+ LeetCode problems across all patterns.
DevOps merges development with operations — automating builds, deployments, and monitoring so software ships fast without breaking. It's the discipline behind every reliable product.
- 01Master Linux CLI and shell scripting (bash).
- 02Learn Docker: images, containers, compose.
- 03Understand CI/CD with GitHub Actions.
- 04Study Kubernetes basics: pods, services, deployments.
- 05Learn IaC with Terraform on AWS or GCP.
- 06Set up observability: logs, metrics, traces.
