A Flutter notes app
Build a notes (or tasks) app in Flutter. Use a MaterialApp + Scaffold, compose the UI from widgets (Column/Row/Container), render the notes with a...
Essential session storage is required to sign in. Optional analytics remain off unless you allow them.
Filter 243 public project briefs by path and level. Sign in to track progress and reviews. Each brief exposes its grading criteria before you start.
Build a notes (or tasks) app in Flutter. Use a MaterialApp + Scaffold, compose the UI from widgets (Column/Row/Container), render the notes with a...
Build a multi-screen Flutter app (e.g. a browser for movies, recipes, or GitHub repos). Use go_router (or Navigator) with a list screen and a DETAIL...
Ship a production-quality Flutter app. Integrate a DEVICE feature via a pub.dev plugin with runtime permissions (e.g. geolocator or image_picker),...
Pick a realistic customer workflow (support triage, onboarding review, compliance document review, incident response, or claims intake) and build a...
Build a connector for a customer-style system and create the production rollout package around it. Requirements: (1) authenticate with least...
Deliver a complete forward-deployment case study for a customer-embedded product integration. Requirements: (1) discovery brief and success metrics;...
Build and deploy a personal portfolio: semantic HTML, modern CSS (flex/grid), responsive from 360px to 1920px, accessible navigation, and a contact...
A TypeScript dashboard (any framework) over a public API: typed fetch layer, loading/error/empty states, client-side caching, at least one chart, and...
Turn a data-driven app into an installable PWA: a service worker with an explicit caching strategy per route, an offline fallback, an IndexedDB-backed...
Build a complete small app (e.g. notes, tasks, or a bookmark manager) with all three tiers you wire together yourself: a component-framework frontend,...
Extend a full-stack app with real AUTHENTICATION and DEPLOY it. Implement a login flow: the client collects credentials, the server verifies against...
Ship a complete app to a production standard. Include a REAL-TIME feature (WebSocket or SSE — e.g. live updates/notifications); the full TEST PYRAMID...
Build a small but COMPLETE playable game (e.g. Pong, Breakout, a Flappy-Bird clone, or an asteroids shooter) in an engine (Godot/Unity) or from...
Build a more developed game (e.g. a top-down shooter, a platformer, or a tower defense) that demonstrates: (1) a clean architecture using the...
Take a game from concept to SHIPPED — the discipline most aspiring devs skip. Deliver a complete, polished small game with: a tight core gameplay loop...
Take a small project, initialize a Git repo, and build a clean history: a sensible .gitignore (no build artifacts or secrets), small atomic commits...
Contribute to a repository you don't own (or simulate it with a partner / a second account): fork it, add an 'upstream' remote, branch, push, and open...
Practice the powerful, dangerous parts of Git on a throwaway repo: use interactive rebase to squash/reorder/reword a messy branch into a clean one;...
Build a Go CLI that does genuinely concurrent work — e.g. a parallel URL/health checker, a directory word-counter, or a batch file processor. Launch...
Build a small REST API using only net/http (no web framework): a couple of resources with handlers, routing via http.ServeMux, JSON encode/decode with...
Build a concurrent pipeline or worker pool that processes a stream of work with BOUNDED concurrency (a fixed worker count or a semaphore), propagates...
Design a GraphQL schema in SDL for a domain you like (a blog, a library, a movie catalog): object types, a Query root and a Mutation root, deliberate...
Build a GraphQL server over a real database (Postgres/SQLite via an ORM). Implement resolvers with a per-request CONTEXT, and FIX the N+1 problem with...
Harden and extend a GraphQL API for production. Add AUTHENTICATION/AUTHORIZATION enforced in resolvers via context (not just at a gateway), a...