Live data from Hacker News

Viewing profile — tyoverby

tyoverby

HN member
Joined
Thu, Oct 01, 2015, 5:37 PM UTC
HN karma
325
Public activity
52 items

About tyoverby

No profile information was provided.

Recent public activity

  1. comment
  2. story
  3. comment
    Comment #24320955

    > What would Target do if their canned beans vendor started putting labels on the cans like "we sold this item for $0.23. Anything else is profit that your store is charging you."?…

  4. comment
    Comment #15258445

    OCaml has an incredible optimizer, and many of the abstractions that one would use in OCaml are transparent to the optimizer. You could say the opposite about Go.

  5. comment
    Comment #14996502

    Human Chess players lost against Deep Blue in 1997; people still play Chess. In fact, they've learned a lot of strategies from the strategically superior AI.

  6. comment
    Comment #14741438

    Here's an example scenario: 1. Your PR is tested with the merge against Master. All green! 2. Another PR is tested with the merge against Master. All green! 3. The other PR goes in…

  7. comment
    Comment #14722914

    For Microsoft at least, most of my coworkers send their kids to public school.

  8. comment
    Comment #14699111

    I work on the C# compiler and the answer over in that world is "no"; everything needs to be supported.

  9. comment
    Comment #14649248

    Another thing that I should mention is that most langauges, features like generators / async / exceptions don't compose well at all. In a language where these features are implemen…

  10. comment
    Comment #14648972

    The page that you linked to shows off some features that are not really found in any major programming langauge. Time-traveling search is a big one for me. Many languages have exce…

  11. comment
    Comment #14646851

    I've been playing around with delimited continuations in a toy programming language of mine for a while now and I seriously think that its a paradigm that will eventually take over…

  12. comment
    Comment #14313042

    > How many NPM repos are there? Just one, too-big-to-fail, centralized repository. There are actually plenty, it's just that they're usually found on-prem at a company.

  13. comment
    Comment #14293324

    > I think the generalization of "use-after-free" to "use-after-invalidation" is the most important > I wonder if this sort of vulnerability is possible in Rust Rusts borrow checker…

  14. comment
    Comment #14273949

    I didn't say "a" deb repo, I said "the standard debian repository". Just like when I'm talking about NPM, I'm talking about the main NPM repository, not my company's private NPM se…

  15. comment
    Comment #14270105

    Let's say that you and I both create a library. You try to publish your C++ library to the standard debian repository, and I'll try to publish mine to cpam, npm, pip, etc... If you…

  16. comment
    Comment #13998309

    The most important part of language tooling for me is reproducability. I should be able to do the following to any project: git clone && cd build And have it fetch all of that proj…

  17. comment
    Comment #13998261

    Ended up just writing it in Rust which I've been using for years now. I wanted to try something new, it's hard to compete with Cargo for package management + build tools.

  18. comment
    Comment #13998194

    It was the last unit in senior math at my high school.

  19. comment
    Comment #13996389

    "time in the gym" is way easier to measure than tangible improvement. It's not surprising that people try to optimize things that are the easiest to graph in Excel :P

  20. comment
    Comment #13981050

    I did see that, but I discounted it because I wanted to make a serverside (native, not serverside-js) application, and I assumed that the reason-react-example was only for making c…

  21. comment
    Comment #13980995

    I tried using Reason for a side project. Getting the build tools and the package manager for ocaml took too long so I gave up.

  22. comment
    Comment #13917554

    Sure. That's a property of the language, not S-Expressions. It's just like how SQL decided to write all their queries backwards making it impossible to do good autocomplete.

  23. comment
    Comment #13916955

    Autocomplete is most commonly used on structures in order to find out which fields and methods that structure contains. If you used an s-expression based grammar that still had fie…

  24. comment
    Comment #13915990

    That is super impressive! I can't find the part on incomplete AST or AST reuse in their reference docs though.

  25. comment
    Comment #13915755

    I don't see why they would be any better or worse than another grammar choice. It might be true that s-expressions would make people prefer certain semantic decisions that would be…