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
| drop table versao; | |
| drop table modelo; | |
| drop table marca; | |
| drop sequence seq_id_marca; | |
| create table marca ( | |
| id_marca number(7) constraint pk_marca primary key, | |
| nome_marca varchar2(120) not null unique, | |
| ativo char(1) not null, | |
| constraint marca_ativo check(ativo in('S', 's', 'N', 'n')) |
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 push -u origin newLocalBranch |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure("2") do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |
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
| RUBY_VERSION="2.4.0" | |
| RAILS_VERSION="5.0.2" | |
| MYSQL_PASSWORD="123456" | |
| GIT_USER_NAME="wellingtongeek" | |
| GIT_USER_EMAIL="wellingtongeek@gmail.com" | |
| NODE_VERSION="6" | |
| echo |
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 gulp = require("gulp"); | |
| var sass = require("gulp-sass"); | |
| gulp.task("compilar-css", function(){ | |
| return gulp.src("./source/sass/*.scss") | |
| .pipe(sass()) | |
| .pipe(gulp.dest("./dist/css")); | |
| }); | |
| gulp.task('mova', function(){ |
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
| deb http://kali.cs.nctu.edu.tw/ /kali main contrib non-free | |
| deb http://kali.cs.nctu.edu.tw/ /wheezy main contrib non-free | |
| deb http://kali.cs.nctu.edu.tw/kali kali-dev main contrib non-free | |
| deb http://kali.cs.nctu.edu.tw/kali kali-dev main/debian-installer | |
| deb-src http://kali.cs.nctu.edu.tw/kali kali-dev main contrib non-free | |
| deb http://kali.cs.nctu.edu.tw/kali kali main contrib non-free | |
| deb http://kali.cs.nctu.edu.tw/kali kali main/debian-installer | |
| deb-src http://kali.cs.nctu.edu.tw/kali kali main contrib non-free | |
| deb http://kali.cs.nctu.edu.tw/kali-security kali/updates main contrib non-free | |
| deb-src http://kali.cs.nctu.edu.tw/kali-security kali/updates main contrib non-free |
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": "es5", | |
| "module": "commonjs", | |
| "sourceMap": true | |
| } | |
| } |
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
| { | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/*.js": { | |
| "when": "$(basename).ts" | |
| }, |
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
| { | |
| "version": "0.1.0", | |
| "command": "tsc", | |
| "isShellCommand": true, | |
| "args": ["-p", "."], | |
| "showOutput": "always", | |
| "problemMatcher": "$tsc" | |
| } |
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
| sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
| echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list | |
| sudo apt-get update | |
| apt-cache policy docker-engine | |
| sudo apt-get install -y docker-engine |