This is the first post. Every blog needs a hello-world, the same way every
new repo needs an initial commit.
Why this exists
I wanted a place to write that felt like the tool I spend most of my day in — so this site is styled like a code editor, right down to the tab bar and the line numbers.
What’s next
- Notes on things I’m learning
- Small project write-ups
- The occasional opinion I’ll probably revise later
function greet(name) {
return `hello, ${name}`;
}
console.log(greet("world"));
More soon.