Recent Posts

Scala 101 - Scoping

2 minute read

This is a part of my Scala tutorial . Read the first part & second part for a more general Scala intro. You can read here for an overview of how to write...

Scala 101 - Named & Default parameters

1 minute read

Another syntax sugar provided in Scala are the default values for parameters , and the named parameters. Its fairly stright forwards , so We’ll just start wi...

Scala 101 - OOP : Getters & Setters

2 minute read

This is a part of my Scala tutorial . Read the first part & second part for a more general Scala intro. You can read here for an overview of how to write...

Scala 101– Basic OOP : Writing a class

4 minute read

This is part 3 of my Scala tutorial – read the first part and the second part for a more general Scala intro. All the examples you see here were ran via the ...

Maven - Creating an executable jar

less than 1 minute read

I wanted to create an executable jar in maven , s.t whenever I run”mvn install” , it will generate both the regular one and the executable one.