Viewing profile — maxbond
maxbond
HN member- Joined
- Sat, Dec 30, 2017, 6:23 PM UTC
- HN karma
- 9,409
- Public activity
- 3,733 items
- HN profile
- View on Hacker News ↗
About maxbond
Recent public activity
-
comment
Comment #49218931
There's a setting called `showThinkingSummaries` which you can enable to see them (going forward).
-
comment
Comment #49212332
You can see bathtub rings on the underside as it's lifted up. The rings are caused by it's melting faster under the water than in the air, so there's a discontinuity at the waterli…
-
comment
Comment #49192588
> If the agent itself concatenates a new URL together - with leaked data after a ? - you should block that from being fetched. You're correct of course, I just want to note that th…
-
comment
Comment #49182526
To a degree that feels intentional.
-
comment
Comment #49095835
Well, I do agree that all measurements contain error, but the point wasn't that the error rate would be greater than 0% but that a single headline summary of error can't always dis…
-
comment
Comment #49095161
If 1 in 10,000 people have a disease, then a "test" which always reports the patient doesn't have the disease will be correct 99.99% of the time. "99.99% accuracy" should be "looke…
-
comment
Comment #49075792
Claude Code is quite buggy but doesn't generally crash, which is what you would expect if it shipped an immature backend for a month. Maybe the rewrite is full of bugs and they hap…
-
comment
Comment #48658375
I don't think we have the same understanding of "insider". There are dozens to several hundred insiders at any one time. There aren't enough for them to reliably trade against ones…
- comment
-
comment
Comment #48650893
And who will they be trading with?
-
comment
Comment #48643869
You won't incorporate information from outsiders if they think they're going to get ripped off by insiders.
-
comment
Comment #48643857
I said similar, not identical. The primary role of a futures market is for consumers and producers of commodities to hedge out their risk so that they don't go bankrupt if there's …
-
comment
Comment #48643026
Lots of Unix stuff uses hooks. cron, init, bash has multiple different hook-shaped files (eg .bashrc). The Unix philosophy isn't a sacred cow, purity over pragmatism was the Multic…
-
comment
Comment #48642951
NPM has at least had the good sense to use namespaces so that it isn't entirely a free for all and is less of a high stakes game of Mavis Beacon. (You could typosquat a namespace t…
-
comment
Comment #48642771
"Better" depends on the application but more precisely it would be "real time" and may include things that are measured but rarely if ever published. A prediction market doing poor…
-
comment
Comment #48642739
Entirely possible but let's give it some time to see if they try to make it GA and if the DoD sends them a letter.
-
comment
Comment #48642658
Insider trading by, say, having direct access to the particular wind vane that grounds the market and being able to manipulate it is a problem. Being better at trading because you …
-
comment
Comment #48641376
As far as I know it is "P2P", a continuous double sided auction like any proper exchange. If there's something fishy going on with the order book I do not personally know about it.…
-
comment
Comment #48640207
If you're going to gamble, it's probably for the best that your counterparty doesn't also control the platform. I'm not saying that justifies being able to gamble frictionlessly, b…
-
comment
Comment #48639325
JavaScript can be tricky.
- comment
-
comment
Comment #48609099
Would you rather pay for a nonsensical explanation?
-
comment
Comment #48609077
And also because it creates "one neat trick" where it can answer "I don't know" for many/most things and still get credit.
-
comment
Comment #48609067
If you could write that reward function you wouldn't need an LLM, you'd just query the reward function to answer any question. You can create a benchmark and check that automatical…
-
comment
Comment #48555425
What's burned me before is iterating over hash maps. B-tree maps (or hash maps that are guaranteed to iterate in insertion order, or any fixed order) are your friend.