Peter Occil
Peter Occil
The issue here is that the value space from 0-255 is very scarce, so they require stricter procedures for assigning codes to that space. For more information, see section 7.2...
http://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml#tags As I said before, you need to assign CBOR tags so they don't conflict with existing tags. I will discuss each in turn: - Tags 6, 7, 8 --...
@ihhub : I want to note that the following issues are related: https://github.com/libsdl-org/SDL_mixer/issues/519, https://github.com/libsdl-org/SDL_mixer/issues/563
I believe the code that writes to '.ASE' format is faulty: https://github.com/1j01/anypalette.js/blob/eaf17cca78203bf2e68298137859f3f23cc46520/src/formats/Adobe.coffee#L328C2-L331C33 view.writeString("ASEF") view.writeUint32(1) # version view.writeUint32(blocks.length) Which should probably be: view.writeString("ASEF") view.writeUint16(1) # version view.writeUint16(0) # version view.writeUint32(blocks.length) This...
> @peteroupc This strikes me as likely-equivalent code. It depends on the byte ordering, but the bit representation of 1 in Uint16 vs Uint32 is the same, right? Other than...
Another question of interest is how the original Material Design color palette was generated; was a similar approach as HCT taken there?
Of the calculation methods in the current proposal, perhaps the only exotic one is the "partition" method. I haven't seen a method like that in any arbitrary-precision number library, nor...