Viewing profile — drewolson
drewolson
HN member- Joined
- Thu, Feb 05, 2009, 5:25 PM UTC
- HN karma
- 636
- Public activity
- 39 items
- HN profile
- View on Hacker News ↗
About drewolson
No profile information was provided.
Recent public activity
- story
-
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…
- story
-
comment
Comment #9702422
Ah, thanks.
-
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. > …
-
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…
- story
-
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…
-
comment
Comment #9238664
Author here. You're right. I removed references to "pure" in the article.
-
comment
Comment #9028762
Does jitpack currently support repositories in Github Enterprise?
- story
-
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 …
- story
- story
-
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.
- story
-
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…
-
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.
-
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…
- story
- story
- story
- story
- story
-
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…