Skip to content

Instantly share code, notes, and snippets.

@kreig303
kreig303 / .gitconfig
Created May 21, 2019 15:14 — forked from Kovrinic/.gitconfig
git global url insteadOf setup
# one or the other, NOT both
[url "https://github"]
insteadOf = git://github
# or
[url "git@github.com:"]
insteadOf = git://github
@kreig303
kreig303 / .*sh_aliases
Last active May 11, 2020 16:09
.*sh_aliases
##
# FINDER SPECIFIC
##
alias show-files='defaults write com.apple.finder AppleShowAllFiles YES;
killall Finder /System/Library/CoreServices/Finder.app' # show hidden files in Finder
alias hide-files='defaults write com.apple.finder AppleShowAllFiles NO;
killall Finder /System/Library/CoreServices/Finder.app' # hide hidden files in Finder
##
# SHELL SPECIFIC
##
$ license-checker --exclude 'MIT, MIT OR X11, BSD, ISC, BSD-3-Clause, Unlicense, Apache-2.0, CC-BY-3.0'

10/31/2016

State of the Framework - hapi.js

react-text: 46 The hapi framework ecosystem has been pretty quiet lately. With all the community changes around other frameworks (express, restify) and the lack of splashy new hapi releases, I've been asked about the longevity and direction of hapi. This conversation will address these questions as well as answer any roadmap related questions you might have. /react-text react-text: 47 /react-text react-text: 48 I will also discuss how the framework is being maintained post-Walmart, what kind of contributions are needed, and look into the future as people and companies still rely on the framework for their critical infrastructure. /react-text

@kreig303
kreig303 / git-fu.md
Last active June 21, 2019 15:09
GIT FU

REMOVE LAST COMMIT

$ git reset HEAD~1
$ git push origin +HEAD

FIX REMOTE BRANCH AFTER PUSH