Build your own framework on RUBY! · Let's Start Rebuilding rails Why Rebuild Rails? Knowing the deepest level of any software lets us master that...
Series for software practice with dotnet, blazor app and angular · During my ongoing studies, I have observed that some of my colleagues are encountering...
Today I am writing about ways to use Pry. Pry is IRB with incredible advantages. It let us research or investigate on the objects and classes we use....
Simply in Ruby or any other language, Strings is a sequence of one or more characters. It can consist of numbers, letters, or symbols. Let's learn to...
We use exceptions to handle unexpected failures inside a program. Exceptions are in the form of a program crash with an error message. In Ruby,...
Safe Navigation Operator (&.) &., is called "safe navigation operator", as it allows to skip method call when the receiver is nil. It returns nil and...