Viewing profile — tux21b
tux21b
HN member- Joined
- Wed, Jul 17, 2013, 11:15 PM UTC
- HN karma
- 55
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About tux21b
No profile information was provided.
Recent public activity
-
comment
Comment #40328602
I hate that PeaZip does not support passwords with a quotation mark (") in the UI. I haven't reviewed the code, but I am assuming that they are neither passing the password via a v…
-
comment
Comment #22651327
Sure, large companies can easily run a on-premise coordination server. But large companies usually also have a network department and several other SDN and VPN solutions already. T…
-
comment
Comment #22645754
I guess you can call it that. You can start it on all your devices (e.g. laptop, PC, phone, tablet, Docker containers, etc.) and it will assign a fixed IP to each of them. Using th…
-
comment
Comment #22645458
Thanks for the blog post. I am following the project closely since Brad announced working for you. My main concern currently is the coordination server which does not fit the zero …
-
comment
Comment #10286007
"evil minions" are not yellow. Did you know that? :D
-
comment
Comment #6347765
The most obvious pattern, a simple for loop and a separate iterator type, is imho missing. Something like "for iter.Next() { fmt.Println(iter.Value()) }" is commonly used in Go and…
-
comment
Comment #6124331
The easiest way would be to store everything you can on the stack. The Go compiler does a very good job at escape analysis and tries to put everything on the stack that does not es…
-
comment
Comment #6123408
Go's GC isn't nearly as powerful as any of the many GC implementations for the JVM, but Go's approach is also quite differently. In Go, you can reduce / avoid the garbage that you …
-
comment
Comment #6110889
I was thinking about that too, but since it is not possible to change existing items and the computation of those items must be re-entrant (groupcache just tries to avoid duplicate…
-
comment
Comment #6060782
I was just criticizing the publishing skills of some people... The problem itself is unfortunate and I am personally not a huge fan of the "no API changes" philosophy participated …
-
comment
Comment #6060718
Yes, Roger Peppe, one of the Go contributors, had exactly the same issue, but luckily Brad and Russ, two core devs, were able to solve the mystery immediately and updated the docum…