The Manual

Enable ECR Vulnerability Image scanning

AWS User Guide Image scanning [https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-scanning.html] Simple script to enable for all of our ECR repos for repo in `aws ecr describe-repositories |jq -r '.repositories[].repositoryName'`; do aws --profile=sumo ecr put-image-scanning-configuration \ --repository-name $repo \ --image-scanning-configuration scanOnPush=true done

Mac startup key combinations

Referenced from: https://support.apple.com/en-us/HT201255 To use any of these key combinations, press and hold the keys immediately after pressing the power button to turn on your Mac [https://support.apple.com/kb/HT201150], or after your Mac begins to restart. Keep holding until the described behavior

Generate Sensu Go Packages from internal Ruby Gems

Sensu-Go requires vastly different packaging for plugins than classic Sensu, and the docs are a bit sparse. Additionally, it seems the Sensu-Go team wants you to use Travis CI,  as most of their process appears to depend on this tool. While I have no issue with Travis CI, I wanted

Postgres Long-Running Processes

Identify long-running Postgres processes.

Postgres, find missing indexes.

SELECT relname, seq_scan-idx_scan AS too_much_seq, CASE WHEN seq_scan-idx_scan>0 THEN 'Missing Index?' ELSE 'OK' END, pg_relation_size(relname::regclass) AS rel_size, seq_scan, idx_scan FROM pg_stat_all_tables WHERE schemaname='public' AND pg_

The Manual © 2026