Live data from Hacker News

Viewing profile — bumeye

bumeye

HN member
Joined
Mon, Sep 26, 2011, 8:26 PM UTC
HN karma
47
Public activity
23 items

About bumeye

No profile information was provided.

Recent public activity

  1. comment
    Comment #9758636

    I think the author means to say that it's kind of an all or nothing thing. You either go purely functional and get all the benefits, or you don't and barely get any benefits at all…

  2. comment
    Comment #9575833

    If anything, Haskell is based on lambda calculus. More particularly System F. As in any lambda calculus, you can interpret the type system as a category where the objects are types…

  3. comment
    Comment #9034434

    Yes it's common to have software which can find plagiarism like that. However, if the student actually does these things (change all variable names and move code around) it will be…

  4. comment
    Comment #8274273

    That's only for trains. For bus/metro/tram you only need 4 EUR on your card. See https://www.ov-chipkaart.nl/reizen/tarieven/instapenbasistar... .

  5. comment
    Comment #8263813

    I think these results are fairly good. 'Just' some neuron loss at such doses. A lot of drugs can kill you if you take 20 times the recommended dose!

  6. comment
    Comment #7940247

    I'm surprised by the huge difference between those articles. Somehow i do find your article more believable. News outlets prefer to spin the story the other way because that kind o…

  7. comment
  8. comment
    Comment #5978496

    This idea of immutable infrastructure reminds me of NixOS [1]. A linux distribution where nearly the whole filesystem is immutable. Definitely worth a look. I'm not sure if it's fi…

  9. comment
    Comment #5975416

    Make sure to watch the part before this video too: http://www.youtube.com/watch?v=ffwxaTpJTyI I don't think the arrest was entirely unnecessary. The guy was really provoking the po…

  10. comment
    Comment #5975186

    A spelling error in the title is actually very easy to miss. You might read the main article an extra time before publishing, but the title is probably in a separate textfield whic…

  11. comment
    Comment #5854599

    Ah you're talking about the user comments under the article. Took me a few minutes to figure that out :)

  12. comment
    Comment #5588836

    Exactly. In a certain way, you could call jQuery UI effects a very limited physics engine. I don't think the author is saying everyone should use a physics engine now. I think he m…

  13. comment
    Comment #5513870

    Simpler indeed. That's actually what stash does internally. I usually don't make a separate branch, but just commit it in the current branch. Then you can rebase or amend later. Yo…

  14. comment
    Comment #5502242

    This is the way that github recommends ( https://help.github.com/articles/creating-project-pages-manu... ). A separate folder for the gh-pages branch makes sense because this branc…

  15. comment
    Comment #5502163

    You make it sound like git is unsuitable for this, i disagree. I often use git for one-man projects, both with and without an external repository. Once you learn how to use it it w…

  16. comment
    Comment #5374382

    Yes. For the 0.7 chain, it's as if the 0.8 chain never happened. All transactions and all mining in that part of the chain is irrelevant now.

  17. comment
    Comment #3967839

    There's also referential transparency. For programming languages, that means the result of a function is dependent on it's inputs ONLY. The function can not use any unspecified inp…

  18. comment
    Comment #3967759

    Yep S1 still exists. Nix does not do destructive updating. When you install or update a package, you'll always be able to revert to the previous state. The best explanation of that…

  19. comment
    Comment #3804712

    It fits in the Ruby philosophy and coding style to leave the `self.' out. But it might not be so evident for non-rubists. Actually, new rubists might not even know that you can lea…

  20. comment
    Comment #3693662

    Note that this is such a case where you've already got the pointer. mdwrigh2 is totally right. I flipped the O(1) for linked list insertion with the O(n) for verctor insertion :).

  21. comment
    Comment #3693602

    I use emacs mode for bash, which is default on mac. Then i bind 'option cursor left' to \033b and 'option cursor right' to \033f. Voila, next and previous word using alt+arrow keys…

  22. comment
    Comment #3679357

    The author does an insertion sort in a linked list, of course that's going to be slow. For a sorted insert you need to do 2 things: find the right spot for insertion and the insert…

  23. comment
    Comment #3517856

    I don't think this is unique to the US, and not unique to the last 10 years either. Consider this: Of all the products made a 100 years ago, only 1% was made to last for a long tim…