Skip to content

Instantly share code, notes, and snippets.

View FrancescoSerra's full-sized avatar

Francesco Serra FrancescoSerra

View GitHub Profile
package sillio
import cats.syntax.all._
import scala.annotation.tailrec
import scala.concurrent.ExecutionContext
import scala.util.control.NonFatal
import java.util.concurrent.atomic.{AtomicBoolean, AtomicReference}
@bilal-fazlani
bilal-fazlani / build.sbt
Created May 26, 2022 17:59
SBT - Reference local sbt project as dependency
lazy val other = ProjectRef(file("../../../my-other-project"), "otherSubProjectName")
lazy val myProject = project
.in(file("./my-project"))
.dependsOn(other)
@kevinmeredith
kevinmeredith / _.md
Last active January 4, 2022 16:25
The Power of Referential Transparency

The Power of Referential Transparency

Acknowledgment

This post uses the excellent Ammonite REPL for Scala REPL.

Thank you, Li Haoyi, for building it!

About the Author