Hi there, I'm Andy!

Full-stack developer and full-time dreamer, based in the San Francisco Bay Area. Click below to learn more!

1// Merge two arrays, and sort them
2
3function merge(nums1, m, nums2, n) {
4  for (let i = m; i < nums1.length; i++) {
5      for (let j = 0; j < n; j++) {
6          if (j === i - m) {
7              nums1[i] = nums2[j];
8          }
9      }
10  }
11  
12  nums1.sort((a, b) => {
13      return a - b;
14  });
15};

About Andy

I'm a full-stack developer with 5 years of experience at all points in the stack. I've worked with a variety of different technologies, some of which are listed below!

Beyond development, I enjoy music, reading, video games, and more. I'm currently pursuing my second bachelor's in Data Science from the Arizona State University (forks up!).

about Us image
Next.jsDjangoLangChainAWSKubernetesTailwindCSSFastAPIOpenAISupabaseDocker

My Projects

These are some of my favorite projects I've built. The technologies used are listed, and you can check out both the project and the code! More code can always be found on my Github.

Imaginary Products
OpenAI, Next.js, TailwindCSS, Framer Motion

Imaginary Products

An AI-powered imaginary product generator. Having fun with hallucinations.

CodeTunes
Next.js, TailwindCSS, Framer Motion

CodeTunes

Music for your flow state. Building a long-thought-about product.

The Side Project Guy
OpenAI, Next.js, TailwindCSS

The Side Project Guy

A home for all my side projects. I post projects I've completed and ideas I may not get to.