Tag: scala

  • Release a Gradle Project Using GitLab CI/CD Pipeline

    Release and publish a Gradle project from GitLab CI/CD pipeline to a Maven repository.

  • Fighting NotSerializableException in Apache Spark

    Fighting NotSerializableException in Apache Spark

    Using Spark context in a class contructor can cause serialization issues. Move the logic and variables to a member method to avoid some of these problems.

  • Exclude log4j to use slf4j with logback in a Gradle project

    Exclude log4j to use slf4j with logback in a Gradle project

    The goal is to remove log4j from all transitive dependencies in a Gradle project and replace it by slf4j and logback.

  • The best code coverage for Scala

    The best code coverage metric for Scala is statement coverage. Simple as that. It suits the typical programming style in Scala best. Scala is a chameleon and it can look like anything you wish, but very often more statements are written on a single line and conditional “if” statements are used rarely. In other words,…

  • Await without waiting

    Scala has recently introduced async and await features. It allows to write clean and easy-to-understand code for cases where otherwise complex composition of futures would be needed. The same thing already exists in C# for quite a while. But I always had a feeling that I don’t really know how does it work. I tried…

  • 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 decision logic when used together with case classes. Even after understanding what the two things mean I wasn’t able to use them as they deserve. It takes a while to really grasp them. Long and…

  • 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 on a single line. Unfortunately there are cases when compiler doesn’t undrstand the code as you would expect. For example following is treated as two statements a and +b: a + b Solution is to…

  • Scala Wonderland: Lists

    In functional style methods should not have side effects. A consequence of this philosophy is that List is immutable in Scala. Construction of a List is simple. val abc = List(“a”, “b”, “c”) There is one trick in the previous code. A common trick in Scala. It invokes method named apply on List companion object.…

  • 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 is the main challenge. The first step is to recognize the difference between functional and imperative programming. Scala has two keywords for variable declaration: var – mutable variables val – immutable variables One sign of…

  • Scala Wonderland #1: 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 the coming series I’d like to share my excitement with you. It won’t be yet another step-by-step tutorial. I’ll share features that made me think (IBM should be proud of me). For whatever reason. val…