Github

01JAN25 - Hugo Site Plans

Hello, this is the beginning of my (somewhat) daily blog. The intention of this blog is less of an exercise in writing about my life and more of a exercise in making a habit of documentation. I plan to write daily about lessons I learned about computers that day and I’m sure there will be a non-computer related blog or two. When I implement tagging and search, I will make sure that things are tagged appropriately. Now let’s get into the first blog post:

Read more >

Pull public keys from Github url

If you ever want a simple way to pull your public keys from Github so that you can use your safely stored ssh private keys where you need them.

curl https://github.com/[USERNAME].keys

This command will put it in your authorized_keys file which will actually allow you to use them in ssh.

curl https://github.com/[USERNAME].keys | tee -a ~/.ssh/authorized_keys