HackerTrans
TopNewTrendsCommentsPastAskShowJobs

alilleybrinker

no profile record

Submissions

Move over Gas Town, Claude Has First-Party Agent Orchestration

alilleybrinker.com
1 points·by alilleybrinker·vor 5 Monaten·0 comments

Gas Town Decoded

alilleybrinker.com
219 points·by alilleybrinker·vor 6 Monaten·234 comments

comments

alilleybrinker
·vor 16 Tagen·discuss
It’s in the book. That’s the entire point of the book.
alilleybrinker
·letzten Monat·discuss
The section on how to do software assurance of unsafe code in Rust is excellent.

A lot of prior guidance I've seen tends to stop at the level of running Miri, but (as the article says) there are things Miri won't catch. The model-based tests with a known-good oracle and the use of fault injection (especially panic-related behavior) are really good.

Safety in the face of panics in Rust can be hard to reason about, and the standard library itself has made errors with those semantics in the past.

Great work Rain and Oxide for building something so useful and assuring it so robustly!
alilleybrinker
·vor 4 Monaten·discuss
Did you read the article? The author makes exactly that point.
alilleybrinker
·vor 5 Monaten·discuss
Wired should retract this homophobic article.

It takes an issue of people in power abusing that power, and ties it to their sexuality, as if the men abuse their power because they’re gay, or as if straight men never do similarly.

Identifying abusive power structures is good, but writing about it in a way that centers the sexuality of the participants has the effect of demonizing a whole group of people unfairly.

I am appalled that Wired published this.
alilleybrinker
·vor 6 Monaten·discuss
In situations like this I appreciate that Rust has a culture of semantic precision [1] and while this kind of API-clarification is painful in the short-term, I think it will be worth it for Linux.

[1]: https://www.alilleybrinker.com/mini/rusts-culture-of-semanti...
alilleybrinker
·vor 12 Monaten·discuss
For the disjoint field issues raised, it’s not that the borrow checker can’t “reason across functions,” it’s that the field borrows are done through getter functions which themselves borrow the whole struct mutably. This could be avoided by making the fields public so they can be referenced directly, or if the fields needs to be passed to other functions, just pass the the field references rather than passing the whole struct.

There are open ideas for how to handle “view types” that express that you’re only borrowing specific fields of a struct, including Self, but they’re an ergonomic improvement, not a semantic power improvement.