- Abrir link de pregunta
- Click en File -> Save Snapshot
- Se recargará la pagina con la misma pregunta, pero con otro link.
- Ese link representará su solución a dicha pregunta, guardalo.
- Repetir escenario para las demás preguntas.
- Al terminar enviar todos los links al correo [email protected]
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
browser | |
.url(`${browser.launch_url}/login`) | |
.waitForElementVisible('body', 1000) | |
.setValue('input[type=email]', '[email protected]') | |
.setValue('input[type=password]', '123456') | |
.submitForm('form') | |
.getTitle(function (title) { | |
browser.assert.equal(title, 'Home Page'); | |
}) | |
.end(); |
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
handler: function (request, reply) { | |
const path = require('path'); | |
const response = reply('success').hold(); | |
const fileExtension = path.extname(request.payload.file.filename); | |
if (fileExtension === '.csv') { |
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
(function () { | |
'use strict'; | |
angular | |
.module('myApp', []) | |
.controller('UserController', UserController); | |
function UserController ($log) { | |
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
{ | |
"name": "[package-name]", | |
"description": "", | |
"main": "src/index.js", | |
"version": "0.0.0-semantic-release", | |
"scripts": { | |
"commit": "git-cz", | |
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0", | |
"coverage": "istanbul cover node_modules/tape/bin/tape -- tape src/**/*.test.js", | |
"dev": "nodemon src/server.js --ignore '*.test.js'", |
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
src/**/*.test.js |
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
<?xml version="1.0"?> | |
<configuration> | |
<system.webServer> | |
<staticContent> | |
<clientCache cacheControlMode="UseExpires" | |
httpExpires="Tue, 19 Jan 2038 03:14:07 GMT" /> | |
</staticContent> | |
<rewrite> | |
<rules> | |
<rule name="HTTP to HTTPS redirect" stopProcessing="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
{ | |
"caret_extra_bottom": 0, | |
"caret_extra_top": 0, | |
"caret_extra_width": 1, | |
"color_scheme": "Packages/Seti_UI/Scheme/Seti.tmTheme", | |
"default_line_ending": "unix", | |
"folder_exclude_patterns": | |
[ | |
".idea", | |
"node_modules", |
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
angular | |
.module('common') | |
.filter('age', ageFilter); | |
function ageFilter () { | |
return function (input, params) { | |
if (input) { |
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 browserSync = require('browser-sync').create(); | |
// Static server | |
gulp.task('default', ['browser-sync']); | |
gulp.task('browser-sync', function() { | |
browserSync.init({ | |
server: { |