Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Too
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
17 ms
·
1.
▲
by
Too
1mo ago
Mods, I think there is something wrong with the front page algorithm. This post has been stuck there for more than a year now. Among with assorted thoughts on AI or new model point release announcements.
2.
▲
by
Too
1mo ago
> 36 billion ads needing review annually This would mean every single user gets 10 uniquely personalized ads per year. Even if that wasn't hilariously unreasonable by several orders of magnitude, if the moderation cost was was inclu
3.
▲
by
Too
2mo ago
Gerrit manages stacked changes with standard git tooling, except for the tiny change-id hook. Similar stable change identifier is also what enables Jujutsu to do its magic. Standardizing around something like this would be greatly beneficia
4.
▲
by
Too
2mo ago
This emphasizes the problem even more. Only one out of ten people use the force push approach, most others add commits to the PR. Allowing two different workflows – even within the same project – just shows the lack of strategy for how this
5.
▲
by
Too
2mo ago
On iOS the whole page jumps up and down when you try to grab it.
6.
▲
by
Too
2mo ago
> We're also addressing the most common papercuts of existing tools, such as making scrollback, selection, and scrolling all work natively. Goes ahead and butchers the browser scrollbar.
7.
▲
by
Too
2mo ago
Does this mean that AV1 on Youtube will finally not melt my CPU, while my nvidia GPU is asleep, or is this just an enabler that will require more work to build upon?
8.
▲
by
Too
2mo ago
> The mistake is upstream of the architecture diagram. People price agents the way they price people: senior time is expensive, so minimize senior involvement. > But the expensive part of an agent's day is not the fixing, buil
9.
▲
by
Too
2mo ago
Even without AI, a large part is also that everything easy and relevant has already been asked and answered. 10 years ago, there was still demand for low hanging ”how do I reverse a string in programming language X”. On top of that, languag
10.
▲
by
Too
3mo ago
Fill with what stuff exactly? The only thing I want to inherit from the parent process is its cwd and environment variables, even those are often overridden. The rest can easily be passed explicitly through other channels like pipes or comm
11.
▲
by
Too
7mo ago
This does not match my experience. Terraform validate will check for types and you have great IDE support with refactor, find usages, resource documentation and everything else you might expect. You can of course build a monster of untyped
12.
▲
by
Too
9mo ago
Sure you can secure boot the kernel and the game binary itself but then you have all the surrounding support from the OS that also need to interop without being tamperable. Screenshots, network and input devices for example are routed throu
13.
▲
by
Too
9mo ago
> The best Valve could do is offer a special locked down kernel with perhaps some anticheat capabilities and lock down the hardware with attestation. That would require essentially turning it into a console or Android.
14.
▲
by
Too
9mo ago
GitHub desperately needs a feature to pin comments in issues or sort by reactions. Very often in those infamous bugs that has been open for years, having hundreds of ”me too” comments, there are gems with workarounds or reproductions, unfor
15.
▲
by
Too
9mo ago
What’s the benefit of manually pasting a massive prompt and enable egress to make queries over http vs just using MCP?
16.
▲
by
Too
9mo ago
That’s if you run a OS version older than 5 years. You can still update to a newer Ubuntu version for free and get another 5 years if you pick an LTS version.
17.
▲
by
Too
9mo ago
To be honest Linux desktop has been ready for the past 4-5 years or so. Long gone are the days where Bluetooth suddenly stopped, external monitors crashing and when closing the lid only put the laptop to sleep every fifth time. Heck, even W
18.
▲
by
Too
9mo ago
Beyond LiteralString there is now also t-strings, introduced in Python 3.14, that eases how one writes templated strings without loosing out on security. Java has something similar with Template class in Java 21 as preview.
19.
▲
by
Too
9mo ago
When was the last time you used a library computer, let alone logged onto a private service with it? This was a bad idea even 20 years ago. In today’s security climate, aw hell no.
20.
▲
by
Too
9mo ago
Simple: include those relevant details in the exceptions instead of hiding them.
21.
▲
by
Too
9mo ago
Agree with the post. The job of blackbox is to turn probes into metrics. If a probe fails, that should just become a probe_success=0 metric. Blackbox did its job and should not log an error.
22.
▲
by
Too
9mo ago
This is why it’s almost always wrong for library functions to log anything, even on ”errors”. Pass the status up through return values or exceptions. As a library author you have no clue as how an application might use it. Multi threading,
23.
▲
by
Too
9mo ago
Is anyone paying for Prime just for streaming? I always saw it as a nice bonus included with free shipping and all the other discounts you get on Amazon, it breaks even very quickly. It cost half of a Netflix subscription. The content is al
24.
▲
by
Too
9mo ago
If I understand correctly, this is essentially a more composable way to write Dockerfiles? That alone is a very welcome improvement. They would do themselves a big favor if they were more clear on that in their marketing, instead of boastin
25.
▲
by
Too
9mo ago
But that dependency order is usually just one big blob of ”COPY src/ . + RUN make”, within that block you have none of the benefits. Bazel/Buck has much finer awareness down to every individual file. Out of curiosity, would it be
26.
▲
by
Too
9mo ago
From a definition point of view that might be right and it’s no doubt a good step up, compared to continuing with tainted data. In practice though, that is still not enough, these days we should expect higher degree of confidence from our c
27.
▲
by
Too
9mo ago
Can someone give a tldr of what makes fil-c different from just compiling with clang’s address sanitizer? Calling it memory safe is a bit of a stretch when all it does is convert memory errors to runtime panics, or am I missing something? I
28.
▲
by
Too
10mo ago
To optimize that code snippet, use temporary variables instead of member lookups to avoid slow getattr and setattr calls. It still won’t beat a compiled language, number crunching is the worst sport for Python.
29.
▲
by
Too
10mo ago
You should also factor in that a zero-day often isn’t surfaced to be exploitable if you are using the onion model with other layers that need to be penetrated together. In contrast to a supply chain vulnerability that is designed to active
30.
▲
by
Too
10mo ago
Rust compiles to wasm right?
More ›