Import your old ssh keys to new system.

  1. Place it in the right place
cp /path/to/my/key/id_rsa ~/.ssh/id_rsa
cp /path/to/my/key/id_rsa.pub ~/.ssh/id_rsa.pub
Read more…

fix glib.h error while installing surf

sudo pacman -S gst-plugins-base-libs gst-libav gst-plugins-base gst-plugins-good
sudo pacman -S webkit2gtk

create new runit service

Create a directory with run file

sudo mkdir /etc/runit/sv/servdir
sudo nvim /etc/runit/sv/servdir/run
Read more…

Fix wsl network unreachable

  1. Move to version 1 on wsl
wsl --set-version 1
  1. Set correct gateway using this article

make directory and switch in to it in same command

The command is

mkdir longtitleproject && cd $_

In bash, the $_ variable is the last argument given to the previous command. In this case, the name of the directory you just created.