$ docker
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
<html> | |
<head> | |
<meta name="mobile-web-app-capable" content="yes" /> | |
<meta name="apple-touch-fullscreen" content="yes" /> | |
<meta name="apple-mobile-web-app-title" content="Expo" /> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="default" /> | |
<link | |
rel="apple-touch-icon" | |
sizes="180x180" |
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
{ | |
"vetur.format.defaultFormatter.js": "vscode-typescript", | |
"vetur.format.defaultFormatter.html": "prettier", | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, | |
// put all of these as false if you didn't start the project | |
"editor.formatOnSave": true, | |
"typescriptHero.imports.insertSemicolons": false, | |
"typescriptHero.imports.organizeOnSave": true, | |
"editor.formatOnPaste": true, | |
// end |
This sheet goes along with this SSH YouTube tutorial
$ ssh [email protected]
$ mkdir test
$ cd test
title | subtitle | author | date | source |
---|---|---|---|---|
Docker Compose Cheatsheet |
Quick reference for Docker Compose commands and config files |
Jon LaBelle |
April 7, 2019 |
git stash list
- Lists all stashes on stack.
git stash push -m "message"
- Stash changes, where "message" is your note for that stash.
git stash apply stash@{0}
- Applies the changes from stash but does not delete from stack.
(from Understanding Nginx Server and Location Block Selection Algorithms - https://goo.gl/YyzshP)
server {
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es2015", | |
"allowSyntheticDefaultImports": true, | |
// why set module property https://github.com/Microsoft/vscode/issues/73118#issuecomment-488252519 | |
"module": "commonjs", | |
"checkJs": true | |
}, | |
"exclude": ["node_modules"] | |
} |