this is the first post on my new site.
i set this up with eleventy so i can write posts in markdown and they get rendered automatically. no databases, no javascript frameworks, just markdown files and a build step.
why this stack
i wanted something minimal:
- write posts as
.mdfiles - build to static html
- deploy anywhere (netlify, github pages, a vps, whatever)
- keep the same terminal aesthetic
code example
here’s a python snippet for fun:
def greet(name: str) -> str:
return f"hello, {name}"
if __name__ == "__main__":
print(greet("world"))
what’s next
i’ll write about networking, linux, and whatever i’m learning at deutsche telekom. stay tuned.