Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
neild
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
neild
28d ago
The “runtime” as in the compiler runtime which provides the scheduler, garbage collector, etc.
2.
▲
by
neild
2mo ago
Many comments on generic methods. Perhaps this example will help understand a hopefully not-too-objectionable case of using them in practice. The math/rand/v2 package has a number of functions which return random numbers of a cert
3.
▲
by
neild
3mo ago
Fair enough, but that leaves us with no way to represent zone IDs in URLs at all. Neither http://[fe80::4%eth0]/ nor http://[fe80::4%25eth0]/ is valid under RFC 3986. Given that net/url has supported RFC 6
4.
▲
by
neild
3mo ago
> In theory, there is guidance for how to properly handle IPv6 zones in user interfaces in RFC 9884, but there's no such guidance for URLs. RFC 6874: Representing IPv6 Zone Identifiers in Address Literals and Uniform Resource Identi
5.
▲
by
neild
6mo ago
Mint (T-Mobile MVNO) has been great for me, $20/month/line and my one experience with international travel was good ($20 for 10 days). I used to be on Verizon and the quality of service doesn’t seem any worse while the price is dr
6.
▲
by
neild
6mo ago
Sounds ridiculous, but worked on mine! So far, the fix has stuck, too.
7.
▲
by
neild
8mo ago
Much more prosaic (if slightly embarrassing), I'm afraid: The update was non-trivial (this CL is simple, but there are some accompanying ones in x/text which are not) and it didn't hit the top of the priority list for anyone
8.
▲
by
neild
8mo ago
To be very pedantic, there are two separate services: The module proxy (proxy.golang.org) serves cached modules and makes no guarantees about how long cache entries are kept. The sum database (sum.golang.org) serves module checksums, which
9.
▲
by
neild
10mo ago
0600 and 0_600 are octal literals: octal_lit = "0" [ "o" | "O" ] [ "_" ] octal_digits .
10.
▲
by
neild
1y ago
In my experience, the Apple Watch blood oxygen monitoring was horribly inaccurate. It would report wildly variable results, often telling me that I had a blood oxygen level of 80% (which, if true, would indicate that I should be getting mys
11.
▲
by
neild
1y ago
It means we're not confident the API is stable yet. There might be further changes before the final, non-experimental version, depending on user feedback and further experience with the current proposal. In the case of encoding/js
12.
▲
by
neild
1y ago
> I really don't like how this article claims that the primary issue with Go's error handling is that the syntax is too verbose. I don't believe this claim is made anywhere. We've decided that we are not going to make
13.
▲
by
neild
1y ago
I have a 2024 Kia EV6, and this is pretty much what it does: Central screen displays CarPlay, backup camera, and infrequently-used settings controls, dials and knobs for most things, one secondary touchbar (row of buttons, but it’s really a
14.
▲
by
neild
2y ago
> I say this not to be flippant or sarcastic but rather to ask how our ancestors seemed fine with the above but we seem less so? Because by and large our female ancestors raised the children, were offered no choice in whether to raise th
15.
▲
by
neild
2y ago
The "move a branch from one commit to another without changing anything" command is "git reset". "git reset --hard" is "...and also change all the files in the working directory to match the new branch com
16.
▲
by
neild
2y ago
I do almost all my cooking on cast iron—no philosophical reason, it just works well and once I figured out how to use it I found that I pretty much always reach for a cast iron pan over stainless steel or non-stick. (Except non-stick for om
17.
▲
by
neild
2y ago
A non-blocking send doesn't work in this case. Consider: User provides DoChan an unbuffered channel, and then reads a value from it. If the send is nonblocking and occurs before the user reads from the channel, the value is lost.
18.
▲
by
neild
2y ago
Returning a channel avoids questions of what happens if sending to a caller-supplied channel blocks. DoChan returns a channel with a single-element buffer, so a single send to the channel will always succeed without blocking, even if the ca
19.
▲
by
neild
2y ago
Of possible interest to anyone testing concurrent Go code in general and time in particular, a proposed standard library package: https://go.dev/issue/67434
20.
▲
by
neild
2y ago
There are some interesting results in here, but the slower cases are a bit misleading. The majority of time in the slow cases is spent constructing errors, not in errors.Is. Some background for anyone not familiar with Go errors: A Go error
21.
▲
by
neild
2y ago
In addition, Chinese characters encode more information than English letters, so a text written in Chinese will generally consume fewer bytes than the same text in English even when using UTF-8. (Consider: Horse is five letters, but 馬 is on
22.
▲
by
neild
2y ago
The article doesn't refer to that incident, so far as I can see. It does mention Patty Hearst, who was kidnapped a year after the Stockholm bank robbery. The term "Stockholm Syndrome" originates from a police consultant inven
23.
▲
by
neild
3y ago
Bluey is the only show my kid loved, and never wanted to binge watch. He’d watch one or two episodes and then want to turn the TV off so we could play Silly Hotel or Keepy Uppy or Grannies. Where other shows grabbed his attention longer, Bl
24.
▲
by
neild
3y ago
HTTP/3 is almost indistinguishable from any other protocol running over QUIC, and QUIC itself is almost indistinguishable from random noise in UDP packets. If you want to masquerade as HTTP/3 traffic, just using UDP on port 443 wi
25.
▲
by
neild
3y ago
HTTP/3 is not vulnerable to this specific attack (Rapid Reset), because there it has an extra confirmation step before the sender can create a new stream. HTTP/2 and HTTP/3 both have a limit on the number of simultaneous stre
26.
▲
The Myth of Google’s Plus
(blog.zarfhome.com)
3 points
by
neild
3y ago
|
0 comments
27.
▲
by
neild
3y ago
Blemished, non-uniform product is turned into more processed food products or animal feed. Tomato soup isn’t made from the prettiest tomatoes. Blemished apples become applesauce. Tropicana puts a picture of a beautiful orange on the bottle,
28.
▲
by
neild
4y ago
Grocery store bay leaves are tasteless, at least around where I am. Good ones (I get them from Penney’s) are highly flavorful and add a noticeable flavor to soups and sauces. I even found myself thinking that I’d put too much bay leaf in a
29.
▲
by
neild
4y ago
One thing I find fascinating about Lolita is that it is a study in erasure. Society so often tends to erase the victim while giving the abuser a voice, especially when the victim is a child or otherwise powerless and the abuser is powerful
30.
▲
by
neild
4y ago
Humbert marries Dolores’s mother. After her mother’s death, Humbert travels to Dolores’s summer camp, takes her away, and rapes her in a hotel room. There is no seduction. There is no ambiguity about what happened. She is twelve years old,
More ›