# scala-cli E2E Repo Setup
9 min read
Every time I start a new Scala project, I find myself googling the same setup steps — formatting, testing, coverage, publishing, documentation. The traditional tools don’t help: sbt has a steep…
Every time I start a new Scala project, I find myself googling the same setup steps — formatting, testing, coverage, publishing, documentation. The traditional tools don’t help: sbt has a steep…
Back in the Scala 2 days, type class derivation was a “dark art”. Automating serialization — take AVSystem’s GenCodecs, for instance — required wrestling with the Reflection API or Shapeless. You’d…
Someone asked on the Scala contributors forum how to access method parameter defaults.
While working on my BSc thesis, I encountered a cryptic Scala compilation error: “method too large”. I use macros to generate code, and I mean, a lot of code! Think derivations, routing REST API…