Chris Broadfoot
Chris Broadfoot
See travis log here: https://travis-ci.org/GoogleCloudPlatform/golang-samples/jobs/110253789 ``` $ eval "$(gimme tip)" I don't have any idea what to do with 'tip'. (using type 'auto') $ export GOPATH=$HOME/gopath $ export PATH=$HOME/gopath/bin:$PATH $...
Currently, we allow users to set the User-Agent header via the [`WithUserAgent`](https://godoc.org/google.golang.org/api/option#WithUserAgent) client option. There's also the "UserAgent" field in the JSON/REST generated clients (this repo) which is appended to...
google.golang.org/ap/option says: ``` API Keys can only be used for JSON-over-HTTP APIs, including those under the import path google.golang.org/api/.... ``` Not true, though, API keys can be used with gRPC....
Given this field in a discovery doc: ``` "AsymmetricDecryptRequest": { "description": "Request message for KeyManagementService.AsymmetricDecrypt.", "id": "AsymmetricDecryptRequest", "properties": { "ciphertext": { "description": "Required. The data encrypted with the named CryptoKeyVersion's...
I'm new to typescript, so I don't fully understand this compilation error: ``` Type error: Cannot access ambient const enums when the '--isolatedModules' flag is provided. 83 | const playerResp...
Use case: I want to make an Ursa Furiosa build with 10 resilience and 10 intellect, and maximize tiers of all other stats. This is currently not possible by sorting...
Maybe only feasible for known token endpoints, but here's a token refresh request we could have retried: ``` oauth2: cannot fetch token: 502 Bad Gateway Response: Error 502 (Server Error)!!1...
Try replacing Maven central's search with jcenter's search.
Issue Type: Feature Request I saw the suggestion from @roblourens to use tmux in microsoft/vscode-remote-release#1185 That's mostly good, however has a few issues: - `code` command doesn't work inside tmux....
sqlite-zstd version: v0.3.5 SQLite version: 3.47.1 (via bun:sqlite) I'm using the pre-built .so from releases. ```typescript // zstd-minimal.ts import { Database } from "bun:sqlite"; const db = new Database(":memory:"); db.loadExtension("./libsqlite_zstd.so");...