Hello World

Welcome to my journal. I write about programming, entrepreneurship, and machine learning.

Why a journal?

I’ve been meaning to write more. This is the start.

A code example

Here’s some Python to kick things off:

def greet(name: str) -> str:
    return f"Hello, {name}!"

print(greet("world"))

More to come.