Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am shasts on github.
  • I am shasts (https://keybase.io/shasts) on keybase.
  • I have a public key whose fingerprint is C996 7B28 3147 4772 7E9D 5A15 A9A7 846B 6117 2519

To claim this, I am signing this object:

package controllers
import akka.actor.ActorSystem
import akka.stream.ActorMaterializer
import com.typesafe.config.ConfigFactory
import play.api.libs.json.{JsString, Json}
import play.api.libs.ws.{StandaloneWSRequest, WSAuthScheme}
import play.api.libs.ws.ahc.StandaloneAhcWSClient
import scala.concurrent.Await

Keybase proof

I hereby claim:

  • I am shasts on github.
  • I am shasts (https://keybase.io/shasts) on keybase.
  • I have a public key ASCFTp15uY4mScP17EdX6DfLr_ZG6t86E2WNubKW4SwULQo

To claim this, I am signing this object:

module Anagram (anagramsFor) where
import Data.List
import Data.Char
anagramsFor :: String -> [String] -> [String]
anagramsFor seed anagrams = filter (notAnagram) anagrams
where
notAnagram word
|seed == word = False