Live data from Hacker News

Viewing profile — floofy222

floofy222

HN member
Joined
Mon, Dec 31, 2018, 5:40 PM UTC
HN karma
51
Public activity
22 items

About floofy222

No profile information was provided.

Recent public activity

  1. comment
    Comment #19420144

    I feel that the quality of auto-generated docs is generally better for Rust than for other languages like C++ (e.g. via doxygen). This is because the tools make it trival to publis…

  2. comment
    Comment #19319060

    Usually these inform tools that can be used to detect rule violations. For example, the rust constant evaluator can execute almost all Rust at run-time except for FFI. This allows …

  3. comment
    Comment #19319030

    > We’ve had 2786 distinct people contribute. And that’s only to rust-lang/rust; not Cargo, not any of the libraries the team maintains, not any of the other kinds of work that does…

  4. comment
    Comment #19256579

    > What is to stop them from lying? Nothing, at the end of the day, whether giving someone else your data is a good idea or not remains a question of trust. Do you trust them to sto…

  5. comment
    Comment #19256481

    To make the path stop resolving, you'd have to perform an action (update the server, etc.). These canaries are not automatically updated: they are manually updated (that's the whol…

  6. comment
    Comment #19224250

    > Stuff that’s unstable isn’t in Rust; that’s why it can be changed or even wholesale removed at any time. The distinction is very important. I've seen you talk about "writing an O…

  7. comment
    Comment #19220708

    Most programming languages don't have a stable / unstable distinction at all, and unless one is "in the Rust loop", stating something like "_unstable_ Rust can do X" won't probably…

  8. comment
    Comment #19218283

    If they want to squeeze out the last ounce of performance out of the Rust toolchain it probably wouldn't make sense to use stable Rust anyways, so I don't think that's a big downsi…

  9. comment
    Comment #19217839

    I see that you are using MMX intrinsics directly, like _mm_sub_pi8, but you are never calling _mm_empty ( https://software.intel.com/sites/landingpage/IntrinsicsGuide... ) as requi…

  10. comment
    Comment #19104905

    You don't need destructors to release resources if you never release them.

  11. comment
    Comment #19086621

    > Following local news right now it seems people aren't even capable of "Rettungsgasse" (leaving a corridor for emergency vehicle access in traffic jams) anymore The problem with t…

  12. comment
    Comment #19086391

    > t's totally OK however to not let into the lane people who're using an empty lane on purpose to pass by others and jump the queue In Germany, this behavior is explicitly forbidde…

  13. comment
    Comment #19078570

    The #[rustc_layout_scalar_valid_range_start(...)] and #[rustc_layout_scalar_valid_range_end(...)] attribute allows you to specify a niche, so you can build a Non255U8 if you want. …

  14. comment
    Comment #19078378

    Where do you live? And why isn't this the norm everywhere ?

  15. comment
    Comment #19025470

    I can totally relate here. I remember that when I started running, "it's too cold", "it's too windy", "it's too dark", etc. were real issues. It was too dark and I didn't had enoug…

  16. comment
    Comment #19025344

    You don't have to pay 100$ to run a marathon. If you have a pair of running shoes and a normal running belt (for water and a gel) that will do. You just have to put them on and the…

  17. comment
    Comment #18996873

    I just think these captchas are broken in Chrome. Sometimes I use one of these operators by mistake and get instantaneously hellbanned from using google. The first time the captcha…

  18. comment
    Comment #18987033

    Is there a good read somewhere about Travis CI vs Circle CI vs gitlab ?

  19. comment
    Comment #18920100

    Living in Germany, nobody here cares about Brexit. They don't show it in the news much. General opinion across my circles is that the UK should do whatever they want (leave or stay…

  20. comment
    Comment #18920075

    The amount of food the UK imports from the EU is irrelevant, the relevant question is how much food does the UK import ? This is because, as an EU member, the UK has trade agreemen…

  21. comment
    Comment #18901846

    I don't think the OP literally meant that porting code was impossible, but rather, that it was very hard to do so and have the result run efficiently.

  22. comment
    Comment #18795734

    > How do Rust programmers deal with this? You compile with -C opt-level=1.