vasylboyko.com

Blog

Welcome to the blog

February 1, 2026
introwriting

This is a starter post so the layout has real content to render. Replace it when your first real post is ready.

What to expect

  • Short, focused notes on software and building.
  • Occasional deep dives when something is worth unpacking.
  • Experiments, lessons learned, and links that deserve a home.

Sample code

type Note = {
  title: string;
  publishedAt: Date;
};

const notes: Note[] = [
  { title: "First note", publishedAt: new Date("2026-02-01") },
];

console.log(notes[0]?.title ?? "No notes yet");