Recent Posts

Day 2: Syntax in Functions

2 minute read

An = sign in Erlang/Elixir is not about assignment but rather is a match operator, the same way it is in Algebra. Pattern matching allows for using different...

Day 1: Starting Out and Modules

5 minute read

With Erlang you can try out the language using the Erlang shell by typing erl, one great thing about the Erlang shell is that it has a built-in line editor ...

60 Days of code: Erlang Edition

1 minute read

I consider myself an advanced beginner in Elixir, being a Rubyist, Elixir was destined to be my next language, like it has been for many other Ruby developer...

Why Typescript

less than 1 minute read

Writing Javascript at scale is not easy, however, Javascript has experienced a lot of improvements over the past decade making it modern, less buggy, predict...

Factory Method

less than 1 minute read

Factory Method is a creational design pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of obj...