Eric Kidd
Eric Kidd
There's an interesting pattern that shows up in several of our internal applications, especially those using Go or Rust. In particular, we have two `Dockerfile`s: - `Dockerfile.build` contains a complete...
At the moment, `cage` really doesn't have any particularly good support for `extends`. We could support this as follows: ```yaml extends: file: "templates/webapp.yml" service: "webapp" ``` Optionally, we could also...
For things which don't need to do I/O, [rayon](https://github.com/nikomatsakis/rayon) looks really nice. But we also need some way to display output to the console from multiple `std::process::Command` objects in parallel....
We might want this on all exported containers, I think. It's less useful when running under the app itself. For folks using ecs-compose to deploy to ECS, this is moot,...
Split out of #24. Right now, our default `.gitignore` ignores the entire `src` directory. This isn't what we want for projects with in-tree source code. For these projects, we probably...
Some ideas: - Print current branch, dirty status, etc. of all local repos - Pull repos (during main `pull`?), probably as `--ff-only` to keep life simple
This only affects the binary distributions. It looks like our statically linked OpenSSL is still looking for certain cert-related files in musl directories. ``` sh strace -Ff -tt cage --override="staging"...
What a lovely vscode mode! Thank you. It's too bad that vscode doesn't support headline folding yet. One org-mode feature that I miss is the ability to re-order subtrees by...
According to [the tutorial](https://github.com/google/fuzzer-test-suite/blob/master/tutorial/libFuzzerTutorial.md), libfuzzer supports a `-print_coverage=1` option to print out some basic coverage information. This doesn't seem to work with `cargo fuzz` at the moment: ``` Running `target/x86_64-unknown-linux-gnu/debug/fuzzer_script_1...
By adding the following to `fuzz/Cargo.toml`: ```rust +[profile.dev] +opt-level = 3 ``` …I improve fuzzer throughput from: ``` #524288 pulse cov: 3738 corp: 80/10238b exec/s: 1420 rss: 574Mb ``` ...to:...