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
window.onload = function() { | |
document.addEventListener('click', function(event) { | |
console.log('Clickeaste en el elemento: ', event.target, event.selector); | |
event.preventDefault(); // Para detener la propagación del clic | |
}); | |
} |
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
[warning] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur? |
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
[warning] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur? | |
[info] Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo |
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
const data = { | |
customer_info: { | |
identification_number: "39172077", | |
name: "Agustin Quetto", | |
surname: ".", | |
email: "[email protected]", | |
telephone_number: "+541111111111", | |
gender: "M", | |
}, | |
fingerprint: |
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
const data = { | |
customer_info: { | |
identification_number: "39172077", | |
name: "Agustin Quetto", | |
surname: ".", | |
email: "[email protected]", | |
telephone_number: "+541111111111", | |
gender: "M", | |
}, | |
fingerprint: |
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
{ | |
name: { type: String, required: true }, | |
files: { | |
main: String, | |
images: { | |
preview: String, | |
ar: String, | |
fullscreen: String, | |
}, | |
enviroment: [String], |
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
13/06/2020 | |
- Mejoras de UX. | |
- Atajos en inicio | |
- Redirección al perfil una vez guardada la configuración | |
11/06/2020 | |
- Versión: Recruiters y Empleos | |
- Despegues: mejora la posición de un perfil regulado por la comunidad | |
- Publicaciones: escribir y realizar aportes |
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
//getConfig order: env param, production, develop, local. All are based on NODE_ENV | |
//getConfig priorities: env param > production > develop > local | |
const self = {}; | |
const env = process.env | |
self.version = "1.0"; | |
self.port = getConfig(env.PORT, 3000); |
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
<!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> | |
</head> | |
<body> | |
<input id="sel1" /> |
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
setInterval(() => { | |
let lookingForCaseSensitive = | |
["CTO", "CEO", "Co-Founder", "Co-Founder", "Technical Leader", "Tech Leader", "RH", "RRHH", "Software"]; //case sensitive | |
let lookingFor = | |
["Co-Founder", "Technical Leader", "Tech Leader", "RH", "RRHH", "Software"]; //no case sensitive | |
if (location.href === "https://www.linkedin.com/mynetwork/") { | |
lookingFor = lookingFor.map(l => {return l}) | |
let lookingForUp = lookingFor.map(l => {return l.toUpperCase()}) | |
let lookingForDown = lookingFor.map(l => {return l.toLowerCase()}) |
NewerOlder