Hello World
meta writing
Why I’m writing
This is the first post on my engineering blog. I plan to write about technical decisions, things I learn on the job, and occasionally the broader experience of working as a software engineer.
What to expect
A mix of:
- Technical deep-dives — how I approached a tricky problem, what I learned from a production incident, notes on a new tool
- Career reflections — job searching, growth, things I wish I’d known earlier
No particular schedule. I’ll write when I have something worth saying.
// A taste of what code blocks look like
const greet = (name: string): string => `Hello, ${name}`;
console.log(greet('world'));
See you in the next one.