In late March (2019) I was interviewed by Radio Lombardia for a radio show about new trends: fashion, design, tattoos, art, wellness and more. In my case the topic was obviously tattoos. A short interview that was broadcast at night in the first week of April.

// Passive event listeners jQuery.event.special.touchstart = { setup: function( _, ns, handle ) { this.addEventListener("touchstart", handle, { passive: !ns.includes("noPreventDefault") }); } }; jQuery.event.special.touchmove = { setup: function( _, ns, handle ) { this.addEventListener("touchmove", handle, { passive: !ns.includes("noPreventDefault") }); } };