4254 shaares
5 results
tagged
template
function lazyRender(el, html) {
let cloneEl = el.cloneNode();
cloneEl.innerHTML = html;
window.requestAnimationFrame(function(){
morphdom(el, cloneEl);
});
};
La semaine dernière, j'ai enfin offert à un ami le petit jeu de cartes que j'ai bricolé ces dernières semaines.
Comme je pense qu'ils pourra en amuser plus d'un, voici une version prête à imprimer !
https://chezsoi.org/lucas/spyfall (PDF, 3.47Mo)
Le jeu
Pour une description complète, je …
I recently worked on a short website project using Django & Heroku. It was my very time using this Python framework, and I really liked it !
This is a compendium of tips & tricks that I, as a Django beginner, found quite useful :
Django enhanced shell
To install it :
pip install django …