Scala On Cloud
Tuesday, November 17, 2015
Scala map vs flatMap
›
map is loop thru all element and apply a function into it. scala> val i = List("Apple", "Banana", "Orange"...
Sunday, November 15, 2015
Scala For Loop Syntax
›
For Loop with Counter The simplest loop syntax is: for (a <- 1 to 5){ println(“Print a: ” + a); } When the above code is compi...
Wednesday, October 28, 2015
Generate CSV in Playframwork
›
Example of generate CSV by modify output header. def exportCSV = Action { val data = "data 1, data 2" Ok(data).with...
Sunday, December 21, 2014
A great scala introduction with all available tools for developer
›
http://assist-software.net/blog/awesome-scala
Sunday, November 16, 2014
Web Services - SOAP vs REST
›
SOAP and REST have been widely used for web services. SOAP is developed by Microsoft in 1998. Due to the complexity, REST has been introduc...
Tuesday, November 4, 2014
Using Scala Recursion Functions For Permutation Calculation
›
Permutation is an ordered combination - how many possible ordered combination. There are 2 types of Permutation: Permutation with Repe...
Sunday, November 2, 2014
MongoDB / Salat plugin for Play 2.3
›
Here is complete installation steps on Salat plugin for Play 2.3: You modify your project/Build.scala: import sbt._ import Keys._ im...
‹
Home
View web version