Add Profile-Guided Optimization to a Production JavaScript Bundler
Overview
What this challenge is about.
Add Profile-Guided Optimization to a Production JavaScript Bundler. Advanced challenge in design. Designing real products under real constraints, earn a bloc...
The Brief
What you'll do, and what you'll demonstrate.
Design and implement a profile-guided optimization workflow for a Rust JavaScript bundler and measure its end-to-end impact across eight representative customer projects.
This is not a design exercise. It is the work a product designer does between a brief and a shipped interface. That distinction matters to every hiring manager who has seen candidates redesign Spotify's homepage and none who have worked under real product constraints.
When you finish, you will have something most graduates do not: a real-world deliverable, verified by Ewance, that you can show to a hiring manager and say "I did this. Here is the proof."
Earning criteria — what you'll demonstrate
- Design an end-to-end LLVM profile-guided optimization workflow for a Rust binary
- Select and justify a training workload using real hot-path profiling data
- Produce statistically honest benchmarks with confidence intervals and a reproducible methodology
- Translate a one-off optimization into a repeatable, documented release-engineering process
- Reason about coverage so optimization wins generalize beyond the most-exercised projects
Program Fit
Where this fits in your program.
Sharpens the same skills your degree expects you to demonstrate.
Aligned coursework coming soon.
Skills
Skills you'll demonstrate.
Each one shows up on your verified credential.
- Profile Guided Optimization
Apply profile guided optimization to solve real industry problems and demonstrate production-level capability.
- Llvm
Apply llvm to solve real industry problems and demonstrate production-level capability.
- Benchmarking
Apply benchmarking to solve real industry problems and demonstrate production-level capability.
- Rust
Apply rust to solve real industry problems and demonstrate production-level capability.
- Release Engineering
Apply release engineering to solve real industry problems and demonstrate production-level capability.
- Compiler Passes
Apply compiler passes to solve real industry problems and demonstrate production-level capability.
Careers
Career paths this challenge builds toward
Completing this challenge demonstrates skills that transfer directly to these roles:
Release Engineer
Cutting a reproducible PGO release and documenting a maintainer-runnable recipe mirrors the core of release engineering: turning a one-off build improvement into a dependable, repeatable process the whole team can trust.
This challenge sharpens
- release-engineering
- rust
- profile-guided-optimization
Build & Compiler Tooling Engineer
Wiring LLVM profile feedback into a Rust build and reasoning about which compiler passes the profile influences builds the exact instincts a compiler-tooling engineer applies when optimizing toolchains for real workloads.
This challenge sharpens
- llvm
- compiler-passes
- profile-guided-optimization
Performance Engineer
Designing honest benchmarks with confidence intervals and validating that optimizations generalize across a corpus is the daily craft of a performance engineer who must prove wins rather than assert them.
This challenge sharpens
- benchmarking
- profile-guided-optimization
- rust