Jean-Luc Godard

French-Swiss film director, screenwriter, and critic. Pioneer of the French New Wave.

“To me style is just the outside of content,”

“and content the inside of style, like the outside and the inside of the human body,”

“both go together, they can't be separated.”

Jean-Luc Godard

film, style, godard

Parker Birdie

A growing garden of thoughts

(function () { const scenes = document.querySelectorAll('[data-scene]'); if (!scenes.length) return; if (window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches) { scenes.forEach(scene => scene.classList.add('is-active')); return; } let index = 0; const SHOW = 2100; // hvor længe en scene vises const BLACKOUT = 140; // helt sort mellem scener (pow) const showScene = (i) => { scenes.forEach(el => el.classList.remove('is-active')); // kort sort skærm før næste scene setTimeout(() => { scenes[i].classList.add('is-active'); }, BLACKOUT); }; setInterval(() => { index = (index + 1) % scenes.length; showScene(index); }, SHOW + BLACKOUT); })();