Leonardo Herrera

Results 8 issues of Leonardo Herrera

Just a couple of things to make this compile under Delphi XE: - There is no `TRect.Width` nor `TRect.Height` under XE. I've changed to calls to `RectWidth` and `RectHeight` which...

As described in #68, we need to convert the data in the GeoIP2 database to a faster memory structure. In order to do this, I'm thinking of iterating the search...

enhancement

I've been programming with Scala for a few months now, but I still don't understand how (and if) can I get a better error messages from Argonaut. Currently, I have...

For protobuf `RepeatedField` collections (which are read-only and implements `ICollection` and `IList` among others) there are no `With*` methods generated.

bug

Using `or` in enum matches currently displays error EM0001 in the IDE: ``` sortOrder switch { SomeEnum.Unknown or SomeEnum.NewestFirst => someValue, SomeEnum.OldestFirst => anotherValue, => throw ExhaustiveMatch.Failed(sortOrder) } ```

enhancement

Protobuf generated entities seem to work well with `BuilderGenerator` but collections don't get generated. Protobuf collections are of type `RepeatedField` which are read-only properties that implement `IEnumerable`.

enhancement

In eleventy documentation it states we can use a plugin to include markdown pages: https://www.11ty.dev/docs/plugins/render/ However, the instructions don't seem to work in this repo. Is eleventy documentation not applicable...

# Problem Using the following code: ``` var serializer = new XmlSerializer(typeof(MESSAGE)); var reader = XmlReader.Create(stream, new XmlReaderSettings { Async = true }); var deserialized = await Task.Run(() => serializer.Deserialize(reader)...