Skip to content

Instantly share code, notes, and snippets.

View michaelahlers's full-sized avatar

Michael Ahlers michaelahlers

View GitHub Profile
@mossprescott
mossprescott / deepSized.scala
Created December 28, 2015 22:04
Scalacheck generators that distribute the size parameter across the generated structure
/** Generator that distributes the available size to two component generators,
* and then combines the results. Can be used to generate nested structures
* where the total number of component/leaf elements is effectively controlled
* by the size parameter.
*/
def deepSized[A, B, C](ga: Gen[A], gb: Gen[B])(f: (A, B) => C): Gen[C] =
for {
n <- Gen.size
x <- Gen.choose(0, n)
a <- Gen.resize(x, ga)
@VlachJosef
VlachJosef / TaggedScalazSuite.scala
Last active December 22, 2016 15:57
Using tagged type with play-json
package taggettest
import org.scalatest.FlatSpec
import org.scalatest.Matchers
import play.api.libs.json._
import scalaz.{Tag, @@}
sealed trait UserTag
anonymous
anonymous / ExampleCode.scala
Created September 25, 2015 16:30
package future_test
import scala.concurrent.{ExecutionContext, Future}
object ExampleCode {
def execute()(implicit ec: ExecutionContext): Future[String] = {
Future { throw new TestException("Some data") }
}
}
@manjuraj
manjuraj / scalaz-disjunction.scala
Last active November 12, 2018 16:15
scalaz disjunction
//
// Disjunction - aka Scalaz Either
// \/[A, B] is an alternative to Either[A, B]
// -\/ is Left (usually represents failure by convention)
// \/- is Right (usually represents success by convention)
// Left or Right - which side of the Disjunction does the "-" appear?
//
// Prefer infix notation to express Disjunction Type v: String \/ Double
//
// References
@rklaehn
rklaehn / Proxy.scala
Created January 31, 2015 16:29
Minimal akka http proxy
package akkahttptest
import akka.actor.ActorSystem
import akka.http.Http
import akka.stream.FlowMaterializer
import akka.http.server._
import akka.http.marshalling.PredefinedToResponseMarshallers._
import akka.stream.scaladsl.{HeadSink, Source}
object Proxy extends App {

Traditional chili sin carne

First introduced at Starmount Chili Cook-Off 2015. Won third place prize, defeating animal-based chili!

  • 2015: 3rd place
  • 2016: 9th place

Ingredients

  • 30 fl. oz Organic Tomato Sauce
/**
The Play (2.3) json combinator library is arguably the best in the scala world. However it doesnt
work with case classes with greater than 22 fields.
The following gist leverages the shapeless 'Automatic Typeclass Derivation' facility to work around this
limitation. Simply stick it in a common location in your code base, and use like so:
Note: ** Requires Play 2.3 and shapeless 2.0.0
@fancellu
fancellu / ShapelessCoproduct.scala
Last active February 20, 2023 10:02
Examples with Shapeless 2.0, easier to understand from examples. Taken from docs, more examples/comments added etc
// Coproduct is extension of Either concept, to N multually exlusive choices
type ISB = Int :+: String :+: Boolean :+: CNil
val isb = Coproduct[ISB]("foo") //> isb : qaaz.ISB = foo
isb.select[Int] //> res0: Option[Int] = None
isb.select[String] //> res1: Option[String] = Some(foo)
@davidallsopp
davidallsopp / Shrinking.scala
Last active January 30, 2024 13:25
Solutions to the ScalaCheck problem that shrinking failing values may generate invalid values, because the constraints of the generator are not respected. This is for using ScalaCheck from within ScalaTest.
import org.scalatest._
import prop._
import org.scalacheck.Arbitrary._
import org.scalacheck.Gen
/**
* Solutions to the ScalaCheck problem that shrinking failing values may generate
* invalid values, because the constraints of the generator are not respected.
*
* See also http://stackoverflow.com/questions/20037900/scalacheck-wont-properly-report-the-failing-case
@cmlewis
cmlewis / Rotate Videos using ffmpeg
Last active October 9, 2022 22:00
Rotate videos 90 or 180 degrees using ffmpeg
Rotate videos 90 or 180 degrees using ffmpeg.