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
javascript: if(location.href.indexOf('clarin') > -1) { $("#colorbox").remove(); $("#cboxOverlay").remove(); } else { document.getElementsByClassName('modal-scrollable')[0].remove(); document.body.classList.remove('modal-open'); } |
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
javascript: if(location.href.indexOf('clarin') > -1) { $("#colorbox").remove(); $("#cboxOverlay").remove(); } else { document.getElementsByClassName('modal-scrollable')[0].remove(); document.body.classList.remove('modal-open'); } |
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
javascript: if(location.href.indexOf('clarin') > -1) { $("html").removeAttr('style'); $("#colorbox").remove(); $("#cboxOverlay").remove(); $('.mainPage').fadeTo(1); $('.mfp-wrap').remove(); $('.mfp-container').remove(); $('.mfp-bg').remove(); $('.lock').fadeTo(1).css('opacity', '1').removeClass('lock');} else { document.getElementsByClassName('modal-scrollable')[0].remove(); document.body.classList.remove('modal-open'); } |
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
styles = '.btn-navigation { position: absolute !important; z-index:999 !important; right: 50px !important; background-color: greenyellow !important; bottom: -610px !important; } .ui-orientation-warning { display: none !important; } .with-fifa-header .view-root { height: 100%25 !important; } #FIFAHeader { display: none; }'; | |
newSS = document.createElement('style'); | |
newSS.innerText = styles; | |
document.documentElement.childNodes[0].appendChild(newSS); | |
var dme = function(t) { | |
var e = document.createEvent("MouseEvents"); | |
e.initEvent.apply(e, Array.prototype.slice.call(arguments, 1)); | |
t.dispatchEvent(e); | |
}; |
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
async Task Main() | |
{ | |
if(!System.IO.Directory.Exists(_destinationFolder)) | |
{ | |
Directory.CreateDirectory(_destinationFolder); | |
} | |
foreach(var url in _urls) | |
{ | |
await DownloadAsync(url); |
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
class Persona { | |
constructor(nombre, edad, hobbies, amigos){ | |
this.nombre = nombre; | |
this.edad = edad; | |
this.hobbies = hobbies || []; | |
this.amigos = amigos || []; | |
} | |
addFriend(nombre, edad){ |
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 axios = require("axios"); | |
const parser = require("node-html-parser") | |
const notifier = require('node-notifier'); | |
const urls = [ | |
"https://www.zonakids.com/productos/pack-promo-1-album-tapa-dura-100-sobres-de-figuritas-fifa-world-cup-qatar-2022/", | |
"https://www.zonakids.com/productos/pack-promo-1-album-50-sobres-de-figuritas-fifa-world-cup-qatar-2022/", | |
"https://www.zonakids.com/productos/pack-promo-1-album-100-sobres-de-figuritas-fifa-world-cup-qatar-2022/" | |
]; |