I hereby claim:
- I am evanj on github.
- I am epcjones (https://keybase.io/epcjones) on keybase.
- I have a public key whose fingerprint is 3877 9685 9042 684D 83E4 C875 C252 E16D 2E4B 9E55
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "os" | |
| "golang.org/x/oauth2" |
| FROM python:2.7.13-slim | |
| COPY . /app/ | |
| WORKDIR /app | |
| ENTRYPOINT ["python", "connectbug.py"] |
| // Prints CRC32C hashes in the same format as Google Cloud Storage | |
| // | |
| // Usage: crc32c (paths to hash) | |
| // See also: gsutil hash | |
| package main | |
| import ( | |
| "encoding/base64" | |
| "encoding/hex" | |
| "fmt" |
| type Writer interface { | |
| Write(p []byte) (n int, err error) | |
| } |
| type Reader interface { | |
| Read(p []byte) (n int, err error) | |
| } |
| type Transformer interface { | |
| Transform(output []byte, input []byte) (written int, read int, err error) | |
| } |
CELO_VALIDATOR_GROUP_ADDRESS=4d838eaefe4234307e66f8d3f3019bc305b0d1b5 CELO_VALIDATOR_ADDRESS=e556d76384334a7138ca85e5eb4281c909628ae1
| diff -u orig/BUILD.bazel new/BUILD.bazel | |
| --- orig/BUILD.bazel 2023-08-09 08:39:50 | |
| +++ new/BUILD.bazel 2023-08-09 08:42:02 | |
| @@ -1,102 +1,26 @@ | |
| load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") | |
| +load("@rules_cc//cc:defs.bzl", "cc_library") | |
| +cc_library( | |
| + name = "zstd_cc", | |
| + srcs = glob([ |