GitHub-Pages

Hi! I’m Shazi Bidarian

About Me

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.


As a Programmer

I like working on:

  1. Full-stack applications
  2. Machine learning systems
  3. Data-driven products

Tech I Use

“Code is not just about solving problems — it’s about building things people actually want to use.”


As a Person

Pictures

Me

me

Me and my best friend Sara

me and my best friend


Code Snippet

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)