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

SWE intern working on money movements

SWE intern working on agentic systems

SWE intern working on ai agents

SWE Intern on the Monetization team.

SWE Intern on high performacne Vehicle Tracking.
SWE Lead on building a uberized package return service (GTA).

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.