Welcome to My Blog

This is my first post using Hexo with the Fluid theme.

Why Hexo?

Here are a few reasons to love Hexo:

  • Fast — Static site generation is blazing quick
  • Markdown — Write posts in clean, readable Markdown
  • Extensible — Tons of plugins and themes available
  • One-command deploy — Push to GitHub Pages, Vercel, and more

Code Example

Here is a simple JavaScript function:

1
2
3
4
5
function greet(name) {
return `Hello, ${name}! Welcome to Hexo.`;
}

console.log(greet('World'));

And a Python snippet:

1
2
3
4
5
6
7
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a

print(fibonacci(10)) # Output: 55

Next Steps

  1. Customize the site configuration
  2. Choose and tweak a theme
  3. Write more posts
  4. Deploy to a hosting platform

Stay tuned for more content!