Legend:
- ✏️ method changes
this
. - 🔒 method does not change
this
.
Array<T>.prototype.*
:
concat(...items: Array): T[]
🔒 ES3
function fish_prompt | |
test $SSH_TTY | |
and printf (set_color red)$USER(set_color brwhite)'@'(set_color yellow)(prompt_hostname)' ' | |
test "$USER" = 'root' | |
and echo (set_color red)"#" | |
# Main | |
echo -n (set_color red)'λ' (set_color cyan)(prompt_pwd) (set_color green)'❯'(set_color yellow)'❯'(set_color red)'❯ ' | |
end |
# editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
In addition to the charts that follow, you might want to consider the Frequently Asked Questions section for a selection of common questions about MongoDB.
The following table presents the MySQL/Oracle executables and the corresponding MongoDB executables.
<input type="checkbox" | |
id="checked" | |
class="cbx hidden" | |
ng-model="vm.selectedWidget.Settings.ShowLegend" | |
ng-change="vm.legendVBalueChanged(value)"> | |
<label for="checked" class="lbl"></label> |
<head> | |
</head> | |
<body> | |
<button>Click!</button> | |
<script> | |
function startGame() { | |
let counter = 0; | |
document.querySelector('button').addEventListener('click', () => { | |
++counter; |
First we'll update your local master branch. Go to your local project and check out the branch you want to merge into (your local master branch)
$ git checkout master
Fetch the remote, bringing the branches and their commits from the remote repository. You can use the -p, --prune option to delete any remote-tracking references that no longer exist in the remote. Commits to master will be stored in a local branch, remotes/origin/master
alias jsS="live-server --port=9000" | |
alias bs='browser-sync start --server --directory --files "**"' | |
function jsonS() { | |
if [ $1 ]; then | |
json-server --watch $1 | |
else | |
json-server --watch db.json | |
fi | |
} |