frewsxcv | 5 years ago | on: Poll: Switching from WhatsApp
_optl's comments
frewsxcv | 5 years ago | on: A group of Google workers have announced plans to unionize
frewsxcv | 5 years ago | on: A group of Google workers have announced plans to unionize
To users who are following along who aren't familiar, this is not how all unions works. Presumably the commenter is talking about "trade unions" which is one of many types of unions.
frewsxcv | 5 years ago | on: ‘Tokenized’: Black Workers’ Struggles at Coinbase
frewsxcv | 5 years ago | on: RBS, Ruby’s new type signature language
frewsxcv | 5 years ago | on: After GitHub CEO backs Black Lives Matter, workers demand an end to ICE contract
Yes, actually you do.
frewsxcv | 5 years ago | on: Nextdoor’s ‘Karen Problem’
yikes
frewsxcv | 7 years ago | on: Show HN: A Rust macro that parses Java-like syntax and runs it as a Rust program
frewsxcv | 8 years ago | on: Python 2.7.15 release
frewsxcv | 9 years ago | on: Using Docker to develop and deploy Django apps
frewsxcv | 9 years ago | on: New Yorkers Can Now Get Unlimited UberPool in Manhattan for $200
frewsxcv | 9 years ago | on: Shipping Rust code in Firefox
frewsxcv | 9 years ago | on: Servo Nightly Builds Available
The thread that handles all the resources (http://, chrome://, file://, etc):
https://github.com/servo/servo/blob/master/components/net/re...
And here's the file that handles HTTP requests:
https://github.com/servo/servo/blob/master/components/net/ht...
frewsxcv | 9 years ago | on: Lossless compression with Brotli
EDIT: I forgot to mention: It's possible to run AFL on uninstrumented code, it just won't be that smart about finding new code paths.
frewsxcv | 9 years ago | on: Lossless compression with Brotli
I ran AFL on rust-brotli for a week a couple weeks ago. It didn't find anything. I plan to try again soon! No one is safe from AFL.
frewsxcv | 9 years ago | on: Shipping forgettable microservices with Rust
https://github.com/TechEmpower/FrameworkBenchmarks/blob/mast...
frewsxcv | 9 years ago | on: Afl.rs: Fuzzing Rust code with american-fuzzy-lop
https://github.com/BurntSushi/quickcheck#the-quickcheck-attr...
frewsxcv | 9 years ago | on: Afl.rs: Fuzzing Rust code with american-fuzzy-lop
#[fuzz]
fn test_fuzz(bytes: Vec<u8>) {
...
}
This would live alongside other test cases and everytime fuzzing is desired, one could just do `cargo fuzz`. Relevant issues and a pull request:https://github.com/frewsxcv/afl.rs/issues/24 https://github.com/frewsxcv/afl.rs/issues/31 https://github.com/frewsxcv/afl.rs/pull/46
There's still a little more work to do though. Mainly, I want to compile AFL as a part of the workflow (see the afl-sys crate in the repo) so the user doesn't need to manually install AFL to use `cargo fuzz`.
frewsxcv | 9 years ago | on: Afl.rs: Fuzzing Rust code with american-fuzzy-lop
frewsxcv | 9 years ago | on: Afl.rs: Fuzzing Rust code with american-fuzzy-lop