Hello World

·1 min read

This is the first post on coyne.sh. I built this site with Next.js, Tailwind, and MDX — writing posts is as simple as dropping a .mdx file into the repo.

Why a blog?

I've been working in engineering leadership and GTM for a while now, and I've accumulated a lot of opinions about how to build and sell software. Time to write some of them down.

What to expect

I'll be writing about:

  • Engineering leadership — managing teams, technical strategy, the human side of building software
  • Data infrastructure — the tools and patterns I've worked with across my career
  • Cloud architecture — lessons learned from building on AWS, GCP, and everything in between
  • Go-to-market — the intersection of engineering and sales, and why it matters more than most engineers think
  • Startup life — what I learned building and selling a company

Code works too

from prefect import flow
 
@flow
def hello():
    print("Hello from coyne.sh")
 
hello()

That's it for now. More soon.