A collection of Play Framework code snippets used by PlayByExample (snippets aggregator) - inspired by 140byt.es
- Fork this gist to create a new snippet.
- Modify your gist according to Rules.
// What is a Promise sequence function ? | |
// A function which transform a List[Promise[A]] into a Promise[List[A]] | |
// Usage: | |
// val list: List[Promise[Int]] = ... | |
// val sequenced: Promise[List[Int]] = list.sequence() // got it :) | |
package utils | |
import play.api.libs.concurrent._ |
// https://github.com/gre/playCLI |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
val file = Play.getFile("example.jpg") | |
def colorsQuantization = Action { | |
Ok.stream(Enumerator.fromFile(file) &> convertColors(14)) | |
.withHeaders(CONTENT_TYPE -> "image/png") | |
} |
implicit val ColorWrites = Writes[java.awt.Color] { c => | |
JsString("#%02x%02x%02x" format (c.getRed, c.getGreen, c.getBlue)) | |
} |
val audioStream: Enumerator[Array[Byte]] = getStream("http://radio.hbr1.com:19800/ambient.ogg") | |
val addEchoToOgg =CLI.pipe("sox -t ogg - -t ogg - echo 0.5 0.7 60 1") | |
def webRadioWithEcho = Action { | |
Ok.stream(audioStream &> addEchoToOgg) | |
.withHeaders(CONTENT_TYPE -> "audio/ogg") | |
} |