Ich habe ein Miniprogramm erstellt, um zu verfolgen, ob die Landgrenzen Aserbaidschans geschlossen sind oder nicht und seit wann sie geschlossen sind.

https://i.redd.it/ilkokmdszs4e1.png

Von kurdechanian

5 Comments

  1. datashrimp29 on

    It is probably the third time you post it here. At this point you could have created a mini game Mario’s Azeri Odyssey: Battle of the Pandemic Gates

    The gates of Azerbaijan aren’t just closed—they’re alive! Fueled by the magic of the Eternal Pomegranate of Protection, the gates have transformed into a giant mechanical beast called Qurusərhədzilla, adorned with golden carvings and guarded by minions wielding the Iron Fist of Covid-19.

    Mario, armed with his trusty Plumber’s Sanitizer Aftafa and the legendary Khachapuri Shield, must embark on a wild journey to collect PCR Power-Ups scattered across the Seven Lands of Quarantine. Each land represents a pandemic obstacle, from the Swamp of Qirmizi Korpu to the Mountain of Yalama and Astara, each filled with quirky Azeri-themed puzzles and enemies.

  2. >function updateCounter() {

    >// 24 March 2020 00:00 in Azerbaijan Time (AZT) is UTC+4

    >const startDate = new Date(‘2020-03-24T00:00:00+04:00’);

    >const now = new Date();

    >const diff = now – startDate;

    >const days = Math.floor(diff / (1000 * 60 * 60 * 24));

    >const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));

    >const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));

    >const seconds = Math.floor((diff % (1000 * 60)) / 1000);

    >document.getElementById(‘days’).textContent = days;

    >document.getElementById(‘hours’).textContent = hours;

    >document.getElementById(‘minutes’).textContent = minutes;

    >document.getElementById(‘seconds’).textContent = seconds;

    >}

    Here is the more mini version:
    `function updateCounter() {`
    `const t = new Date() – new Date(‘2020-03-24T00:00:00+04:00’), u = [864e5, 36e5, 6e4, 1e3];`
    `[‘days’, ‘hours’, ‘minutes’, ‘seconds’].forEach((id, i) =>`
    `document.getElementById(id).textContent = Math.floor(t / u[i]) % (i ? 60 : 1e9)); }`

    But where is the source data URL to fetch to make “AÇIQDIR” instead of BAĞLIDIR?

  3. NuclearWinterMojave on

    is this actively tracking some official resource searching for keywords like “sərhədlər bağlıdır” “sərhədlər açığdır” or is the timer just running until you manually stop as soon as news of borders reopening come out?

Leave A Reply