Return the most frequently used terminal commands · In the previous post we saw how zsh has a nice inbuilt function zsh_stats to get a summarized list of...
Today I learned that my favorite terminal zsh combined with oh-my-zsh includes an inbuilt command that I can use to check my most used terminal...
TIL that I have been doing this completely wrong. I have been using this custom implementation: defmodule MyModule do use GenServer def...
If you find yourself in a situation where you might need to install an older Ruby version on a newer Mac (M1 and newer) you are likely to run into a...
rspec is an amazing testing tool for Ruby and Rails apps. I have used it in most of the projects I’ve worked on for a long time. Despite this, I am...
You can have multiple Rails versions installed at the same time. To install the rails version you need: gem install rails --version=5.2.8 How to...