Maik Riechert
Maik Riechert
There is a draft RFC to be published soon which adds support for packed/typed arrays in CBOR, see the [current version](https://tools.ietf.org/html/draft-jroatch-cbor-tags-02). As one of the original CBOR authors is also...
There is `if(number >= UINT32_MAX) {` and `if(number > UINT16_MAX) {`. Should the latter also be `>=`?
Adding the following to one of the unit tests shows the issue: ```c len = unhex("581868656c6c6f6f6f6f6f6f6f6f6f6f6f6f6f6f206e75727365",start); // ... fail_unless(memcmp(res->start+res->header,"helloooooooooooooo nurse",res->length) == 0); fail_unless(res->length == 24); // actual: 25 ``` PR...
## Sorting - **I'm submitting a ...** - [ ] bug report - [x] feature request - [ ] support request - I confirm that I - [x] used the...
After applying the dark color scheme (including the registry update) when I open cmd and enter a command, then press the up arrow key, I only get a blank line...
From a given color image I need to display one of its channels as a greyscale image. For that I do something like: ``` this.channels({ red: ch == 'r' ?...
It would be nice if streaming encoding similar to [Jackson](http://wiki.fasterxml.com/JacksonInFiveMinutes#Streaming_API_Example) is added. Important for me would be that I could stream the elements of a ByteString as well, since these...
Maps with duplicate maps are not valid according to the CBOR spec. While the spec leaves it to the specific protocol where exactly this is dealt with I think it...
The library only accepts plain JS objects to represent CBOR maps, which prevents using numbers as keys. It would be good if JS `Map` could be supported as that allows...
The guide doesn't say anything about naming of function arguments, local variables, or field names of record types. Is that on purpose or should there be some recommendation?