HackerLangs
トップ新着トレンドコメント過去質問紹介求人

AlotOfReading

14,616 カルマ登録 9 年前

コメント

AlotOfReading
·2 時間前·議論
Come on. Her comment was

   "What’s up Outragers, just dialing in from my NBA team’s headquarters to yell at the people whose careers I’ve just pummeled"
In a water cooler channel, while the CEO was calling in from his NBA team headquarters to announce layoffs...

It's mildly dramatized, bordering on milquetoast satire of exactly what he was doing.
AlotOfReading
·2 時間前·議論
That's a monkey's paw desire because nowhere is Hyrum's law more true than programming languages. Alternatively you just end up with something like C++ where no one understands the whole thing.
AlotOfReading
·7 時間前·議論
The somewhat abbreviated answer is that the "state" is formalized into the concept of fields. All the physical properties we can observe are from coupling with the relevant fields. The speed at which changes can propagate in fields is C, hence the speed of light being the same value.
AlotOfReading
·11 時間前·議論
Programming skill is similar to driving skill. You can hire the best people in the world and there'll still be incidents. The people who are most skilled may even be more incident-prone because they have the skills to take more risks.

Don't bet the company on no one ever making a mistake. Set up a system where the unintentional risks are minimized and the consequences of inevitable failures are mitigated by seatbelts and insurance policies.
AlotOfReading
·12 時間前·議論
If you're manually calling malloc in Rust, your code is almost certainly wrong. It might be called as an implementation detail when you create new objects, but std can generally be used as if it were managed automatically.
AlotOfReading
·12 時間前·議論
The problem is that Meta jumped headfirst into the circular financing of datacenter build out, so they're just as screwed if the infrastructure becomes less valuable.
AlotOfReading
·昨日·議論
So take 16 independent computers and have them each solve the problem separately. You'd still be saving 80% compared to the paper's benchmarks. It wasn't close.

McSherry does a lot of interesting work on making monotonic/incremental distributed systems efficient (e.g. Differential and Timely Dataflow). Those kinds of systems scale much more linearly.
AlotOfReading
·一昨日·議論
I would be pissed if my programming language changed as quickly as Claude code does. Languages need to move slowly and carefully, and zig is on the faster end of language development regardless.
AlotOfReading
·一昨日·議論
I really don't see what's supposedly awful about that loop, but if you want to count down to x instead of 0 you just do:

    for (size_t i = size - 1; i >= x; i--)
AlotOfReading
·一昨日·議論
User numbers aren't the only factor. Microsoft has a much larger presence in commercial email than Apple. I suspect an outbound email from a personal provider is far more likely to be destined for an outlook inbox than one on iCloud.
AlotOfReading
·一昨日·議論
They're not the newest kind of literature. Arthurian legends and religious canons are two examples of newer forms, neither of which I think would be typically described as "recent." I could also use the novella, and the anecdote as examples instead.
AlotOfReading
·一昨日·議論
There are many, many factories that still don't have internet access on the floor, and commercial inference generally has response latencies measured in seconds. I struggle to imagine a factory spending hundreds of thousands for the local compute to run a large model either, given how cheap they are about expenses.

I'm also skeptical that you can cleanly differentiate between "safety critical actions" and "actions", though this is less of a practical concern given how laissez-faire some manufacturers are. For context, I work on safety critical robotics (in automotive).
AlotOfReading
·一昨日·議論
By what standard are novels "recent"? The earliest novels we have originated not long after the first books (aka codices) appeared. The first modern novel was written at the same time as the king james bible, over 400 years ago.
AlotOfReading
·3 日前·議論
Only the first is written by Banks, to clear up any ambiguity. They're very different books, just similarly named.
AlotOfReading
·3 日前·議論
Unfortunately there really aren't any other books like the culture series. You might enjoy Banks' "The Algebraist" and the completely unrelated though similarly named "The Alchemist".
AlotOfReading
·3 日前·議論
No one says "I gave up on eating because restaurants kept serving me spicy food". You just order different food. A short story that's a couple pages long isn't going to waste them describing the color of buttons, and not every novelist is Tolkien.
AlotOfReading
·3 日前·議論
As a follow-up to this comment, I sat down and implemented a better method myself, then looked at the specification code to discover they did exactly the same thing.
AlotOfReading
·3 日前·議論
They're definitely a thing. The scam is people showing up and painting them without approval, demanding payment afterwards.
AlotOfReading
·3 日前·議論
It really should have been defined in terms of fixed point like HAWK was. Supposedly you'd need a large number of bits for it, but I'm not sure I find that argument particularly convincing given that floats are a kind of fixed point in log space, with a bunch of asterisks that don't help falcon much.
AlotOfReading
·4 日前·議論
You don't have to assume that. We can take each randomly oriented noodle and orient it correctly in O(1) as a preprocessing step. Since the complexity would be additive, the overall complexity remains O(N).