
I'm currently a Software Engineering student at the University of Waterloo, taking interesting courses: OS, DSA, Databases, Statistics.

SWE intern on AI travel

SWE Intern on Monetization.

SWE Intern on Vehicle Tracking.

Competitive math and programming for 100+ high school students.

My PB's: 800m: 2:09, 1000m: 2:51, 5km: 18:06, 10km: 41: 56, Half-Marathon: 1:29:58, Marathon: 3:17:02.

Ex-president
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.
Open to new opportunities.