101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

500
active users

#fff

1 post1 participant1 post today

Bin auf der streng geheimen #FFF-Demo in #Reutlingen und…. es ist wirklich niemand zu sehen. Die müssen das abgesagt haben?! Kam zwar 8 min zu spät, aber sollte nichts ausmachen.
Latsche jetzt die übliche Strecke und hätte längst auf die Demo stoßen müssen.

#FunFactFriday: By copying the fractal patterns of leaf skeletons, researchers are able to improve the efficiency and performance of flexible electronic devices such as wearable sensors. Do you enjoy seeing biomimetics in action? News Source: techxplore.com/news/2025-03-ha

Tech Xplore · Harnessing nature's fractals for flexible electronics: Biomimetic fabrication technique uses leaf skeletons as templatesBy University of Turku
Replied in thread

@Zergling_man @Yoruka @sally You can do away with most of JS with just CSS counters and animations:

<div id="nojs" class="hidden">
  <p>Or wait <n id="tick"></n> seconds...</p>
</div>
<style type="text/css">
@property --tick { syntax: "<integer>"; initial-value: 0; inherits: false; }
@keyframes tick { from { --tick: 3; } }
@keyframes hide { from { width: 100%; height: 100%; } }

.hidden {
  display: none;
}

.nojs {
  display: block;
  position: absolute;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  right: 100%;
  bottom: 100%;
  width: 0;
  height: 0;
  overflow: hidden;
  animation: hide 3s steps(1, end);
  background: #fff;
}

#tick {
  animation: tick 3s steps(3);
  counter-reset: tick var(--tick);
}

#tick::after {
  content: counter(tick);
}
</style>

then the only JS line you need:

document.getElementById("nojs").className = "nojs"
eientei.orgMayoi no chikurin