Paya

Results 19 issues of Paya

For people interested, the original source code for Marvin32 is here: https://github.com/dotnet/coreclr/blob/master/src/inc/marvin32.h https://github.com/dotnet/coreclr/blob/master/src/vm/marvin32.cpp

There seems to be a new competition to Jil performance-wise, called Revenj: https://github.com/ngs-doo/json-benchmark/ There are some issues with the benchmarks they have, but after fixing the problems Revenj does perform...

Recently a lot of the JSON I need to parse looks like this: {"prop1":"value1","prop2":"843.12","stats":[["123.45","0.01"],["567.89","599.0"],["111.11","0.07"]]} But I need to deserialize it into classes like these: public class A { [JilDirective(Name =...

The following links have some pretty amazingly fast decimal parsers: https://stackoverflow.com/a/37754822/298609 https://stackoverflow.com/a/8458496/298609 Which in my testing are significantly faster than the deserializer Jil is using. The linked deserializers do have...

### What happened? The `QUploader` scoped param is not fully typescript-ready. I used the [official example for QUploader custom header](https://quasar.dev/vue-components/uploader#example--custom-header) and [although some properties are already properly typed](https://github.com/quasarframework/quasar/issues/11090), others from...

kind/bug 🐞
area/typescript
Qv2 🔝
bug/2-confirmed
flavour/quasar-cli-vite

### Description I use ionicons.ttf font to add font icons to cells via FontImageSource. The icon is rendered, but the aspect ratio is not preserved. ### Steps to Reproduce 1....

## Summary Picker cells update their value once the picker overlay is submitted. Xamarin.Forms actually comes with an iOS-specific flag that can be set up on pickers to update the...

### Description + Steps to reproduce Open a picker for a `NumberPickerCell` where `Min=1` and `Max=300`. Spin the picker by a single strong drag motion. While it's still spinning, close...

My RSS feed has `encoding="ISO-8859-1"` in the header. I cannot use `parser.parseURL` because I need to implement custom error handling and rate limiting. The only alternative is using `parser.parseString`, but...

### Description I am running a code connecting to AWS Aurora cluster, running a MySql engine v5.6.10a. This is how I set up a connection to the server: ```c# protected...