I wanted a portfolio/blog that feels like home: a dark terminal, fast navigation, and a focus on content over chrome.
What you’ll find here
- Tech write-ups (mostly the stuff I wish I had saved somewhere)
- Notes from projects I’m proud of
- Opinions on software craftsmanship, testing, and performance
A tiny code sample
export function formatTitle(page?: string) {
return page ? `${page} | Eraldo Hasanaj` : 'Eraldo Hasanaj'
}