Live data from Hacker News

Viewing profile — blinks

blinks

HN member
Joined
Tue, Feb 20, 2007, 6:20 PM UTC
HN karma
155
Public activity
113 items

About blinks

No profile information was provided.

Recent public activity

  1. comment
    Comment #30185138

    Imagine making this same point about books: https://en.wikipedia.org/wiki/Books_published_per_country_pe...

  2. comment
    Comment #14369453

    It's more important to make code readable than clever, and more important to be simple than fast. It tends to be pretty easy to speed up readable+simple code when you need to do so…

  3. comment
    Comment #13697122

    > It does include a lot of arcana about how web application stacks work, the network and gateway protocols they use,... This was my second phone screen at Google, for what it's wor…

  4. comment
    Comment #10663959

    I highly recommend looking into Inform7, effectively a text adventure IDE (though the community tends to call it "interactive fiction"). The language is a bit odd, and attempts to …

  5. comment
    Comment #9958003

    If the system was namespaced, it'd be even better -- essentially make Meshtag just the translation layer (drawing to id), and then pass that identifier into any backend you like.

  6. comment
    Comment #9696176

    There are tens of thousands of employees at Google. Most of them interview. People are different.

  7. comment
    Comment #9258013

    http://bazel.io/docs/skylark/concepts.html You can [at least internally] define custom rules to handle pretty much anything, in almost-but-not-quite-python.

  8. comment
    Comment #8631732

    For more concrete syntax, consider the following Python: >>> import re >>> route = re.compile(r'(?P ^/foo/bar$)|(?P ^/foo/bar/\d+$)') >>> route.match('/foo/bar').groupdict() {'fb':…

  9. comment
    Comment #8560237

    > understanding why it is done in this particular way is another Isn't that the reason for comments in the first place?

  10. comment
    Comment #8467837

    > Either way, when you’re reading a linked page, you may still > be “at” awesomestuff.com, as clicking the back button on > your browser can instantly confirm. Effectively, > aweso…

  11. comment
    Comment #8208312

    Grep the article for "If someone had changed the calendar, wouldn't anyone else – say the Muslims? – have noticed?" -- a paragraph which ends with: "All these areas would require a…

  12. comment
    Comment #6585893

    Specifically: * Merchants selling digital goods may transition to Google Wallet for digital goods * Merchants selling through Google-hosted marketplaces (e.g. Google Play) will be …

  13. comment
    Comment #6188998

    I would ask if you had ever worked in IT. There is a reason such jobs turn people into curmudgeons. It's not like they all started that way. You attempt to give a simple explanatio…

  14. comment
    Comment #5720490

    http://wiki.whatwg.org/wiki/RequestAutocomplete ?

  15. comment
    Comment #4925668

    What's the point of Facebook? Twitter?

  16. comment
    Comment #4450178

    > I don't know why, but psychologically I would feel like this is somehow less private than, say, a mailing list. I'm probably becoming old :) I think that's a really interesting c…

  17. comment
    Comment #4301801

    Your comment would carry more weight if I knew what projects you recently contributed to.

  18. comment
    Comment #4271355

    Doesn't seem like an amazing rationale; personally, I like periods -- they let me know the writer finished their thought.

  19. comment
    Comment #4149059

    I _think_ the complaint is the following: if x == nil { x.doSomethingCrazy(); // Runtime error? } else { ... } "Boolean blindness" (bah) is that either the type system should catch…

  20. comment
    Comment #4081867

    > Complaining that every attendee's attention is not > permanently fixed upon you strikes me as particularly vain. I read this differently: an audience can get the most out of a pr…

  21. comment
    Comment #3900262

    > Prototypes are simply more complicated than classes. [citation needed] I'd argue the opposite: "Prototypes are simply more _intuitive_ than classes." OO-design says that X is-a Y…

  22. comment
    Comment #3767079

    The language is interesting, at the very least -- concurrency primitives are nice, and the interface-based type system works for most cases (generic containers notwithstanding). Th…

  23. comment
    Comment #3544034

    Does http://www.corsofamily.net/jcorso/vi/ not work for you?

  24. comment
    Comment #3099405

    You can even go farther than that -- return true on success, and anything else on failure, and you get the semantics this person wants. If the results should be saved, that should …

  25. comment
    Comment #3045259

    Actually, they're _not_ both equal to infinity, in the mathematical sense (which I believe you're discussing) -- X / 0 is undefined. What's equal to infinity is the limit of 1 / x …