Live data from Hacker News

Viewing profile — ndmitchell

ndmitchell

HN member
Joined
Sun, Jun 23, 2013, 9:07 PM UTC
HN karma
23
Public activity
9 items

About ndmitchell

No profile information was provided.

Recent public activity

  1. comment
    Comment #36137600

    Neil from the Buck2 team here. I think your points are pretty much spot on - everything we use internally is battle tested, everything we don't is less tested. We've tried to use t…

  2. comment
    Comment #35481852

    We schedule tasks mostly using tokio - without any particular care. It's mostly good, but occasionally causes some performance headaches. I think in the fullness of time we might n…

  3. comment
    Comment #35481833

    I think of Shake as a library for implementing build systems, and was hoping that libraries would emerge that described how to implement rules like C++, and how they should compose…

  4. comment
    Comment #35481609

    Thanks for the comments! There are two levels at which you could make Buck2/Bazel compatible: * At the BUILD/BUCK file level. I imagine you can get close, but there are details bet…

  5. comment
    Comment #35474327

    There's no such thing as a phony target, but there is both `buck2 build` and `buck2 run` - each target can say how to run and how to build it separately. So you can have a shell sc…

  6. comment
    Comment #35474312

    These were from an open source contributor - out the box Buck2 doesn't really have support for Nix. But because the rules are flexible, you can write your own version of Nix-aware …

  7. comment
    Comment #35472971

    It can use watchman, but for open source we default to inotify (and platform equivalent versions on Mac/Windows) to avoid you having to install anything.

  8. comment
    Comment #11474728

    > Until they re-implement it again :) As the paper says, every previous implementation started nicely and got horrible towards the end. This time, that hasn't happened, so _hopeful…

  9. comment
    Comment #11474716

    The old GHC build system did do everything in 3 phases. And they were pretty magic phases. It's not clear there's any upper bound on the number of phases, and maintaining each phas…