Viewing profile — karaziox
karaziox
HN member- Joined
- Thu, Mar 01, 2012, 6:09 AM UTC
- HN karma
- 104
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About karaziox
No profile information was provided.
Recent public activity
-
comment
Comment #48740746
They offer (extremely) discounted Claude prices but you have to go through their gateway. They subsidize part of that, and they get the low price by reselling unused Max capacity, …
-
comment
Comment #46951445
This doesn't feel like a real question... Slack free tier is basically crappy Discord, limited message history, no voice channels, huddles are also behind the paying tiers. It is b…
-
comment
Comment #45749893
In your example the src would be the "machine that is behind a NAT". That's the one the peer relay enable access to. And then all your other devices (that laptop) can reach it thro…
-
comment
Comment #14456308
But NIST didn't make that clear. The thing they made clear is in fact the exact opposite and the OP mentions it. They called it SHA-3, saying to the world that this was a better SH…
-
comment
Comment #11247314
Because cloning the dependency is not the issue here. CocoaPods is keeping its index in a git repo that is updated by the user as a way to get the latest index. This is the repo th…
-
comment
Comment #11030888
It will be exactly the same as 1.5.3 normally since no feature are added in those releases. The key generation problem had no visible impact on the tls negociation, it simply resol…
-
comment
Comment #10898544
If you can't track the binaries you are running you have a bigger problem than recompiling some of them. Security issues aren't the one in a decade thing, if you can't easily locat…
-
comment
Comment #10670622
Well, the specification defines two negociation procedures. You are not forced to support both, you are not even forced to support one, but then how would you make use of it? And y…
-
comment
Comment #10634892
Because this one involve checking duplicates and does a fair amount of logic. When the process is crashing, all bets are off and you may not be able to allocate memory for this pro…
-
comment
Comment #9181797
A quick google search gave this page : https://www.cloudflare.com/ips I think this is what you want.
-
comment
Comment #7817878
They are doing it. If you have a slow connection and the video start to buffer a lot, there is a banner that appear right under the video linking to the video quality report. I saw…
-
comment
Comment #5974095
The Internet is a technology helping others track and pigeonhole you. Will you stop using it? And telephone? And everything? Seriously, everything can be "corrupted" to be used aga…
-
comment
Comment #5964917
Yes Golang is the "complete name", at least way more than "Google Go", since Go isn't affiliated directly with Google anymore.
-
comment
Comment #5958178
The formatting style is standardized by go (Enforced by gofmt) and they made the choice of tabs over spaces :) http://golang.org/doc/effective_go.html#formatting
-
comment
Comment #5760244
Go was never designed for "realtime". Also, 32 bits wasn't the main compiler focus, 64 bits was. This problem being mainly fixed with the 1.1 release, this is a non issue now. The …
-
comment
Comment #5760182
Well some persons are ready to trust Go even for this http://andrewwdeane.blogspot.de/2013/05/the-reliability-of-g...
-
comment
Comment #5759834
These benchmarks seems to rely heavily on math operations and the Go bench seems compiled with gc. I suspect that gccgo with the latest runtime (There was no release of gcc with th…
-
comment
Comment #5759784
go func(){ channel Here, you will never actually block on your send since it runs on it own goroutine. I can't see an actual use case for this kind of thing but since you are using…