Peter Occil
Peter Occil
[Even in version 4.0.1](https://github.com/peteroupc/CBOR/blob/06f4f1a4a80d20d125ce670c6502ba0db18d4740/docs/PeterO.Cbor.CBORObject.md): - The `EncodeToBytes()` method documentation said: "If the CBOR object contains CBOR maps, or is a CBOR map itself, the keys to the map are written...
The underlying implementation of `Dictionary` in your .NET runtime may have preserved the insertion order of map keys. However, my CBORObject `NewMap` documentation doesn't make such a guarantee, and neither...
No further response seen, so closing.
I could not reproduce the error with the following code: ``` [Test] public void TestArrayIndexing() { CBORObject cbor=CBORObject.NewArray().Add(0).Add(1).Add(2); Assert.AreEqual(0, cbor[0].AsInt32()); Assert.AreEqual(1, cbor[1].AsInt32()); Assert.AreEqual(2, cbor[2].AsInt32()); } ``` You should post a...
Do you still have this issue?
I could not reproduce the issue with the following code: ``` // 'fn' is the name of the CBOR file at issue byte[] bytes=System.IO.File.ReadAllBytes(fn); CBORObject cbor=CBORObject.DecodeFromBytes(bytes); Console.WriteLine(cbor[0]); Console.WriteLine(cbor[1]); Console.WriteLine(cbor[2]); Console.WriteLine(cbor[3][0]);...
Indeed, there was a button titled Loop in the bottom of the window all along; the width the window takes on by default apparently hid it out of sight. And...
I suggest that there should be a category for small, tileable wallpapers. For example, tileable wallpapers: - With a limited color palette, such as a 16-color palette or the so-called...
Here is updated code demonstrating the problem in the previous comment, which is still present: ``` from sympy.stats import * w,k,n=symbols('w k n',integer=True) expr=sin(k/128) - Sum(sin(w/64)*binomial(k, w)*binomial(128 - k, 64...
I want to note several things: **On reproducibility.** Some applications, including tests, care about reproducibility. However, if there are things outside the application's control, reproducibility is often not achievable. Besides...