404

The requested page could not be found.

Deploying a Hugo blog to Cloudflare using Terraform

Deploying a Hugo blog to Cloudflare using Terraform

Today I decided I would like to move my blog to Cloudflare Pages. I didn’t want to go …

Insert text before a line into multiple files

Insert text before a line into multiple files

The stream editor sed inserts text before a specified pattern. sed -i '/pattern/i\inserted …

How to `go get` private repos using SSH key auth instead of password auth

How to `go get` private repos using SSH key auth instead of password auth

git config --global url."[email protected]:".insteadOf "https://github.com/" 1 …