The Behavior of C# Nested Static Classes# 26 July 2018 C#, .NET, Experimental, Documentation While working on a code review, I found a nested static class that I needed to verify the validity of. I had three questions: Does the CLR create new instances when the containing class is instantiated?...
Transparent Video in all Browsers from Cross-Domain Sources# 6 January 2017 JavaScript, Canvas, Experimental, AJAX, XMLHttpRequest, Video A brief history of time cross-domain transparent video# Transparent video is not a terribly new concept in web development, however, because browsers do not...
Using Time as a Color Generator# 20 December 2014 JavaScript, CSS, Codepen, Fiddle, Experimental window.addEventListener('load', function() { var rgbs = [ [$('#red'),24,'rgb(#,0,0)'], [$('#green'),60,'rgb(0,#,0)'], [$('#blue'),60,'rgb(0,0,#)'] ]; for(var...