Live data from Hacker News

Viewing profile — drewolson

drewolson

HN member
Joined
Thu, Feb 05, 2009, 5:25 PM UTC
HN karma
636
Public activity
39 items

About drewolson

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #12500214

    Reviews are very exciting, but seem to be unable to fit the following use case: I want to setup a repo such that a subset of collaborators (or organization members) can merge revie…

  3. story
  4. comment
    Comment #9702422

    Ah, thanks.

  5. comment
    Comment #9701738

    Can you reference the part of the proposal that states this? I'm reading the following points: > $GOPATH/src/foo will be imported as foo by non-main package $GOPATH/src/mypkg/p. > …

  6. comment
    Comment #9701596

    Am I understanding correctly that this proposal again side steps / ignores pinning dependencies for libraries? To me, this is the biggest current problem in the ecosystem and, as a…

  7. story
  8. comment
    Comment #9458910

    How is this different from godep[1] other than being the root of its own GOPATH and having a different naming convention for the location of vendored dependencies? [1] - https://gi…

  9. comment
    Comment #9238664

    Author here. You're right. I removed references to "pure" in the article.

  10. comment
    Comment #9028762

    Does jitpack currently support repositories in Github Enterprise?

  11. story
  12. comment
    Comment #8673870

    This whole "framework fatigue" thing is going reductio ad absurdum. Convenience is not bad. _Too_ much convenience traded for opacity is bad. As someone with a Phoenix app running …

  13. story
  14. story
  15. comment
    Comment #6922395

    I'm confused, you're questioning the author's sincerity in expressing his own enjoyment of pair programming? I deeply enjoy pairing. I know quite a few folks that do as well.

  16. story
  17. comment
    Comment #6049701

    I think the point is, if you write map like this you might as well be using a dynamically typed language in the first place because you're deriving no benefit from the type checker…

  18. comment
    Comment #5992114

    Thanks (and thanks to pron). I've updated the post to include a warning against using Thread/sleep in go blocks for "real" code.

  19. comment
    Comment #5992025

    Author here. From what I've read/seen, the go blocks are lightweight thread-like processes multiplexed onto a thread pool. You may be correct about using Thread/sleep, ideally I wo…

  20. story
  21. story
  22. story
  23. story
  24. story
  25. comment
    Comment #4126450

    I noticed you're using tornado but appear to be using the standard (non-evented?) python redis library. Does using this library block tornado's event loop? Did you look at other to…