Viewing profile — alilleybrinker
alilleybrinker
HN member- Joined
- Tue, Jul 28, 2020, 9:11 PM UTC
- HN karma
- 413
- Public activity
- 77 items
- HN profile
- View on Hacker News ↗
About alilleybrinker
(I'm linking my keytrace.dev: did:plc:geozyv62fx63m7jhr4eraubc)
Recent public activity
-
comment
Comment #49186022
Product-market fit. Based on prior Oxide announcements, they've been clear the raising is in large part about building out manufacturing to meet customer demand. In venture capital…
-
comment
Comment #48702093
It’s in the book. That’s the entire point of the book.
-
comment
Comment #48371896
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 s…
-
comment
Comment #47354036
Did you read the article? The author makes exactly that point.
-
comment
Comment #47090807
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’…
- story
-
comment
Comment #46654061
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 wor…
- story
-
comment
Comment #44618731
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 themselv…
-
comment
Comment #43976161
There's also the Common Weakness Enumeration (CWE), a long-running taxonomy of software weaknesses (meaning types of bugs). https://cwe.mitre.org/
- story
-
comment
Comment #42342598
The project maintainers had to both: 1) Decide to use the highly risky `pull_request_target` Actions trigger instead of the much safer `pull_request` trigger, 2) include in their A…
-
comment
Comment #42342578
The repository maintainers are running actions for PRs with the `pull_request_target` trigger, which gives full access to target repository secrets with write permissions. It's ver…
-
comment
Comment #41941428
There’s likely some amount of code which would not be rewritten into Rust but which would be rewritten into safe C++. Migrating to a whole new language is a much bigger lift than u…
-
comment
Comment #41940831
Alternatively, Rust's cell types are proof that you usually don't need mutable aliasing, and you can have it at hand when you need it while reaping the benefits of stronger static …
-
comment
Comment #41940821
Not everything will be rewritten in Rust. I've broken down the arguments for why this is, and why it's a good thing, elsewhere [1]. Google's recent analysis on their own experience…
-
comment
Comment #41940251
The article makes the particularly good point that you generally can’t effectively add new inferences without constraining optionality in code somehow. Put another way, you can’t d…
-
comment
Comment #41940225
It ought to be easier to get a blank slate of a small device with some compute power and a screen, like the Kindle here, without having to jailbreak something.
-
comment
Comment #41931863
Nice to see they identified Rust as a common language across many of the categories they surveyed! They specifically call out tooling, even for other languages, being written in Ru…
-
comment
Comment #41931834
Here’s an article [1] quoting Walgreens’ CFO who, on an earnings call in early 2023, offered that Walgreens had in prior quarters likely overblown the level of shrink they were exp…
-
comment
Comment #41931813
Right. A huge part of the value proposition of enterprise kernels is the stability, which you pay a cost for in the form of backporting and maintenance. That’s the thing that makes…
-
comment
Comment #41930875
Greg KH's comment about not letting yourself be limited today by the needs of commercial users of old kernels is a good one [1]. That would be a tail wagging the dog situation, whe…
-
comment
Comment #41929902
Mickos is quoted: "The power of open source is not that we agree and get stuff done; it is that we disagree and get stuff done. That’s the true power when you have a governance mod…
-
comment
Comment #41929765
I definitely agree on the mission alignment and strong ethical orientation of non-profit work being a big motivator. I've worked for MITRE, a non-profit that runs Federally Funded …
-
comment
Comment #41929739
Very interested in exploring how this will compare to Diesel [1] and SeaORM [2], the other two options in this space today. Joshua Mo at Shuttle did a comparison between Diesel and…