Switch remote HTTPS to SSH in Git
Quick snippet to switch a Git remote URL from HTTPS to SSH for easier authentication with SSH keys.
Limited availability — accepting new projects starting October 2026.
Quickly convert a PNG image to the modern WebP format using the cwebp CLI tool. This command sets the output quality to 80%, striking a good balance between file size and visual clarity—perfect for optimizing images for the web.
cwebp -q 80 image.png -o image.webp
Quick snippet to switch a Git remote URL from HTTPS to SSH for easier authentication with SSH keys.
When working with feature branches, it’s easy for your local repository to accumulate branches that were already deleted on the remote. This snippet safely removes all local branches whose…
If brew services start httpd succeeds but brew services list shows an error with root as the user, you likely have a leftover system LaunchDaemon from a previous sudo brew services invocation…