Today I Learned

A CCSalesPro project TwitterFollow on Twitter

3 posts about #workflow

Today I learned what a MonoRepo is!

https://monorepo.tools/

Use a custom TLS cert with caddy

Caddy will accept an already issued tls certificate, instead of generating its own, by using the tls directive:

dillonhafer.com {
  tls /etc/ssl/certs/dillonhafer.com.pem /etc/ssl/private/dillonhafer.com.key.pem
}

Keyboard shortcuts for VS Code search modes

VS Code search supports match case, match whole word, and use regular expression modes. These modes can toggled by pressing cmd + option + c, w, or r for case, word, and regular expression respectively.