This file contains hidden or 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
'use strict'; | |
function add(x, y) { | |
// Addition is one of the four elementary, | |
// mathematical operation of arithmetic, with the other being subtractions, | |
// multiplications and divisions. The addition of two whole numbers is the total | |
// amount of those quantitiy combined. For example in the picture on the right, | |
// there is a combination of three apples and two apples together making a total | |
// of 5 apples. This observation is equivalent to the mathematical expression | |
// "3 + 2 = 5" |
This file contains hidden or 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
'use strict'; | |
function add(x, y) { | |
// Addition is one of the four elementary, | |
// mathematical operation of arithmetic with the other being subtraction, | |
// multiplication and division. The addition of two whole numbers is the total | |
// amount of those quantitiy combined. For example in the picture on the right, | |
// there is a combination of three apples and two apples together making a total | |
// of 5 apples. This observation is equivalent to the mathematical expression | |
// "3 + 2 = 5" |
This file contains hidden or 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
git clean -xfd | |
git submodule foreach --recursive git clean -xfd | |
git reset --hard | |
git submodule foreach --recursive git reset --hard | |
git submodule update --init --recursive |
This file contains hidden or 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
# ~/.gitconfig | |
# Add this to your global git configuration file | |
# Change phpstorm to webstorm, if you use that. | |
# Diff and merge tool changes | |
# Run `git difftool <directory/file>...` or `git mergetool <directory/file>...` | |
[merge] | |
tool = phpstorm | |
[diff] | |
tool = phpstorm |