Hello World
This is my first post on this new site.
I built this site with plain HTML, CSS, and a simple Python script that converts markdown to HTML. No frameworks, no dependencies beyond the basics.
Why I built it this way
I wanted something simple. Paul Graham's site is just HTML files.
The workflow is straightforward:
- Write a post in markdown
- Run
python build.py - Push to deploy
What's next
I'll be writing about projects I'm working on and things I'm learning.
Here's some example code:
def hello():
print("Hello, world!")
That's it for now.