← home

Hello World

Welcome to my blog — a place where I write about things I find interesting.

First post. This is my blog. Here’s a tour of markdown elements to make sure everything renders nicely.

Headings

H3 heading

H4 heading

Text formatting

Regular paragraph with bold text, italic text, strikethrough, and inline code. You can also combine them like bold and italic.

Here’s a link to my GitHub.

Blockquote

The best way to get started is to quit talking and begin doing.

— Walt Disney

Code block

def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n - 1) + fibonacci(n - 2)

print([fibonacci(i) for i in range(10)])
# Install dependencies and start dev server
pnpm install
pnpm run dev

Lists

Unordered:

Ordered:

  1. First step
  2. Second step
  3. Third step

Table

LanguageParadigmTyped
PythonMultiDynamic
TypeScriptMultiStatic
HaskellFunctionalStatic
GoImperativeStatic

Horizontal rule


Mermaid diagram

flowchart TD
    A[Write post] --> B[Push to GitHub]
    B --> C[Amplify builds]
    C --> D[Live on site]

Inline HTML

Text with a Ctrl + C keyboard shortcut.