I hereby claim:
- I am rcrowley on github.
- I am rcrowley (https://keybase.io/rcrowley) on keybase.
- I have a public key whose fingerprint is 16BF 2FED 3AEF 25E7 C901 FAA8 37AA AB88 53D2 F050
To claim this, I am signing this object:
data "archive_file" "example" { | |
output_file_mode = "0666" # before umask | |
output_path = "${path.module}/example.zip" | |
source_file = "${path.module}/example/index.js" | |
type = "zip" | |
} | |
data "aws_apigatewayv2_apis" "substrate" { | |
name = "Substrate" | |
protocol_type = "HTTP" |
// It seems that Go's archive/zip does not preserve the | |
// executable bit on input files on Mac OS. It does, so | |
// something else is fishy, but I'll preserve this for | |
// posterity and further thinking about what's wrong. | |
package zipadeedoodah | |
import ( | |
"archive/zip" | |
"io/ioutil" | |
"os" |
GNU AFFERO GENERAL PUBLIC LICENSE | |
Version 3, 19 November 2007 | |
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> | |
Everyone is permitted to copy and distribute verbatim copies | |
of this license document, but changing it is not allowed. | |
Preamble | |
The GNU Affero General Public License is a free, copyleft license for |
█ $ cat false-trap-true.sh | |
set -e -x | |
trap false EXIT | |
true | |
█ $ cat true-trap-false.sh | |
set -e -x | |
trap true EXIT | |
false | |
█ $ sh false-trap-true.sh; echo $? | |
+ trap false EXIT |
VERSION="1.9.14" | |
BUILD="slack2" | |
set -e -x | |
OLDESTPWD="$PWD" | |
cd "$(mktemp -d)" | |
trap "rm -rf \"$PWD\"" EXIT INT QUIT TERM | |
package lra | |
// LRA is a fixed-size cache which expires the least-recently added string. | |
type LRA struct { | |
i int | |
m map[string]struct{} | |
ss []string | |
} | |
func NewLRA(n int) *LRA { |
I hereby claim:
To claim this, I am signing this object:
BUILD="betable3" | |
set -e -x | |
cd "$(mktemp -d)" | |
trap "rm -rf \"$PWD\"" EXIT INT QUIT TERM | |
git clone "git://github.com/s3tools/s3cmd.git" | |
mkdir -p "usr/bin" "usr/lib/python2.7/dist-packages" "usr/share/man/man1" | |
export PYTHONPATH="usr/lib/python2.7/dist-packages" |
The server for each of these benchmarks is based on https://github.com/rcrowley/go-tigertonic/tree/master/example. It was run as ./example >/dev/null 2>/dev/null
.
The client for each of these benchmarks is ab -H"Host: example.com" -c"100" -n"1000000" "http://127.0.0.1:8000/stuff/ID"
.