1 min read

Hello World

First post on the new site. Testing MDX, code blocks, and the blog system.

metanextjs

This is the first post on the new site. Built with Next.js, Tailwind CSS, and Contentlayer for MDX.

Why a blog?

I've been building things for years but rarely writing about them. That changes now.

What to expect

  • Technical deep dives on edge computing
  • ML experiments on Apple Silicon
  • Space technology and orbital mechanics
  • The occasional rant about constraints

Code example

Here's some Python:

def train_on_ane():
    """Train an LLM on Apple's Neural Engine."""
    model = load_model("llama-3b")
    optimizer = setup_ane_optimizer(model)
    
    for batch in dataloader:
        loss = model(batch)
        loss.backward()
        optimizer.step()
    
    return model

More soon.