{
"age" : $input.json('$.age'),
"first_name": $input.json('$.first_name'),
"last_name": $input.json('$.last_name'),
"identification": $input.json('$.identification')
}
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
| " I AM SORRY TO SAY THAT YouCompleteMe only works with Mac Vim. | |
| " | |
| " i love vim-plug for vim plugings | |
| call plug#begin() | |
| " please install YouCompleteMe using the following instructions: | |
| " https://github.com/ycm-core/YouCompleteMe#installation | |
| Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } | |
| Plug 'preservim/nerdtree' | |
| Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } |
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
| #!/bin/sh | |
| # prints PATH only line per entry | |
| tr ':' '\n' <<< $PATH | |
| # prints PATH in a single line | |
| echo $PATH |
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
| docker-compose up --build | |
| docker-compose run web bash | |
| docker-compose down | |
| bin/rails db:create | |
| bin/rails db:migrate |
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
| import React from 'react' | |
| import ReactDOM from 'react-dom' | |
| class Doc extends React.Component{ | |
| componentDidMount(){ | |
| document.title = "dfsdfsdfsd" | |
| } | |
| render(){ |
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
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "CompareData", | |
| "type": "object", | |
| "properties": { | |
| "age": {"type": "integer"}, | |
| "height": {"type": "integer"}, | |
| "income": {"type": "integer"} | |
| }, | |
| "required": ["age", "height", "income"] |
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
| var xhr = new XMLHttpRequest(); | |
| xhr.open('POST', 'https://some.url.com'); | |
| xhr.onreadystatechange = function(event) { | |
| console.log(event.target.response); | |
| } | |
| xhr.send(); |
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
| rm -rf **/node_modules |