Skip to content

Instantly share code, notes, and snippets.

View Johngeorgesample's full-sized avatar

John-George Sample Johngeorgesample

View GitHub Profile
@Johngeorgesample
Johngeorgesample / gh-pr-md.sh
Last active April 24, 2026 15:25
Generate PR links for Slack
#!/usr/bin/env bash
# Usage: ./gh-pr-md.sh https://github.com/owner/repo/pull/123
set -euo pipefail
if [[ $# -ne 1 ]]; then
echo "Usage: $0 https://github.com/<owner>/<repo>/pull/<number>" >&2
exit 1
fi
url="$1"
@Johngeorgesample
Johngeorgesample / fontawesome.coffee
Created March 19, 2019 13:31
FontAwesome CDN Ubersicht widget
refreshFrequency: false
render: () ->
return '''
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
'''