Skip to content

Instantly share code, notes, and snippets.

@mattkosoy
mattkosoy / ghLabels.js
Last active May 11, 2016 21:13
Labels for Github projects. Use https://www.npmjs.com/package/github-labels to upload.
[
{
"name": "Kind: Bug",
"color": "fc2929"
},
{
"name": "Kind: Discussion",
"color": "006b75"
},
{
@mattkosoy
mattkosoy / gitaliases.zshrc
Last active October 13, 2015 18:24
Git Aliases from @ericboehs
# Hide/Show hidden files in finder
alias showfiles='defaults write com.apple.finder AppleShowAllFiles YES; killAll Finder'
alias hidefiles='defaults write com.apple.finder AppleShowAllFiles NO; killAll Finder'
# GIT ALIASES
# https://raw.githubusercontent.com/brightbit/dotfiles/master/shell/aliases/git.sh
# --------------------------------------------------------------------------------
type compdef >/dev/null 2>&1 && compdef hub=git
type hub >/dev/null 2>&1 && alias git='hub'