Jonas Finnemann Jensen
Jonas Finnemann Jensen
This causes code-size warnings when compiling to js: > Hint: Using '.runtimeType.toString()' causes the compiler to generate more code because it needs to preserve type arguments on generic classes, even...
It's not obvious to me how to convert a`Uint8Buffer` to a `Uint8List`. I imagine `Uint8Buffer` is useful when building a binary representation of something where I don't know the size...
Seems broken if retries is used with body, as `io.Reader` won't rewind... I haven't tried it... but that seems problematic... Maybe it's better to not support streams to avoid bugs....
The client was originally designed to send `Accept: application/vnd.pub.v2+json`, to support multiple versions of the API. I've recently documented this in: https://github.com/dart-lang/pub/blob/master/doc/repository-spec-v2.md We should probably start responding `Content-Type: application/vnd.pub.v2+json` to...
probably just detect it based on file name...
It's really frustrating that you have to do: `go get github.com/taskcluster/jsonschema2go/jsonschema2go`. It takes a quiet a while to figure out that out when `go get github.com/taskcluster/jsonschema2go` doesn't work... This isn't...
So when some JSON schema is turned into a struct, wouldn't be cool if a `Validate()` method was generated from that struct... Such that we could validate against the JSON...
I'd suggest adding the following lines to `pubspec.yaml`: ```yaml topics: - tool - repository-management ``` This is inspired by [`mono_repo`](https://pub.dev/packages/mono_repo) which is a similar tool, though probably less polished. Topics...
In: https://pub.dev/documentation/webcrypto/latest/webcrypto/AesCtrSecretKey/encryptBytes.html And a few other places we write: `**Remark** ...` to indicate that a particular browser or platform doesn't support a particular feature. Instead of using this form, it'd...
We need to upgrade BoringSSL, however, their build scripts have changed a bit. In particular how ASM files are added, so we might need to make some changes. The logic...