I’m a Computer Science major at UC San Diego and a software engineer at Aesthetic. I love building things that actually do something and people would actually use. I am especially interested in AI, machine learning, and creating full-stack systems that feel seamless to use.
I like working on:
Python, C++, TypeScriptNext.js, Tailwind, AWS, Pandas, Scikit-learn“Code is not just about solving problems — it’s about building things people actually want to use.”


Here’s a small example of something I’d write:
```python def dominant_color(pixels): “”” Returns the most common RGB value from an image. “”” counts = {} for pixel in pixels: counts[pixel] = counts.get(pixel, 0) + 1 return max(counts, key=counts.get)