I'm starting this blog to write about the projects I'm building, what I'm learning as a Computer Science Co-op student, and anything else worth sharing along the way.

What to expect

Mostly short, practical posts — things like:

  • Notes on projects I'm building (like the ones in my Projects section)
  • What I'm learning in coursework or on my own
  • Lessons from debugging something painful

How this is built

This blog is just Markdown files in my portfolio's GitHub repo — no CMS, no database. Every post is a .mdx file, so I can write in plain Markdown and still drop in real code blocks:

function greet(name: string) {
  return `Hello, ${name}!`;
}

More soon.