brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
/** | |
* triggers a callback when an element gets into the viewport | |
* uses a little bit of jQuery. elements auto receive the class `inview` | |
* | |
* the threshold parameter is on scale from 0 to 1 of the height. | |
* 0 means it triggers directly, 1 means it must be full visible | |
* | |
* @example | |
* // images needs to be 50% in view | |
* inview.register("img", .5, function(item, inview_state) { |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
# delete local tag '12345' | |
git tag -d 12345 | |
# delete remote tag '12345' (eg, GitHub version too) | |
git push origin :refs/tags/12345 | |
# alternative approach | |
git push --delete origin tagName | |
git tag -d tagName |
#!/bin/sh | |
# | |
# Instructions: | |
# | |
# First, create the directory where you want to install WordPress. | |
# | |
# Then, `cd` into this newly created directory | |
# | |
# `wpsetup` and watch magic unfold before you. |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
/* | |
* This work is free. You can redistribute it and/or modify it under the | |
* terms of the Do What The Fuck You Want To Public License, Version 2, | |
* as published by Sam Hocevar. See the COPYING file for more details. | |
*/ | |
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { |