Author: Prashant Trivedi

Docker-Why Developers Love Docker? Just Have A Look!

Reading Time: 5 minutes It is basically a tool which enables developers to create,deploy and to run any application easily as light-weight container ,which could run virtually anywhere.The main purpose of Docker is to easily develop applications. It further ship them into containers so that they can then be deployed anywhere. This feature is very helpful to developers. And most importantly it is an open source. This means that anyone can contribute Continue Reading

Scala- A Simple tour.

Reading Time: 3 minutes What Is Scala? Scala is a multi purpose programming language , which provides support for both Object Oriented and Functional Programming. It express common programming patterns in a concise, elegant, and type-safe manner. It was Designed in the year 2003 by  Mr. Martin Odersky and his research team. The most fascinating thing about scala is that , Scala executable code runs over JVM so to Continue Reading

Pattern Matching – Have A Look In Scala!

Reading Time: 5 minutes What Is Pattern Matching? When we talk about pattern matching , first thing that comes in our mind is a string matching or regular expression , but when it comes to functional programming this terminology takes a new meaning, which means that instead of string matching or regular expression matching , the functional programming is going to look into matching objects against other objects. Scala Continue Reading