Articles
The downsides of using Vim
Vim is my favorite text editor, but it is not perfect. Some of its flaws include: Endless hours of customization and the reliance on plugins.
Reflecting on a decade of Vim
Recently I realized that I have been using Vim for over 10 years. This is how I got started, how I learned to use it and how it has become my preferred text editor
Change arrays by copy with ES2023
ES2023 introduces 4 new non-mutating array methods, that help prevent unintentional changes of the original array: toReversed, toSorted, toSpliced and with
Manage uncommitted changes with Git Stash
Git stash is a very useful tool to temporary store uncommitted changes when we need to switch branches or pull changes from remote. Improve your Git workflow by using the commands and flags shown in this article.