Scala
-
Recursion
Recursion is a technique that allows us to break down a problem into smaller pieces. This technique allows us to…
Read More » -
Kotlintest and property based testing
I was very happy to see that Kotlintest, a port of the excellent scalatest in Kotlin, supports property based testing. I was introduced…
Read More » -
Play and SBT basics
Previously we had an introduction to sbt, its default tasks and how to add extra tasks. Play comes with the…
Read More » -
SBT basics
Sbt is the de facto build tool in the Scala community. Being used to other build tools you will be…
Read More » -
Use JSON with Play and Scala
Once getting your hands into typing scala code using play, the first thing that comes to mind is JSON. Without…
Read More » -
SQL Data Access in Play using Scala
Today’s modern application frameworks come with apromise of easy sql data access. There is no wonder why we have so…
Read More » -
When following REST(ful) principles might look impractical, GraphQL could come on the resque
I am certainly late with jumping on the trendy train, but today we are going to talk about GraphQL, a…
Read More » -
Database Initialization with play and Scala
Once starting your play prototype application one of the priorities is to initialize your database and also manage the database schema…
Read More » -
Your first Web application with Play and Scala
Today we are going to develop a simple play application using Scala. To do so we must have sbt installed…
Read More »