Live data from Hacker News

Viewing profile — hueyp

hueyp

HN member
Joined
Wed, Aug 15, 2012, 4:58 AM UTC
HN karma
100
Public activity
40 items

About hueyp

No profile information was provided.

Recent public activity

  1. comment
    Comment #43870401

    Yes, he was appointed dictator before the consulship of varro / paullus, but his strategy proved unpopular. It makes sense: identity is hard and slow to change, and the romans had …

  2. comment
    Comment #11877470

    `REQUIRED_CHILDREN` used to not be in docs -- only code. This is what I had in mind when I said partial. I don't know which, but I think one of the `RANGE_DELETE` vs `NODE_DELETE` …

  3. comment
    Comment #10259264

    > if the rates are much higher compared to a marginal increase in risk Exactly. Same thing with public records -- having a public record could very well mean you have a higher defa…

  4. comment
    Comment #10217921

    Yes, but GraphQL is just a thin layer so you can call your existing API's from GraphQL. For example you could start with GraphQL calling an existing HTTP service and go from there.…

  5. comment
    Comment #10172622

    Katahdin -- the northern terminus -- is the hardest climb of the trail and is the biggest focal point regarding the discussion of overcrowding.

  6. story
  7. comment
    Comment #9194026

    I wouldn't call it a software layer implosion -- most people are going to continue to use abstractions on top of these API's for game development. Unity is to Rails, etc ...

  8. comment
  9. comment
    Comment #9040728

    The event is the transaction. For example of I have a 'make_user_preferred' event, I just transact the database and then add any metadata I need to the Datomic transaction. Datomic…

  10. comment
  11. comment
    Comment #8962306

    Swapping out inner html has issues such as losing form data and bound events (etc...). Ignoring that you also have life cycle issues. For instance if you have a component that need…

  12. comment
    Comment #8875699

    SelectMany is flatMap. Could the java equivalent be? articles.stream().flatMap(article -> article.getTags().stream()) Or is the previous map required?

  13. comment
    Comment #8662692

    I've watched a presentation where (I think) Linkedin talked about their use of node.js. They used it as an API Gateway ( http://microservices.io/patterns/apigateway.html ). The mai…

  14. comment
    Comment #8032203

    http://queue.acm.org/detail.cfm?id=2187821 Section: "Zero or more times ... gauranteed" "When considering the behavior of the underlying message transport, it is best to remember w…

  15. comment
    Comment #8032135

    This paper describes ideas around #2: http://www.ics.uci.edu/~cs223/papers/cidr07p15.pdf But yes, your database stores the status of a message. At this point you could drop every s…

  16. comment
    Comment #8019911

    I generally append 'mdn' to any search that would normally result in w3schools.

  17. comment
    Comment #8019846

    I would add: 'Hey Underscore, You're Doing It Wrong' -- http://www.youtube.com/watch?v=m3svKOdZijA It is much better than the title would suggest :)

  18. comment
    Comment #7740066

    Hydrogen is no different then what you spell out as downsides for electric vehicles. The best source of hydrogen is natural gas. In order to get hydrogen from non-fossil fuel sourc…

  19. comment
    Comment #6941591

    Know of any resources of using clojurescript + react without Om (while we wait for more awesome)? Would the idea be calling setState from an atom's watch and transforming the map t…

  20. comment
    Comment #6276783

    One thing those analogies miss is that starcraft is an imperfect knowledge game. You don't know everything about your opponent as you would in chess and fencing. It is similar to p…

  21. comment
    Comment #6227610

    Some of them do. The Nevada Test Site includes several. http://m.flickr.com/photos/maisonbisson/15521786/lightbox/ That road heading northeast past sedan crater leads to Area 51.

  22. comment
    Comment #6209828

    Can you include a sample of a template with your custom directive? I'm not sure what the expected thing out of the box would be. (not the code of the directive, just the use)

  23. comment
    Comment #6209572

    `ng-repeat` and `ng-include` work fine for recursive data structures. http://jsfiddle.net/uXbn6/378/

  24. comment
    Comment #5992057

    Yah, for demo purposes of wanting to show something taking awhile thread/sleep is very convenient. I have no idea, time.sleep in golang might actually block a real thread too. I'm …

  25. comment
    Comment #5992032

    The i is scoped differently in clojure than in golang so it doesn't have the same potential pitfall. I think golang people consider their scoping here a mistake (and have tooling t…