NeoVim Logo

Get Started with NeoVim

What’s NeoVim? 🇳 It is an open source project, a fork of the modal text editor known as Vim. I prefer to refer to it as modern Vim, because they removed the old features and added new ones. As of this writing, the total number of stars on NeoVim’s repository is 55.6k. This means that programmers love this modal text editor. Installation Guide 📋 Windows (note: windows 8 or later are the only supported versions)...

July 12, 2022 · 3 min · 569 words · Sean Miranda
Cover Image

Linux Shell Commands

Let’s talk about: Most used shell commands Which shell is the most popular among linux enthusiasts? The most widely used shell on Linux is Bourne Again Shell or Bash. Most linux distribution ships with BASH pre-installed. An alternative to Bash, a very popular shell is Z-Shell or ZSH. The Bourne shell command syntax is a superset of Bash command syntax. Since bash 2.05a, among other things, it enables brace expansion, command line completion, basic debugging, and signal handling (using trap)....

June 18, 2022 · 3 min · 586 words · Sean Miranda
Cover Image

Popular Linux Distros

Let’s get started! 🏁 We’ll discuss the popularity of these prominent GNU/linux distributions, as well as their advantages and disadvantages. Let me begin by telling you about how I got started with GNU/linux. I began using Linux in 2017, and like every beginners at the time, I was a complete novice. Every time I had a problem with my installation, it took me a day or sometimes several days to fix it....

June 3, 2022 · 5 min · 975 words · Sean Miranda
Go and Rust

Go vs Rust Generics

Hey, Gophers and Rustaceans! Today, we’ll compare Go and Rust generics. Go and Rust are both statically and strictly typed languages that are also compiled. They’re both gaining popularity, and many new apps are incorporating them. Some Java-based back-end systems are being ported to Go and Rust. Both are actively maintained and developed. As of this writing, the most recent version of Go is 1.18 and Rust is version 1....

May 19, 2022 · 2 min · 343 words · Sean Miranda