Hi, I’m Smeet

Welcome to my blog. I write about software, ideas, and things I find interesting.

Hello World

Welcome to my blog! This is a test post to make sure everything is working — layout, typography, and most importantly, syntax highlighting. This sentence also ensures I’m not using the default version of this file. A bit of Python Here’s a quick Fibonacci generator: def fibonacci(n): a, b = 0, 1 for _ in range(n): yield a a, b = b, a + b for num in fibonacci(10): print(num) A bit of Go And the same thing in Go: ...

February 16, 2026 · 1 min