Johan Euphrosine
Johan Euphrosine
According to https://developers.google.com/assistant/smarthome/develop/process-intents#response_format `SyncResponse.Payload` can contains an `errorCode` property.
Currently the libraries exposes JSONObject as part of the public smarthome API object: https://github.com/actions-on-google/actions-on-google-java/blob/7f3b1e2fd51e3b044380ea3c72722058ad99240f/src/main/kotlin/com/google/actions/api/smarthome/SmartHomeResponse.kt This force reverse dependencies to both depens on `org.json` (as a direct dependency) and `gson` (transitively)....
Running https://github.com/nebula-plugins/gradle-lint-plugin on a project that depens on `actions-on-google:1.8.0` will trigger the following warning. ``` com.google.actions:actions-on-google:1.8.0 in configuration ':implementation' has 18 classes duplicated by com.google.api.grpc:proto-google-common-protos:1.17.0. Duplicate classes: [com/google/api/CustomHttpPatternOrBuilder, com/google/api/AnnotationsProto$1, com/google/api/CustomHttpPattern$1,...
Similar to the struct update syntax (`Point3 { y: u32:42, ..p }`), it would be nice to be able to construct a tuple from another one with something like: ```...
When working on https://github.com/google/xls/pull/454, we noticed that the interpreter can be very slow when dealing with large arrays. See the following execution times for `bazel run -c opt //xls/dslx:interpreter_main --...
to proactively detect (and prevent!) issues like https://github.com/google/xls/issues/590 it would be nice to have an automated way to validate code and commands snippets documentation.
I'd great if the intro of the README: ``` XLS implements a High Level Synthesis (HLS) toolchain which produces synthesizable designs from flexible, high-level descriptions of functionality. ``` was mentioning...
in https://papersignals.withgoogle.com/getstarted#put-it-all-together for the `countdown > Part 2: Build Microcontroller Enclosure > Step 5/6`, I think it should says: ``` Fold up the last side of the enclosure by attaching...
https://tools.ietf.org/html/draft-wright-json-schema-validation-01#section-7.4 added support for `examples` metadata. It would be nice if GenSON provided a way to include the leaf scalar values passed to `add_object` as examples of the corresponding properties.
https://github.com/Cloud-V/DFFRAM/blob/main/docs/Usage.md#using-dffram seems to suggest `docker` is only required to run `placeram` but in practice almost all the steps depends on the `openlane` function `run_docker` invocation: https://github.com/Cloud-V/DFFRAM/blob/main/dffram.py#L77 It would be nice...