I hereby claim:
- I am maxbeizer on github.
- I am maxbeizer (https://keybase.io/maxbeizer) on keybase.
- I have a public key whose fingerprint is C54A FB0B 4993 7880 C7E7 3DF6 B3D1 5962 3F1D 82C7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/osascript | |
on run args | |
display notification (item 2 of args) with title (item 1 of args) | |
end |
For the date and time in UTC:
date -u
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
usage() { | |
cat <<EOF | |
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
interface IValue<T> { | |
type: 'value' | |
value: T | |
} | |
interface IError<E extends Error> { | |
type: 'error' | |
error: E | |
} |
# Set OCTOKIT_ACCESS_TOKEN to authenticate with a PAT | |
# Something like OCTOKIT_ACCESS_TOKEN=<<TOKEN>> bundle exec ruby create-org-montage-script.rb | |
require "octokit" | |
Octokit.auto_paginate = true | |
# Replace <<ORG_NAME>> with your GitHub org | |
members = Octokit.org_members "<<ORG_NAME>>" |