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
| { | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "chrome", | |
| "request": "launch", | |
| "name": "client: chrome", | |
| "url": "http://localhost:3333", | |
| "webRoot": "${workspaceFolder}" |
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
| alias 'al?'="nano ~/.zshrc" | |
| alias sshdial="ssh -i ~/.ssh/devel root@devel.dialhost.com.br" | |
| alias sshdev2="ssh -i ~/.ssh/id_rsa develdi0@devel.dialhost.com.br" | |
| alias sshstaging="ssh -i ~/.ssh/devel root@38.143.68.239" | |
| alias mongodb="sudo mongod --dbpath ~/data/db" | |
| alias gball='git checkout develop && git branch | grep -v '\''develop'\'' | xargs git branch -D' | |
| alias gfgp="git fetch && git pull" | |
| fuction aliass() { |
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
| <div> | |
| <input :inputProps> | |
| </div> |
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
| <template> | |
| <div class="form-group input-text" :class="{'has-error':(hasError())}" > | |
| <input | |
| v-if="hasMask" | |
| v-mask="mask" | |
| :data-vv-validate-on="validation.on" | |
| :id="id" | |
| :name="id" | |
| :type="type" |
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
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.6/umd/popper.min.js"></script> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script> | |
| <title>My portifolio</title> | |
| </head> |