ich🖍️iel

65 points · 8 comments · view on lemmy.world

8 Comments

nichtburningturtle@feddit.org · 18 pts · 2y

Kriminelle Energie!!!

instantnudel@feddit.org · 16 pts · 2y (2 replies)

ach wegen dir sind alle server down. Du hast es kapput gemacht

TaionTheTram@feddit.org · 8 pts · 2y (1 reply)

Die Macht war einfach zu groß, nicht mehr zu kontrollieren

EunieIsTheBus@feddit.de · 3 pts · 2y

Mit großer Macht kommt große Verantwortung

Hubi@feddit.org · 8 pts · 2y

aaaaaaaaargh@feddit.org · 6 pts · 2y (1 reply)

Massive Manipulation!

connaisseur@feddit.org · 3 pts · 2y

Seehofer startet den Gehäck-Zurück

bleistift2@sopuli.xyz · 2 pts · 2y

Ich frage mich echt, wie man diesen Cooldown so verkacken kann.

const MAX_QUOTA = 6
const COOLDOWN_PERIOD_MS = 30000
let quota = 0
let interval = null

function regrow() {
  if (quota >= MAX_QUOTA) {
    clearInterval(interval)
    interval = null
    return
  }
  quota++
}

function onClick() {
  if (quota <= 0) { return }

  fetch(/**/)
    .then((res) => {
      if (!res.ok) { return Promise.reject(res) }
      quota--
      if (!interval) {
        regrow()
      }
    })
}

interval = setInterval(regrow, COOLDOWN_PERIOD_MS)