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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Mejor página de la historia</title> | |
</head> | |
<body> | |
<h1>Bienvenidos a la mejor página de la historia</h1> |
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
const readline = require('readline'); | |
const rl = readline.createInterface({ | |
input: process.stdin, | |
output: process.stdout | |
}); | |
rl.question('¿Cuál es tu edad?', (answer) => { | |
let edad = parseInt(answer); |
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
const readline = require('readline'); | |
const rl = readline.createInterface({ | |
input: process.stdin, | |
output: process.stdout | |
}); | |
rl.question('¿Cuál es tu club favorito?', (answer) => { | |
// var abc = parseInt(variableString) | |
if (answer == 'Real Madrid') { |
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
const readline = require('readline'); | |
function miFuncion(par1, par2) { | |
return par1 + par2; | |
} | |
let mivar = 1; | |
let secvar = 'Hola'; | |
let miFun = function(num, num2) { | |
return num + num2; |
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
sysctl machdep.cpu.brand_string |
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
hsh = { | |
guid: { | |
'func_dict':{}, | |
'pipelilist':[] | |
}, | |
guid2: { | |
} | |
} |
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 requirejs = require('requirejs'); | |
require.undef = function() {return true;} | |
requirejs.config({ | |
baseUrl: __dirname + '/../dl_extensions/static/notebook', | |
nodeRequire: require, | |
paths: { | |
"helpers": "../helpers", | |
"nbextensions/dl_extensions": "..", |
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
{ | |
"rules": { | |
"semi": ["error", "always"], | |
"quotes": ["error", "single", {"avoidEscape": true, "allowTemplateLiterals": true}], | |
"jsx-quotes": ["error", "prefer-double"], | |
"no-cond-assign": "error", | |
"no-console": ["warn", { "allow": ["warn", "error"] }], | |
"no-constant-condition": "error", | |
"no-dupe-args": "error", | |
"no-dupe-keys": "error", |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<link rel="stylesheet" href="epk.css"> | |
</head> | |
<body> |
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.row div { | |
display: inline-block; | |
margin: 0; | |
padding: 0; | |
} | |
div.row div.error-message { | |
display: block; | |
border: red solid 2px; | |
background: red; | |
} |
NewerOlder