Recent Posts

Learning OCaml: Numerical Type Conversions

2 minute read

Today I’m going to cover a very basic topic - conversions between OCaml’s primary numeric types int and float. I guess most of you are wondering if such a ba...

zoxide: tips and tricks

1 minute read

zoxide is a smart and fast alternative to cd that learns your directory usage patterns and allows you to jump to directories quickly. It’s one of my favorite...

How to Vim: Proper Ways to Escape

3 minute read

ESC (Escape) is one of the most central key in the world of Vim. It takes you from Insert mode to Normal mode and it also serves to interrupt operations in p...

How to Vim: Reloading File Buffers

1 minute read

In Vim (and many other editors) we interact with the contents of files via the “file buffer” abstraction. Basically, that’s the in-memory representation of a...