Toggle navigation
Dev notes
🦣 Mastodon
📰 RSS
🌐 Homepage
TIL: Debugging Hugo - fixing publish date
January 4, 2023
TL;DR Today I learned how to fix post visibility by reading the documentation https://gohugo.io/getting-started/usage/#draft-future-and-expired-content Last night I’ve been …
TIL: Markdown presentations with Marp
December 18, 2022
Lately I’ve been working on preparing learning materials in Scala. Usually when I work on preparing slides for public speaking I would use https://slides.com/majkp/, but this …
TIL: Mimic value class in Typescript
December 15, 2022
TL;DR Today I learned how to mimic Scala-like value class in Typescript Doing day to day scala I often use value classes to model the data like: final case class UserId(value: …