Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
karaziox
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
karaziox
3mo ago
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, there's been a few posts on that in the past months. Pe
2.
▲
by
karaziox
7mo ago
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 basically worse on all aspects unless you start paying
3.
▲
by
karaziox
11mo ago
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 through the peer relay. I was also a bit confused
4.
▲
by
karaziox
9y ago
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 SHA-2. If they wanted to make clear that SHA-3 wasn'
5.
▲
by
karaziox
11y ago
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 that incur a lot of requests from everyone. Go get on the othe
6.
▲
by
karaziox
11y ago
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 resolved a flaw in the key generation process.
7.
▲
by
karaziox
11y ago
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 locate which code has to be updated, you are in tr
8.
▲
by
karaziox
11y ago
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 you are also free to negociate it another way should you deci
9.
▲
by
karaziox
11y ago
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 processing. This is why they simply dump all there is to stderr
10.
▲
by
karaziox
12y ago
A quick google search gave this page : https://www.cloudflare.com/ips I think this is what you want.
11.
▲
by
karaziox
12y ago
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 it yesterday
12.
▲
by
karaziox
13y ago
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 against you...
13.
▲
by
karaziox
13y ago
Yes Golang is the "complete name", at least way more than "Google Go", since Go isn't affiliated directly with Google anymore.
14.
▲
by
karaziox
13y ago
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
15.
▲
by
karaziox
13y ago
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 memory model seems pretty well defined without being too res
16.
▲
by
karaziox
13y ago
Well some persons are ready to trust Go even for this http://andrewwdeane.blogspot.de/2013/05/the-reliability-of-g...
17.
▲
by
karaziox
13y ago
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 the 1.1 runtime yet) can show prettier results with the use of
18.
▲
by
karaziox
13y ago
go func(){ channel <- data }() 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 this argument over and over then.. :)