Due to the actual microservices server paradigm & server costs corresponding to resource’s consumption, Quarkus is a framework that caught my attention some years ago, as it solves JVM language problems on these concerns. In this article you will find … Read More
Scala
Reasons why Scala language climbs the ranks of popularity
Scala is considered to be a complex, but very efficient and demanded language. And in today’s article, I would like to show you some facts about Scala language popularity, benefits of using it and list down some useful Scala blogs, … Read More
Scala implicits: Presentations
This article is not going to be an in-depth look at the Scala implicits, it will be about what they are. This article is for those who start learning Scala and need a first-look to the implicits as well for … Read More
Scala Generics III: Generalized type constraints
This is the third article in our series of Scala Generics ( we have already looked at upper and lower Scala Type bounds, Covariance and Contravariance) and today we are going to talk about constraints, to be more specific about generalized … Read More
Scala Generics II: Covariance and Contravariance
In the previous article we looked at Scala Type bounds, today we will continue with Scala generics and talk about Covariance and Contravariance in generics. Liskov substitution principle (the L. of S.O.L.I.D.) specifies that, in a relation of inheritance, a type … Read More
F-bound over a generic type in Scala
In this article, I will be mentioning Comonads. If you know what they are, great, and if you don’t know, no worries, because this article’s main topic isn’t Comonads. It’s actually about Scala generics, about F-bound, about returning the “Current” Type … Read More
Scala Generics I: Scala type bounds
Generic types in Scala Generic types, abstract types, scala type bounds, all these concepts are unusual for software developers who are coming from languages in which the generics are not (or barely) used, so in this first article, we will … Read More
Scala world insights at the Scala world conference
Apiumhub’s development team loves to go to tech events where we can speak with Tech gurus and share our experience using lates technologies and languages. We are big fans of Scala and we believe that Scala is a good choice … Read More
Dockerize a multi-module Scala project with SBT
Scala’s popularity has been growing significantly in the past few years as well as Docker. A couple of weeks ago, I found myself in a situation where I had to dockerize with SBT a multi-module Scala project. While it is … Read More