This file contains 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
// Teste: código fonte disponível em http://github.com/Spagiari/jstest | |
// Avalie as funções abaixo e responda as perguntas. | |
var a; | |
function teste1() { | |
var a = 3; | |
} | |
teste1(); | |
console.log(a === 3); |
This file contains 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
Verifying that +adams_alves is my blockchain ID. https://onename.com/adams_alves |
This file contains 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 ghPages = require('gulp-gh-pages'); | |
gulp.task('deploy', function() { | |
return gulp.src('./dist/**/*') | |
.pipe(ghPages({ | |
remoteUrl: 'https://github.com/youruser/youruser.github.io.git', | |
branch: 'master' | |
})); | |
}); |
This file contains 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 ghPages = require('gulp-gh-pages'); | |
gulp.task('deploy', function() { | |
return gulp.src('./dist/**/*') | |
.pipe(ghPages()); | |
}); |