Skip to content

Instantly share code, notes, and snippets.

View whazzmaster's full-sized avatar
:shipit:
Re-architect the world

Zachery Moneypenny whazzmaster

:shipit:
Re-architect the world
View GitHub Profile
@whazzmaster
whazzmaster / create_labels.sh
Last active January 8, 2016 20:52 — forked from omegahm/create_labels.sh
Create Gtihub labels from Bash
#!/usr/bin/env bash
# Colours picked from https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/
###
# Label definitions
###
declare -A LABELS
# Platform
@whazzmaster
whazzmaster / fuz.sh
Created December 7, 2017 16:11 — forked from BaseCase/fuz.sh
#!/usr/bin/env bash
set -e
main() {
previous_file="$1"
file_to_edit=`select_file $previous_file`
if [ -n "$file_to_edit" ] ; then
"$EDITOR" "$file_to_edit"
main "$file_to_edit"