This is the first post on a fresh blog. Nothing fancy, just a place to write things down.

Some code

Here is a Go function that does nothing useful:

package main

import "fmt"

func greet(name string) string {
    return fmt.Sprintf("hello, %s", name)
}

func main() {
    fmt.Println(greet("world"))
}

And some Python, because why not:

def fibonacci(n):
    a, b = 0, 1
    for _ in range(n):
        yield a
        a, b = b, a + b

print(list(fibonacci(10)))

A blockquote

The computing scientist’s main challenge is not to get confused by the complexities of his own making.

— Edsger W. Dijkstra

A list

Things I like about minimal blogs:

  • They load fast
  • Nothing fights for your attention
  • The text is the interface

A table

Tool Language Vibe
Hugo Go Fast
Jekyll Ruby Classic
Zola Rust Lean

That is all for now.