Piotr Najda

Writing about code, systems, and learning.

2026-04-27

Hello World

Why I am starting this coding blog.

I want this blog to be a place for notes, experiments, and the occasional deep dive.

export function greet(name: string) {
  return `hello, ${name}`
}