Toggle navigation
Dev notes
🦣 Mastodon
📰 RSS
🌐 Homepage
Your own Bluesky feed
November 27, 2024
In this post we’ll learn how to build and deploy your own feed on Bluesky. We’ll start with some background info on Bluesky and how feeds work. Then we’ll code …
Hide irrelevant data in your PRs
January 5, 2024
TL;DR Today I learned that you can hide irrelevant changes from Github PRs. The syntax for .gitattributes can be tricky though. In my current project, it’s sometimes …
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: …