This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function show_patch() { | |
git show $(head -1 .git/rebase-apply/${1} | awk '{ print $2 }') | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First argument is the directory containing the filenames you wish to match against for | |
# Second argument is the directory you wish to search within | |
# e.g. matching_filenames public/images public/less | |
# will match against all filenames (recursively) in public/images by searching the public/less directory | |
# Tested on OS X | |
# Dependency: Ack | |
function matching_filenames() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See here for how to create your Puppet 4 repo | |
# https://github.com/puppetlabs/r10k/blob/master/doc/dynamic-environments/quickstart.mkd#configure-puppet-code-repository | |
wget http://apt.puppetlabs.com/puppetlabs-release-pc1-xenial.deb | |
sudo dpkg -i puppetlabs-release-pc1-xenial.deb | |
sudo apt-get update && sudo apt-get install puppet-agent | |
cd /etc/puppetlabs/code/environments/production && sudo rm -rf * | |
git clone <your-repo> . | |
sudo /opt/puppetlabs/puppet/bin/gem install r10k", | |
sudo /opt/puppetlabs/puppet/bin/r10k puppetfile install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Action, ActionCreator, Dispatch} from 'redux'; | |
import {ThunkAction} from 'redux-thunk'; | |
// Redux action | |
const reduxAction: ActionCreator<Action> = (text: string) => { | |
return { | |
type: SET_TEXT, | |
text | |
}; | |
}; |