

Just curious, why extremely low latency? If it’s for playing music, you might want to look into things designed specifically for that. Something like Jamulus
Just curious, why extremely low latency? If it’s for playing music, you might want to look into things designed specifically for that. Something like Jamulus
Ok. I admit I missed the label in the top right saying “Native Speakers (millions)”
No no, 10 base 512 lines of code
It only says that below the main title, and from the wording it’s also unclear if that’s what it’s actually intended to show or just the cutoff for a language being represented.
Like, it could be interpreted as showing L1+L2 speakers of languages with >50m L1 speakers
Looks like a voronoi treemap
This is not a standard box plot given you can clearly see many data points below what should be the min line in pretty much every category
The chunks are language families. Turkish is the only Turkic language which meets the cutoff; wikipedia says the second most spoken language in the family is Uzbek, but that only has 44 million speakers (native + second combined)
This is only showing native speakers so I feel like the title’s a bit misleading
It makes sense if you just think of everything as a function.
JSX can exist without React; it’s essentially just an alternative syntax for function calls.
(That is, annoyingly, handicapped in the Typescript checker)
Computers are binary, yeah? So we have to represent fractional numbers with binary, too.
In decimal, numbers past the decimal point are 10^-1, 10^-2, … etc. In binary, they’re 2^-1, 2^-2, …
2^-1 is one half, so 0.1 in binary is 0.5 in decimal. 2^-2 is one quarter. 0.11 in binary is 0.75 in decimal. And of course you’ve got 0.01 = 0.25
The problem comes when representing decimal numbers that don’t have neat binary representations. For instance, 0.1 in decimal is actually a repeating binary number: 0.0001100110011…
Fun fact: NaN
is of type number
I thought someone had just used a spherize filter or something on a picture of McConnell
The article itself makes the connection:
As the 2024 presidential campaign ramps up, concern is quickly rising that such images might be used to spread false information.
Though, I guess shame on us for expecting better journalism these days.
The solution is … Embed a watermark when the image is generated? How will that help stop deliberate disinformation created with other tools
Spokes. Via “bespoke”
I’m bad at naming things.
Let’s tab tablets
There are some cases where
any
must be used instead ofunknown
but they usually involve generic constraints and seem more like a bug than intended behavior