Skip to content

Instantly share code, notes, and snippets.

@mandubian
mandubian / gist:0fd090c0f75a46346f5e7898eeac9e28
Last active September 15, 2017 15:11
Improving compile-time for structure based on implicits resolutions
@pavelbinar
pavelbinar / extract-subtitles-from-mkv.md
Last active August 13, 2025 15:08 — forked from bmaeser/subtitle-extract.txt
Extract subtitles from .mkv files on Mac OS X
@paulp
paulp / build.sbt
Last active October 28, 2017 13:02
/** Your task is to reason your way to which compiler
* options which will be passed for each of
* 1) sbt root/compile
* 2) sbt p1/compile
*/
scalacOptions := Seq("-DSBT")
scalacOptions in ThisBuild += "-D0"
scalacOptions in Global += "-D1"
@kubukoz
kubukoz / .scalafmt.conf
Last active October 10, 2025 23:02
How to disable significant indentation in Scala
runner.dialect = scala3
runner.dialectOverride.allowSignificantIndentation = false
# allows `if x then y`
runner.dialectOverride.allowQuietSyntax = true