Scala
-
Scala Wonderland: All operations are method calls
I’ve started learning Scala two months ago and I can’t get back to Murakami’s 1Q84 so exciting it is. In…
Read More » -
A Scraping Library
As part of a project I’m working on, I needed to get documents from state institutions. And instead of writing…
Read More » -
Scala Wonderland: The functional style
Scala encourages to use a functional style of programming. For programmers coming from imperative world of Java or C# it…
Read More » -
Scala setup on Mac OS
Not so long time ago I decide to improve my programming skills with a new programming language. As you can…
Read More » -
Scala Wonderland: Lists
In functional style methods should not have side effects. A consequence of this philosophy is that List is immutable in…
Read More » -
Scala Wonderland: Semicolons, singletons and companion objects
In Scala you may usually omit semicolon at the end of a statement. It is required if more statements are…
Read More » -
Scala Wonderland: Case classes and pattern matching
Pattern matching is usually related to text search. In Scala it has much more sophisticated usage. You can write exciting…
Read More » -
Automatic generation of delegate methods with Macro Annotations
Macro Annotations are a new type of macros, which are one of the candidates for inclusion (see also comment by…
Read More » -
Lightweight real-time charts with Play Framework and Scala using server-side events
Continuing a great journey with awesome Play Framework and Scala language, I would like to share yet another interesting implementation…
Read More »