Christopher Lord

Results 10 issues of Christopher Lord

It would be nice to have api support for generating the [pHYs section](http://www.libpng.org/pub/png/book/chapter11.html#png.ch11.div.8), as it is part of the PNG Specification. It's possible to do it manually if there is...

While going through the final phase of install of `SmartOS Live Image v0.147+ build: 20160609T011018Z`, the following message appeared on my console: ``` SUNW-MSG-ID: SMF-8000-YX, TYPE: defect, VER: 1, SEVERITY:...

This can be helpful for avoiding merge issues, for example.

I want to support polymophic discrimination through serialization. For example, see this short example: ```go package main import ( "encoding/json" "fmt" ) type FruitType string const ( AppleType FruitType =...

This is based on the template we use to generate the [public API](https://github.com/grafana/incident-node) for Grafana Incident

emotion allows `css={[aRules, bRules]}` and does the right thing for re-rendering, so it should not be flagged as a performance issue. We can turn this off for native elements like...

One of our APIs queries one of a number of tables, and return all of the columns (I know, wonderful design) In a runtime language one might marshal the row...

I wrote a javascript version of the algorithm: ``` // Haven't quite tested this guy yet. function fraction(flt) { var maxden = 4; var num, m12, den, m22; var x,...

For SVGs we generate, we need to have attributes on the root node, e.g., `viewBox`, `class`, and `style`. I don't see a documented or spec'ed way to do this.

# Problem Modifying required fields in our API can lead to compatibility issues between clients and servers, especially when fields are added, removed, or have their required/optional status changed. The...