Viewing profile — Sajmani
Sajmani
HN member- Joined
- Fri, Mar 14, 2014, 11:05 AM UTC
- HN karma
- 16
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About Sajmani
No profile information was provided.
Recent public activity
-
comment
Comment #17405519
The "go release" command is intended to support selecting the right version for a new package release. The golang.org/cmd/api command detects incompatible API changes and so can se…
-
comment
Comment #11856282
And these numbers are 5 years old :-)
-
comment
Comment #8103711
Yes, we are working on static analysis and automated refactoring tools. We will make them available publicly when they are ready, but that won't be very soon. We wanted to publiciz…
-
comment
Comment #8103381
In Google, we use two approaches: 1) add an explicit Context parameter to each function that needs one; typically this is the first parameter and is named "ctx". This makes it obvi…
-
comment
Comment #7397976
Yes, interrupt is better, and the article explains how to do that a few paragraphs later: for n := range in { select { case out If you allow pipeline stages to interrupt their rece…