SSH into VM!

I made another video!This video is a two-fer: A little about Hyper-V in the beginning and then more about setting up CachyOS to accept SSH connections.#CachyOS #archlinux #kde

KDE Plasma 6

The option formerly known as “Hide Window Border” I’m adding my favorite shortcuts and today I learned that the “Hide Window Border” shortcut found in System Settings under is now renamed and can be found as “Toggle Window Titlebar and Frame”

Cachy OS!

Trying it for the first time KDE Plasma 6 is now available but not for Kubuntu which is my daily driver distro. I recently learned that the Arch Linux based Cachy OS has KDE Plasma 6 and as an Arch Linux enjoyer, I’m going to give it a try. While I am able to install… Continue reading Cachy OS!

Update your Git!

I saw a toot from Michael Kennedy, host of @talkpython sharing a post from the github.blog announcing a Git security vulnerability. Here’s how to update Git on Windows 10 and Ubuntu ►

Adventures in Git learning

I learned 3 Git related things yesterday– how to add a second ssh key on my machine¹– there are three git configuration levels²– if you have more than one ssh key, how to specify which one to use with your repo³ https://dev.to/imm9o/add-multiple-ssh-keys-in-one-machine-29hk https://www.atlassian.com/git/tutorials/setting-up-a-repository/git-config https://superuser.com/a/912281

Published
Categorized as Git Tagged

Adding a Keyboard Shortcut to VIM

The below example will show you how to use Ctrl + k as a keyboard shortcut to execute the following key sequence when you are in insert mode : <esc>:wq<Enter> Example open ~/.vimrc file go to the bottom of the file add the following lineinoremap <C-k> <esc>:wq<Enter> save and close file exit and restart terminal