Hi, I’m Charlie

… and here you will find a collection of my random thoughts

Use VSCode Remote SSH with gcloud compute ssh

Prerequisites Before we begin, ensure you have the following tools installed: Google Cloud CLI (gcloud) - Essential for managing Google Cloud resources from the command line. VSCode Remote - SSH Extension - This extension allows VSCode to connect to remote machines using SSH. Step-by-Step Instructions Updating SSH Configuration First, we need to update the SSH configuration to include the Google Cloud Compute (GCE) instance. This involves setting a ProxyCommand to facilitate the connection....

January 5, 2024 · Charlie Jones

git-top-committers

Ever been working in some code and wonder who you can ask about it without hopping over to github? This is probably kinda obvious (but wasn’t obvious to me at the time): alias git-top-committers='git shortlog -s -n --' Example: ~/src/nomad(main) ❯ git-top-committers 4353 Alex Dadgar 2321 Michael Schurter 1799 Michael Lange 1731 Mahmood Ali ...

November 14, 2022 · Charlie Jones