How to migrate to neovim from vim.
Author Archives: Otavio Valadares
Logic Programming
When talking about programming we have a lot of paradigms of programming languages and logic is one of them, but unfortunately isn’t very popular, to be sincere Prolog is most used by academia.
Pointers, a brief view
A simple and practical way all the theory behind C pointers
Yet, another post about tell don’t ask
Tell, don’t ask is a useful key concept when talking about object-oriented programming, it consists in send messages to object (whenever possible) telling object what you want and that we shouldn’t ask questions to it about its state and make decisions for him, it bypass encapsulation.
Demystifying Linked Lists / Complete tutorial/implementation with TDD
Let’s code a linked list in Ruby with TDD.