Claus Colloseus

Results 6 issues of Claus Colloseus

Could you please explain what constitutes an element "that extends or adds to an existing semantic element"? Obviously you are not referring to [Customized Built-in Elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements#customized_built-in_elements), since the elements you...

Consider this animation which interpolates using `interpolateTransformSvg`: var p1 = d3.select('svg') .append('polygon') .attr('points', '100 90 100 110 10 100') .attr('transform', 'rotate(20, 100, 100)'); p1.transition() .duration(2000) .attr('transform', 'rotate(160, 100, 100)') .on('start...

This is a follow-up to #101. I recently came across [this paper](https://hcklbrrfnn.files.wordpress.com/2012/08/bez.pdf) outlining an algorithm by Roger Willcocks for subdividing Bezier curves based on "flatness", which means a maximum error...

These two options require quoting; Windows only knows about double quotes for that. The task consequently fails with "unable to find file" returned from xgettext

String length evaluation uses the bitwise-operating `strlen()`. RFC4627 states that "JSON text SHALL be encoded in Unicode. The default encoding is UTF-8", which could contain multibyte characters, which should be...

Currently, the unit formatter uses a [hard-coded list of unit categories](https://github.com/globalizejs/globalize/blob/master/src/unit/categories.js). This list is getting longer by CLDR version. Currently (v33), the following entries are missing: "concentr", "consumption", "electric", "energy",...