Daily Shaarli
Today - July 23, 2025

Apprends le Python en t'amusant avec Execubot !
Execubot Edu est une plateforme éducative interactive qui permet d'apprendre la programmation de façon ludique et progressive.
Les utilisateurs y exécutent des instructions pour résoudre des défis de logique et faire progresser un robot virtuel, tout en découvrant les bases du code et de l’algorithmique.
Discover and explore software that puts users first through local data ownership, seamless sync, and offline capabilities.
On the web sprite sheets are used mainly to reduce the amount of HTTP requests by bundling multiple images together into a single image file. Displaying a sub-image involves clipping the sheet in the appropriate coordinates.
TL;DR
.element {
background-image: url('heart.png');
/* size of one frame */
width: 100px;
height: 100px;
/* size of the whole sheet */
background-size: 2900px 100px;
/* animate the coordinates */
animation: heartAnimation 2s steps(29, jump-none) infinite;
}
@keyframes heartAnimation {
from {
/* first frame */
background-position: 0px 0px;
}
to {
/* last frame */
background-position: -2800px 0px;
}
}