Scala On Cloud
Tuesday, February 23, 2016
Open Source Anti Virus - ClamAV
›
ClamAV is an open source (free) anti-virus engine, support stream scanning using Java API. It’s come with an advanced tool such as online vi...
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...
‹
›
Home
View web version