Skip to content

Instantly share code, notes, and snippets.

View geebru's full-sized avatar

Greg Bruening geebru

  • Washington, DC
  • 18:18 (UTC -04:00)
View GitHub Profile
@ashleymcnamara
ashleymcnamara / gettoknowyou.md
Last active July 10, 2025 10:00
Get to know you survey

TELL ME ABOUT YOURSELF

You can fill this form out on your own or we can do it together, conversation style. If you prefer to have a conversation then please let me know so we can extend our 1:1

  • What are your pronouns?
  • What's your personality type? (example: I'm an ENPF Take the quiz)
  • What motivates you?
  • What keeps you up at night?
  • What's your learning style? (example: I'm an Auditory-ISFP, but keep in mind that people can be between learning styles or identify with more than one. Don't let it define you. It's simply information Take the quiz)
    • Visual (spatial)
  • Aural (auditory)
@davdenic
davdenic / git Delete merged branches.md
Last active April 1, 2021 20:23
git Delete merged branches

Git delete merged branches

LOCALLY

git branch --merged | egrep -v "(master|development)" | xargs -n 1 git branch -d

Dry run

git branch --merged | egrep -v "(master|development)" | xargs -n 1 echo

@manofearth
manofearth / delete-stale-branches.sh
Last active November 14, 2021 02:34
Delete Stale Branches
#!/usr/bin/env bash
while getopts "d" opt; do
case $opt in
d) dryRunOpt="--dry-run";;
esac
done
# prune local "cache" of remote branches first:
git fetch --prune origin
# delete merged to master branches: