Skip to content

Instantly share code, notes, and snippets.

View Yaneeve's full-sized avatar

Yaneeve Yaneeve

  • Berlin
View GitHub Profile

This post is a collection of links about John De Goes that show some clear patterns of behavior:

  • De Goes defending white supremacists and misogynists.
  • De Goes attacking critics and accusing them (especially women) of lying.
  • De Goes engaging in targeted harassment, either directly (@druconfessions) or indirectly (e.g. via ClarkHat, a LambdaConf sponsor).

Despite all of the information in this post being publicly available and widely known, De Goes is frequently invited to Scala conferences to speak. The following are a few of his conference appearances in 2019:

@Jazzatola
Jazzatola / CPS.scala
Created January 28, 2015 17:27
Continuation Passing
object CPS {
def chainCps[A, B, R](f: ((A => R) => R), g: (A => ((B => R) => R))): (B => R) => R =
(h: B => R) => f(a => g(a)(h))
}