HN user

striking

12,114 karma

h@robertstolarz.fastmail.com (no ads, please) https://github.com/robstolarz/

topcolor: 77dd44

[ my public key: https://keybase.io/striking; my proof: https://keybase.io/striking/sigs/QKCbMGAwCajv-YwVw78Vp00WB1YoOhCJyxc_nB-zW3U ]

I speak for the trees, for they have no tongues (unlike any of my employers; be they past, present, or future; for they have legal teams)

Posts303
Comments2,586
View on HN
hardware.slashdot.org 1mo ago

DirecTV's Secret War on Hackers (2001)

striking
2pts0
sfcam.live 2mo ago

SF Bay Area Webcams

striking
3pts0
docs.rs 2mo ago

you_can::turn_off_the_borrow_checker

striking
54pts22
cloudappreciationsociety.org 4mo ago

Cloud Appreciation Society

striking
1pts0
www.adafruit.com 6mo ago

Micro SD Card Extender – 68cm (26 inch) long flex cable

striking
2pts0
www.science.org 10mo ago

Stirring Bars Are Superstition?

striking
4pts0
www.bloomberg.com 1y ago

Sequoia Partner Maguire's Posts on Mamdani Spark Founder Petition

striking
19pts5
rawandferal.substack.com 1y ago

Fuck Run Club, Join Sit Club

striking
76pts56
www.youtube.com 1y ago

Technology isn't fun anymore [video]

striking
3pts0
en.wikipedia.org 1y ago

Bathos

striking
1pts0
jaycarlson.net 1y ago

The Amazing $1 Microcontroller (2017)

striking
3pts1
github.com 1y ago

Git-absorb: Git commit –fixup, but automatic

striking
451pts271
www.youtube.com 1y ago

There's no such thing as a fish [video]

striking
1pts0
code.divshot.com 1y ago

Geo for Bootstrap – A Theme for Twitter Bootstrap, from Divshot

striking
2pts1
www.bennorthrop.com 2y ago

Always Do Extra (2021)

striking
2pts1
www.bloomberg.com 2y ago

A Traffic Engineer Hits Back at His Profession

striking
1pts1
github.com 2y ago

Show HN: Exceptional-watchdog: breaks out of Node.js event loop stalls

striking
1pts0
forum.wordreference.com 2y ago

Essence Game

striking
1pts0
www.theatlantic.com 2y ago

The Truth About Organic Milk

striking
7pts0
arstechnica.com 2y ago

A day driving high-downforce cars at VIR taught me I'm OK being slow (2018)

striking
1pts0
www.politico.com 2y ago

Solano County Voter Views of the California Forever Development Proposal

striking
2pts0
aider.chat 2y ago

Claude 3 beats GPT-4 on Aider's code editing benchmark

striking
3pts0
www.seriouseats.com 2y ago

The Food Lab's Chocolate Chip Cookies Recipe

striking
4pts0
www.tunetheweb.com 2y ago

What does the image decoding attribute do?

striking
1pts0
blog.beeper.com 2y ago

How Beeper Mini Works

striking
131pts3
www.bloomberg.com 2y ago

Tesla Faces Blockade at Swedish Ports over Labor Dispute

striking
3pts1
www.google.com 2y ago

Sqrt(0xFFFF)

striking
5pts1
arstechnica.com 2y ago

RIP to my 8-port Unifi switch after years and years of Texas outdoor temps

striking
41pts58
en.wikipedia.org 2y ago

Tittle

striking
4pts0
www.reuters.com 2y ago

At Taser maker Axon, ex-staffers say loyalty meant being tased or tattooed

striking
127pts74

The fixed consumption plans are offering several times their worth compared to API pricing with completely free cache reads: https://she-llac.com/claude-limits

I look at that and think that they must be losing money hand over fist on something like this, not that this shows what their margins are like. If their margins are like this then I don't see why they'd be raising money and shuffling it around in circles.

If it's really that easy to get better coding performance, why haven't the chinese labs replicated it?

Nobody said it would be easy! I just think it's possible, and that presumably they will get around to doing it at some point.

I'm arguing we can't trust retail prices because the marginal pricing isn't meaningfully connected to it anyway.

But if we have to look at what we think margins might look like, DeepSeek continues to host v4 Flash at the existing price despite competitors beating it in price (https://openrouter.ai/deepseek/deepseek-v4-flash), so there's at least one example of a Chinese lab charging a predetermined price despite competition. And no one but Moonshot is hosting Kimi K3 yet (https://openrouter.ai/moonshotai/kimi-k3). Perhaps there's room in the market for those who release their models to make margin on them.

And I believe my Composer example speaks for itself. The open models are behind but there's tangible proof they can be tuned for pareto frontier efficiency. See "Cost per Task" at https://artificialanalysis.ai/agents/coding-agents.

Sure, let's have a look...

I highly doubt that Chinese models are cheaper to serve on a marginal cost basis, they just seem cheaper because Anthropic and OpenAI are so supply constrained that they are charging far more than they would if there were sufficient supply to meet the demand for intelligence. [emphasis mine]

I guess I'm missing the part of this article where they bring hard numbers in to back up the argument here. What work was attempted? https://cursor.com/evals shows the previous generation of open models (Kimi K2.7) trading blows with the others, cost effectively. Composer 2.5 is itself a fine-tune of K2.7, and it's apparently quite token efficient, so why would it be impossible for a Chinese lab to achieve something similar? GLM 5.2 Max is also ranked above the lower end OpenAI models and is not far off in price.

It's weird to have this entire discussion about tokenomics without mention of the circular financing and debt raised by labs in the West, which can then essentially give away their capacity to end users. OpenAI giving away quota resets to subscribers like candy on Halloween while their compute partner Oracle's bonds is reevaluated to be one grade above junk? How?

I don't think you can make an argument about the future one way or another by arguing using the listed prices. The math is not internally consistent enough for it.

I've played through the whole of story mode with no more than a few rare world streaming issues and that was a couple years ago. You could give it another shot, I recommend binding the gyro to one of the back grip buttons for precise aim.

Better yet, get the original release of GTA: San Andreas. It holds up to several replays in a way that GTA V does not imo.

It just is what it is. Sometimes you want to write the obvious query without the DB getting in your way, and other times you want to know as soon as possible that you're doing something that won't scale under exponential load. At this point in my career I prefer the latter, but the former will always have a special place in my heart.

Maybe one day I’ll learn to read a query plan.

With SQLite's `.expert` mode you can delay that day a little longer: https://www.sqlite.org/cli.html#index_recommendations_sqlite...

  sqlite> CREATE TABLE x1(a, b, c);                  -- Create table in database 
  sqlite> .expert
  sqlite> SELECT * FROM x1 WHERE a=? AND b>?;        -- Analyze this SELECT 
  CREATE INDEX x1_idx_000123a7 ON x1(a, b);

  0|0|0|SEARCH TABLE x1 USING INDEX x1_idx_000123a7 (a=? AND b>?)

  sqlite> CREATE INDEX x1ab ON x1(a, b);             -- Create the recommended index 
  sqlite> .expert
  sqlite> SELECT * FROM x1 WHERE a=? AND b>?;        -- Re-analyze the same SELECT 
  (no new indexes)

  0|0|0|SEARCH TABLE x1 USING INDEX x1ab (a=? AND b>?)
Also wrt

My approach so far has been to just do these cleanup operations in small batches so that I don’t need to do database queries that take more than 5 seconds to run. This whole experience has given me more of an appreciation for why someone might want to use a “real” database like Postgres which can have more than one writer at the same time though.

The advice for those " “real” " databases is generally to also do cleanup operations in small batches, they just tend to make it less obvious you're doing something unperformant in the smaller case. You're more right than you thought!

This might be good advice for people who haven't already had the rest of the living optimized out of their lives. But not everyone is so lucky...

Also, the article kind of agrees with what you're saying, even if you don't realize it. Any exercise, even if it's not organized like a weight lifting regimen might be, might be enough to keep you healthy. I think leaning into that could make exercise more genuinely enjoyable for many more people, instead of just an exercise in optimization.

I think there is in fact a discrepancy between displaying flags and advocating directly for gendered violence:

Debian contributor "NoisyCoil" said that they had wanted to argue in favor of keeping the packages, but after looking at the content they had decided against it:

> I went peeking at the package and, unless I'm completely missing something, the second offensive Italian fortune says that women's "no"s should be interpreted as "yes", while the third one explicitly calls for violence on women [1]. Like, it literally says women should be beaten on a regular basis. I'm afraid I can't help you here, sorry.

from https://lwn.net/Articles/1031750/, linked in the fine article

Claude Science 22 days ago

https://xcancel.com/AnthropicAI/status/2070665903440871779

Anthropic @AnthropicAI Jun 27, 2026 · 12:29 AM UTC

Since June 12, we’ve been working closely with the US government to restore access to Claude Mythos 5 and Fable 5. Today, the government notified us that Mythos 5, our strongest cybersecurity model, can be redeployed to a set of US organizations that operate and defend critical infrastructure.

We’re restoring access for these organizations quickly, and we’re continuing to work with the government to expand access to Mythos 5 and make Fable 5 available for general use again.

Yep. The only place I have had anything like this is at the University of Connecticut dairy farm. They make the ice cream on campus from dairy cows that live on campus. And it's lovingly made by bushy-tailed, bright-eyed students, so the technique is immaculate as well.

There are some facsimiles where I live now but nothing could ever replace the real thing.

I've not personally had it but from my experience with fresh high quality high milk fat dairy (which I believe Soviet ice cream to be), the richness, high fat content, lack of air bubbles and stabilizers help keep it from melting.

And when we do let them self-regulate (like Boeing) shit hits the fan a few years later (737 MAX et al.) like clockwork.

Unfortunately I have just as little trust in this instance of the US government as I do the corporations. Hopefully it's only two more years of this.

From https://www.newsweek.com/brian-thompson-muder-health-insuran...

The fatal shooting of UnitedHealthcare CEO Brian Thompson has prompted healthcare executives to say they will address growing frustrations among Americans struggling with access to and costs of medical care.

From https://www.cnn.com/2025/06/23/health/health-insurers-preapp...

Months after the killing of a top health insurance executive unleashed Americans’ pent-up anger over denials of medical care, the industry announced Monday that it will take action to “streamline, simplify and reduce” the preapproval process.

However, from https://www.cnn.com/2025/12/04/health/insurers-prior-authori...

However, multiple provider associations and patient advocacy groups interviewed by CNN say that little, if anything, has changed over the past year.

So, hard to say for sure.

Take for example https://github.com/rust-stdx/stdx/tree/main/itoa. Its licenses and copyright information have been stripped. You are permitted to make copies of code under the MIT license, but the license also includes:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

If the original repo were to disappear, it would be important to know who wrote the code and what the license actually is.

1. Spoilage claims are not usually covered by insurance if the power interruption starts at the utility company instead of in your building. It's pretty rare that anyone knows to ask for that particular endorsement, and you're SoL without it.

2. You don't think everyone else was thinking the same thing?

Also, you can just have sympathy for people even if it were their own mistake. It doesn't cost you anything.