Hello World

First post — why I'm starting this blog.

This is my first post. I recently quit my job to work on AI full-time, and this blog is where I’ll be writing about what I’m building and learning along the way.

Why a blog?

Writing forces me to think clearly. If I can’t explain something in a post, I probably don’t understand it well enough. Plus, building in public keeps me accountable.

What to expect

I’ll be writing about:

  • AI/ML projects I’m working on
  • Interesting papers and techniques
  • Code walkthroughs and tutorials

A code snippet to prove this works

Here’s a quick example of syntax highlighting:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import torch
import torch.nn as nn

class SimpleModel(nn.Module):
    def __init__(self, input_dim, output_dim):
        super().__init__()
        self.linear = nn.Linear(input_dim, output_dim)

    def forward(self, x):
        return self.linear(x)

model = SimpleModel(768, 10)
print(f"Parameters: {sum(p.numel() for p in model.parameters()):,}")

More posts coming soon.