HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Warwolt

107 karmajoined vor 7 Jahren

comments

Warwolt
·vor 5 Tagen·discuss
Nice article! Having little interactive examples I think is fantastic, and makes the text really utilize it's medium well.

The text was mostly a refresher for me who already knew the subject, but I would heartily recommend it to colleagues with less hardware know-how
Warwolt
·vor 3 Monaten·discuss
Can someone give a tl;dr? Feels like a whole lot of preamble in the article
Warwolt
·vor 3 Monaten·discuss
That's not a good analogy. A good mathematician isn't necessarily dealing with calculations, i.e. long division, but rather with proof.

No-ones becomes a good mathematician without first learning to write simple proofs, and then later on more complex proof. It's the very stuff of the field itself.
Warwolt
·vor 3 Monaten·discuss
Actually, I think this is a case where LLMS _can_ be useful. If we're prompting for small enough outputs, for examples around things we can already sort of reason about it, we're able to judge whether or not what's presented to use makes sense.

Presumably you're also reading some kind of learning text about the Chinese language, so the sole source isn't just the LLM?

In my experience, asking an LLM to produce small examples of well-known things (or rather, things that are going to be talked about frequently in the training data, so generally basic or fundamental topics) tend to work fine, and is going to be at a level where you yourself can judge what's presented.

I think the real danger is when a person is prompting things they don't know how to verify for themselves, since then we're basically just rolling dice and hoping
Warwolt
·vor 3 Monaten·discuss
Unfortunately in the majority of organizations, the idiots are at the wheels. It's not people with actual experience of how engineers do things, that dictates what those engineers should do.
Warwolt
·vor 7 Monaten·discuss
But common, collouqialy "Garbage Collection" as a language feature refers to a run time garbage collector.

Saying that the language has GC just because it has opt-in reference counting is needlessly pedantic
Warwolt
·vor 7 Monaten·discuss
> they either must be bought at an increasing steep price
Warwolt
·vor 8 Monaten·discuss
It's a variable simply because it doesn't refer to a specific object, but any object assigned to it as either function argument or by result of a computation.

It's in fact us programmers who are the odd ones out compared to how the word variable has been used by mathematics and logicians for a long time
Warwolt
·vor 9 Monaten·discuss
Making a distinction between pure and effectful functions doesnt require any kind of effect system though.

Having a language where "func" defines a pure function and "proc" defines a procedure that can performed arbitrary side effects (as in any imperative language really) would still be really useful, I think
Warwolt
·vor 9 Monaten·discuss
Who cares? That's just semantics. If we define science as the systematic search for truths, then mathematics and logic are the paradigmic sciences. If we define it as only empirical search for truth then perhaps that excludes mathematics, but it's an entirely unintersting point, since it says nothing.
Warwolt
·vor 10 Monaten·discuss
To be fair, presumably debug printig could be "escaped" from the effect type checking if the designer of an effect system would want it. For instance, debug printig in Haskell completely sidesteps the need for the IO Monad and just prints in whatever context