Live data from Hacker News

Viewing profile — frewsxcv

frewsxcv

HN member
Joined
Fri, May 13, 2011, 4:06 PM UTC
HN karma
1,403
Public activity
221 items

About frewsxcv

No profile information was provided.

Recent public activity

  1. comment
    Comment #25670349

    Which app is immune to this?

  2. 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 …

  3. 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…

  4. comment
    Comment #25230567

    "rebuttal" is giving them way too much credit

  5. 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…

  6. comment
    Comment #23532854

    > We don't need laws to see these as a public good. Yes, actually you do.

  7. comment
    Comment #23459796

    > that's why it's a 100% racist term against white people yikes

  8. comment
    Comment #17736840

    Rust macros are intended to be powerful, by design.

  9. comment
    Comment #16964781

    https://github.com/python/cpython/blob/2.7/Misc/NEWS.d/2.7.1...

  10. story
  11. story
  12. comment
  13. comment
    Comment #12633291

    I used to be in this situation. Then I started using https://convox.com/ and all my problems went away.

  14. comment
    Comment #12605642

    90% of Manhattan? Maybe. 90% of NYC? Definitely not. https://en.wikipedia.org/wiki/Demographics_of_New_York_City

  15. story
  16. comment
    Comment #12079028

    What do you find unstable about Rust?

  17. 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…

  18. 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…

  19. 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.

  20. comment
    Comment #11969974

    Looks like they use build with release mode: https://github.com/TechEmpower/FrameworkBenchmarks/blob/mast...

  21. 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...

  22. 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`…

  23. 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…

  24. 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.

  25. 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.