26 Jul 2020
Scala allows defining multiple parameter lists on methods and classes.
More …
17 Jul 2020
A function is called Higher Order Function if it contains other functions as a parameter or returns a function as an output.
More …
15 Jul 2020
A trait provides code reusability in Scala by offering the possibility of mixing it into classes thus allowing code reusability.
More …
10 May 2020
The REST API has been a pillar of API's design for a long time. Recently gRPC has started gaining popularity. It turns out there are some very good reasons for that. To help API developers make sense of which API design style to use and for what situation, let’s look at REST and gRPC.
More …
18 Apr 2020
Lambda architecture is a popular pattern in building Big Data pipelines. It is designed to handle massive quantities of data by taking advantage of both a batch layer (also called cold layer) and a stream-processing layer (also called hot layer).
More …