Brian Anderson

Results 207 issues of Brian Anderson

Packt has a book in the works called "Rust Cookbook": https://www.packtpub.com/application-development/rust-cookbook We might want to rebrand to avoid the collision. cc @dvigneshwer

discussion

The current design is basically the result of a single pass back when there were only a few examples, and clearly isn't scalable. It needs a complete rethink. Some requirements...

presentation
discussion

This crate is presently being [evaluated](https://internals.rust-lang.org/t/crate-evaluation-for-2017-07-11-gcc/5450) and I don't see a cookbook issue opened. This one is weird because its a build time crate. But it is pretty important, and...

tracking issue

The [Perl cookbook](http://shop.oreilly.com/product/9780596003135.do) or [Python cookbook](http://shop.oreilly.com/product/0636920027072.do) could be a good source of inspiration. - [x] [Declare lazily evaluated constant](https://github.com/brson/rust-cookbook/issues/99) (lazy_static) - [x] [Maintain global mutable state](https://github.com/brson/rust-cookbook/issues/100) (lazy_static) - [x] [Unzip...

tracking issue

The organization of the book is just barely enough to be workable right now, but I hope we can do a lot more. Today there is a single index, organized...

presentation
discussion

This upgrades binaryen to version 111. Binaryen (and wasm-opt) now enables the `SignExt` and `MutableGlobals` features by default, which are also enabled in the LLVM backend. In the future Binaryen...

A0-pleasereview
B0-silent
C1-low 📌
D3-trivial 🧸

I've received [a request](https://github.com/brson/wasm-opt-rs/issues/141) to make it possible for wasm-opt-rs to perform optimization entirely in memory without accessing the filesystem. This seems like a reasonable feature, and relatively easy to...

As part of development I've been running the benchmark, but I've needed to modify it such that it doesn't always produce full tables. It produces full tables because the client...

enhancement

These changes are primarily concerned with displaying human-readable units for byte-oriented command line arguments. Firstly, it prints constant limits in whatever unit is appropriate, GB, MB, KB. Secondly, when it...

Some command line arguments have error handling for cases where the arguments are outside of reasonable limits. Several do not. Here are some that I see offhand: - `--cache-grid` -...

enhancement
good first issue