Codey Oxley
Codey Oxley
Ref: https://github.com/googleapis/google-cloud-go/blob/main/bigtable/bigtable.go#L878 We have a handful of systems that make liberal use of BigTable. To make replaying, diagnosing, or dry-running previous events possible, I want to record the database decisions...
As noted [in the documentation](https://fb.quip.com/dev/automation/documentation#folders-get), getting multiple folders uses the path: * `/folders/?ids=id1,id2,id3` go-quip is doing: * `/folders/id1,id2,id3` Might have been an API change on Quip's side but this fixes...
# Summary Related issue: #59 This adds two additional functions to create a `CDict` or `DDict`: - `NewCDictByRef(dict []byte) (*CDict, error)` - (OK, technically three with the corresponding `NewCDictLevelByRef`) -...
# Problem The current library wraps [these two functions](https://github.com/valyala/gozstd/blob/2915def8e62159355fa32ea542341e0180cc0728/dict.go#L18-L24) from zstd: - [ZSTD_createDDict](https://github.com/valyala/gozstd/blob/v1.20.1/zstd.h#L965-L968) - [ZSTD_createCDict](https://github.com/valyala/gozstd/blob/v1.20.1/zstd.h#L932-L945) Both of these copy the input dictionary buffer, allowing the caller to release them. My...
According [to a comment](https://github.com/grpc/grpc-go/issues/7003#issuecomment-1967694252) on #7003, the `grpc-go` maintainers would like feedback on the API before eventually marking it as stable. So here are some of my current thoughts. :)...
`nVim` version: v0.10.0 `tsc` version: 5.3.3 `@styled/typescript-styled-plugin` version: 1.0.1 I'm using `nvim-cmp` for my completion engine. This project correctly loads and shows itself in `:LspInfo`, and it's able to fix...
# Summary First, love this plugin. I've relied too much on the built-in surround capabilities, mostly for changing content within. This is really cool for changing the surrounding characters/names themselves....
### What happened? It's common in our tests to bootstrap a dataset, let library code create as many tables as needed, then cleanup the dataset after the test finishes. Removing...
### What happened? When reading a table's metadata via the Go SDK, it appears to always be zero even if rows have recently been inserted. I see that this was...
# Summary When trying to use `coz` on a Go binary, I get the following error: ```bash go build -ldflags=-compressdwarf=false -gcflags=all="-N -l" coz run --- ./cozgo [libcoz.cpp:100] bootstrapping coz [libcoz.cpp:128]...