You May Also Enjoy
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...
Compile vs Runtime Evaluation in Elixir
less than 1 minute read
Elixir despite being a compiled language, it somehow behaves like an interpreted language. For instance Usually you would not put an Application.get_env or S...
Different ways to call a method in Ruby
less than 1 minute read
Ruby has many ways of doing the same thing, for instance when you have an array to get its size you could either use one of the following methods: Array.size...
Vim: Notes and Cheats
1 minute read
So according to my good friend Wikipedia Vim is a clone, with additions, of Bill Joy’s vi text editor program for Unix. Vim’s author, Bram Moolenaar, based i...