HackerTrans
TopNewTrendsCommentsPastAskShowJobs

DougBTX

no profile record

comments

DougBTX
·12 วันที่ผ่านมา·discuss
Oh, thanks, that’s interesting, I thought it covered that too!
DougBTX
·12 วันที่ผ่านมา·discuss
> GPUs put the associativity of the sums in matrix multiplications in arbitrary order

That’s user-controlled too, not an inherent property of GPUs:

https://docs.pytorch.org/docs/2.12/generated/torch.use_deter...
DougBTX
·เดือนที่แล้ว·discuss
The weights are code, the prompt is code, the output is code.

Is the meat code?
DougBTX
·2 เดือนที่ผ่านมา·discuss
Zed is also released under GPL 3:

https://github.com/zed-industries/zed/blob/main/LICENSE-GPL
DougBTX
·2 เดือนที่ผ่านมา·discuss
Here's the page for the notebooks-with-maps: https://www.moleskine.com/en-us/shop/limited-editions/the-lo...
DougBTX
·3 เดือนที่ผ่านมา·discuss
> In this case it’s a relatively small dependency so it’s not the end of the world, but it’s the exact same principle.

An alternative world-view is: "A little copying is better than a little dependency," from https://go-proverbs.github.io

Does become subjective about what "small" and "little" are though.
DougBTX
·6 เดือนที่ผ่านมา·discuss
The train/test split is one of the fundamental building blocks of current generation models, so they’re assuming familiarity with that.

At a high level, training takes in training data and produces model weights, and “test time” takes model weights and a prompt to produce output. Every end user has the same model weights, but different prompts. They’re saying that the constitution goes into the training data, while CLAUDE.md goes into the prompt.
DougBTX
·6 เดือนที่ผ่านมา·discuss
I can’t tell if this is sarcasm or not! Radio buttons support keyboard navigation without JS.
DougBTX
·6 เดือนที่ผ่านมา·discuss
> but how is the result "stored"

Like this: https://huggingface.co/docs/safetensors/index
DougBTX
·7 เดือนที่ผ่านมา·discuss
Spicy:

> Use caution when using the manual door release; the window will not automatically lower when the door is opened and damage to the window or vehicle trim may occur.

Manually opening the rear doors is a destructive operation!
DougBTX
·8 เดือนที่ผ่านมา·discuss
Yes, from the article:

> To support the cluster’s massive scale, we relied on a proprietary key-value store based on Google’s Spanner distributed database... We didn’t witness any bottlenecks with respect to the new storage system and it showed no signs of it not being able to support higher scales.
DougBTX
·8 เดือนที่ผ่านมา·discuss
> Then you can roast the meat pieces in a closed glass vessel

It sounds like this is steamed meat, as opposed to roasted. Your cooking time seems to match a quick search for steamed chicken recipes: https://tiffycooks.com/20-minutes-chinese-steamed-chicken/
DougBTX
·8 เดือนที่ผ่านมา·discuss
From https://usafacts.org/articles/is-flying-safer-than-driving/

> In 2022, the fatality rate for people traveling by air was .003 deaths per 100 million miles traveled. The death rate people in passenger cars and trucks on US highways was 0.57 per 100 million miles.

Planes travel about 10x-20x faster than cars, but that’s still 0.06 vs 0.57. Seems like quite a difference. Which numbers are you using?
DougBTX
·8 เดือนที่ผ่านมา·discuss
> I want everything that passes through a function to be a copy unless I put in a symbol or keyword that it suppose to be passed by reference.

JavaScript doesn’t have references, it is clearer to only use “passed by reference” terminology when writing about code in a language which does have them, like C++ [0].

In JavaScript, if a mutable object is passed to a function, then the function can change the properties on the object, but it is always the same object. When an object is passed by reference, the function can replace the initial object with a completely different one, that isn’t possible in JS.

Better is to distinguish between immutable objects (ints, strings in JS) and mutable ones. A mutable object can be made immutable in JS using Object.freeze [1].

[0] https://en.wikipedia.org/wiki/Reference_(C%2B%2B)

[1] https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...
DougBTX
·9 เดือนที่ผ่านมา·discuss
Perhaps it has to be that way, the motivation to build a mechanical computer is based on the belief that computation can be mechanised.
DougBTX
·10 เดือนที่ผ่านมา·discuss
1999, $25 million investment: https://googlepress.blogspot.com/1999/06/google-receives-25-...

2000, launched ads: https://en.m.wikipedia.org/wiki/Google_Ads

2001, profitable: https://www.theguardian.com/technology/2001/aug/08/internetn...
DougBTX
·10 เดือนที่ผ่านมา·discuss
> Our package-lock.json specified the stable version 1.3.2 or newer

Is that possible? I thought the lock files restricted to a specific version with an integrity check hash. Is it possible that it would install a newer version which doesn't match the hash in the lock file? Do they just mean package.json here?
DougBTX
·10 เดือนที่ผ่านมา·discuss
With binary vectors, 20 dimensions will get you just over a million concepts. For a billion you’ll need 30 questions.
DougBTX
·10 เดือนที่ผ่านมา·discuss
> they often automatically pluralize, with the predictable result of seeing tables with names like addresss.

This is a very poor example, that case is literally in their unit tests file:

https://github.com/rails/rails/blob/b0c813bc7b61c71dd21ee3a6...

That test has been there over 18 years!
DougBTX
·10 เดือนที่ผ่านมา·discuss
Agreed. The article makes many references to how life would be better with explicit well-defined interfaces… but types are how we explicitly define interfaces.

For example, Rust borrow checking isn’t to add complexity, it is to make it possible to explicitly define lifetime bounds in interfaces.