
CS: Advanced Algorithms, Operating Systems, Database Systems, Compilers, Software Design & Testing, User Interfaces
Math: Combinatorics & Optimization, Numerical Computation, Signals & Systems, Statistics, Linear Algebra, Calculus

Worked on core payment infrastructure.

Worked on agentic systems and performance.

Worked on evaluating agentic loops.

Worked on Shop Pay (auto-filled checkout).

Worked on high performance vehicle tracking.
SWE Lead on building a uberized package return service (Toronto).

Competitive math/programming for 100+ high school students.
1
2
3
4
5
6
7
8
9
10
fn fibonacci (n) {
if |n <= 2| { return 1 }
let prev = 1; let curr = 1;
from 2 to n with i {
let next_value = prev + curr
prev = curr
curr = next_value
}
return curr
}MetaScript is an interpreter with support for user defined functions, I/O, loops, conditionals, and environment scopes.