Skip to content

Blog

Inserting Python Command’s Output in VIM

1) r! :r! python test.py Let’s say test.py is a file with print(123) inside it. This will run the existing file with Python. It will enter the output in Vim.
Read More

Fixing Pacman Errors When Updating Arch Linux After A While

There is a specific error you might get when updating/upgrading the Arch Linux OS after a long break (or sometimes even after a short break if you’re unlucky with the
Read More

Recursive Grep

In this bash tutorial we will check out recursive grep usage examples and how it can be extremely beneficial in some use cases. Table of Contents Basics of grep -R
Read More

Launching desktop environments with startx

You can have total control over launching your operating system’s graphic server in Linux. Most desktop environments use a graphic server called either X (or Xorg) or Wayland. X is
Read More