Viewing profile — alecrn
alecrn
HN member- Joined
- Wed, Jun 19, 2013, 3:39 PM UTC
- HN karma
- 165
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About alecrn
No profile information was provided.
Recent public activity
-
comment
Comment #13687990
My understanding is there are only scheduling guarantees around synchronization points between goroutines through chans or mutexes and stuff. Go's concurrency model is inspired by …
-
comment
Comment #13687844
But I don't think in go atomic ops are considered synchronization in the sense that they force two goroutines to synchronize at a particular point like a chan. I.e. a chan send in …
-
comment
Comment #13687698
Yeah, this particular instance seems ok to me. This one makes the example feel weirder: func main() { runtime.GOMAXPROCS(runtime.NumCPU()) fmt.Println(runtime.NumCPU(), runtime.GOM…
-
comment
Comment #11255036
As far as I can tell, intext: still forces it to always include in the results.
-
comment
Comment #9722436
If it's iodine deficiency that causes depression, then why would decreasing intake of iodized salt help?
-
comment
Comment #9203274
I always liked this as well, and in this case, tau is basically that unit. In fact, maybe we could think of tau as being short for "turn". One full rotation = tau Half a rotation =…
-
comment
Comment #9050195
That's very interesting! The alternatives to TCP that can be written in UDP which are optimized for a certain application are especially interesting to me. Working at the UDP level…
-
comment
Comment #9050177
That's the reason I wrote this for myself, and why I made https://filegrave.com , as I thought it could be useful to others as well. Git is already a great tool with a workflow for…
- story
- story
-
comment
Comment #7929694
[1] is a similar project someone else did, where he used a space-filling curve (Hilbert's curve, specifically) to plot all the RGB colors in one image, and have nearby colors be si…
-
comment
Comment #6987012
For this case, the "fast" int types are provided, eg. uint_fast8_t is the fastest unsigned integer which can hold at least 8 bits; uint8_t is required to have exactly 8 bits. http:…
-
comment
Comment #6041403
(I think you meant 2 + 2 is 4)
-
comment
Comment #6007094
For those wondering about this, this comment from another thread might help. https://news.ycombinator.com/item?id=4931899
-
comment
Comment #6007049
In one dimension I find existence, in two I find life, but in three, I find freedom.
-
comment
Comment #6002441
D uses it too. I think they use it for array concatenation as well.