Skip to main content
  1. Posts/

Hello, World

·119 words·1 min·
Author
Patrick Endres
Data engineer writing about Python, data, and whatever I’m learning next.

Welcome to the site. This is the first post, written in Markdown and rendered by Hugo.

Why this site
#

I’m a data engineer who spends most days in Python and Snowflake. This is where I’ll write about the things I’m learning — data engineering, the occasional bit of Go, and picking up web development as I go.

What’s under the hood
#

  • Hugo for the static site (one fast binary, Markdown-native).
  • PaperMod theme as a starting point, which I’ll customize over time.
  • Cloudflare Pages for hosting — free, fast, and no surprise bills under a traffic spike.

Here’s a code block, just to prove syntax highlighting works:

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

print(greet("world"))

More soon.