Viewing profile — frewsxcv
frewsxcv
HN member- Joined
- Fri, May 13, 2011, 4:06 PM UTC
- HN karma
- 1,403
- Public activity
- 221 items
- HN profile
- View on Hacker News ↗
About frewsxcv
No profile information was provided.
Recent public activity
-
comment
Comment #25670349
Which app is immune to this?
-
comment
Comment #25631185
Keeping something secret amongst 230 people is not an easy task. At some point the campaign has to become public, and it's better to do that in a planned, coordinated manner, than …
-
comment
Comment #25631066
> The unions require a certain amount of work experience to join and some have different levels of membership depending on how much work you do after joining. To users who are foll…
-
comment
Comment #25230567
"rebuttal" is giving them way too much credit
-
comment
Comment #23991831
If something is untyped in Sorbet, you can give it a type with `T.let`. So if the return value of function `foo` is untyped, but you have a high degree of confidence that it will r…
-
comment
Comment #23532854
> We don't need laws to see these as a public good. Yes, actually you do.
-
comment
Comment #23459796
> that's why it's a 100% racist term against white people yikes
-
comment
Comment #17736840
Rust macros are intended to be powerful, by design.
-
comment
Comment #16964781
https://github.com/python/cpython/blob/2.7/Misc/NEWS.d/2.7.1...
- story
- story
- comment
-
comment
Comment #12633291
I used to be in this situation. Then I started using https://convox.com/ and all my problems went away.
-
comment
Comment #12605642
90% of Manhattan? Maybe. 90% of NYC? Definitely not. https://en.wikipedia.org/wiki/Demographics_of_New_York_City
- story
-
comment
Comment #12079028
What do you find unstable about Rust?
-
comment
Comment #12015677
In case you're looking for a place to jump in: The thread that handles all the resources ( http:// , chrome://, file://, etc): https://github.com/servo/servo/blob/master/components…
-
comment
Comment #12004705
I haven't, though I've thought about it. Most of the logic behind git2-rs (as far as I know) is written in C. While it's possible to run afl.rs on a Rust project that uses C code b…
-
comment
Comment #12004265
(afl.rs maintainer here) 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.
-
comment
Comment #11969974
Looks like they use build with release mode: https://github.com/TechEmpower/FrameworkBenchmarks/blob/mast...
-
comment
Comment #11937829
Also worth mentioning the Rust library 'quickcheck' that does something similar to what you're suggesting: https://github.com/BurntSushi/quickcheck#the-quickcheck-attr...
-
comment
Comment #11937823
This is what I'm striving for: #[fuzz] fn test_fuzz(bytes: Vec ) { ... } This would live alongside other test cases and everytime fuzzing is desired, one could just do `cargo fuzz`…
-
comment
Comment #11937800
In this particular instance, there's no reason to be shipping afl.rs in production code. It's just a tool that's meant for local development, testing environments, or maybe even pa…
-
comment
Comment #11937567
Huh, wasn't aware that's how afl-gcc worked. I'll have to look into it sometime, thanks for making me aware of it.
-
comment
Comment #11937360
Yes, the shared acronym makes Googling for anything AFL related rather annoying. The results are usually a mixture of Australian football, American rabbits, and fuzz testing.