Hello, World
Welcome to my new blog! It's built with Zola, a fast static site generator written in Rust, and styled with 98.css for that authentic Windows 98 feel.
Why this stack?
- Zola — a single binary, no dependency hell, blazing fast builds.
- 98.css — because the web peaked in 1998 and we all know it.
Some code
fn main() {
println!("It is now safe to turn off your computer.");
}
And here's some Python you can actually run — hit the Try me button and it opens in a little editor, no installation required:
def fizzbuzz(n):
for i in range(1, n + 1):
word = "Fizz" * (i % 3 == 0) + "Buzz" * (i % 5 == 0)
print(word or i)
fizzbuzz(15)
Tip of the day: You can double-click the title bar to maximize a window.
More posts coming soon. Stay tuned!