Skip to content

Instantly share code, notes, and snippets.

class Watchman < Formula
desc "Watch files and take action when they change"
homepage "https://github.com/facebook/watchman"
license "Apache-2.0"
revision 5
head "https://github.com/facebook/watchman.git"
stable do
url "https://github.com/facebook/watchman/archive/v4.9.0.tar.gz"
sha256 "1f6402dc70b1d056fffc3748f2fdcecff730d8843bb6936de395b3443ce05322"
@pdehlke
pdehlke / awssh.sh
Created February 25, 2025 14:36
Use https://www.granted.dev/ to manage aws credentials. awssh and ssh-ssm.sh to run ssh over ssm without a vpn. Instructions are in ssh-ssm.sh
#!/usr/bin/env zsh
set -o pipefail -o errexit
die() {
echo "$1" >&2
exit 1
}
[[ -z ${AWS_PROFILE} ]] && die "[FATAL]: no AWS_PROFILE set. Assume an indentity please."