CryZe
cryze92.bsky.social
CryZe
@cryze92.bsky.social
Rust, WebAssembly, Speedrunning, LiveSplit, Gaming, Learning Korean
Seems like they have an entire speedrun in there.
October 13, 2025 at 7:50 PM
TW: suicide

more context
September 30, 2025 at 5:38 PM
Rc / Arc are the real CoW types (they have „methods“ for that use case).
September 23, 2025 at 10:11 PM
Also (one of) the word(s) for husband is 主人 which is the Korean 주인 which means "owner" 🤨
August 31, 2025 at 3:44 PM
Look into target features, here‘s an example from my code: github.com/LiveSplit/Li...
github.com
August 23, 2025 at 10:12 AM
My language wasn't set to Japanese, so it's a bug regardless. Though going from 0 to 11 makes so much more sense mathematically, that I don't actually mind.
August 20, 2025 at 8:22 AM
Apparently it‘s so bad, you can start a lesson without a sufficient amount of energy and no warning, so you have to quit midway through, discarding all the progress.
August 2, 2025 at 1:38 PM
To highlight why it's the better choice than sRGB, I extended the comparison to use colors. sRGB completely fails at blending green text on top of the red background and has dark anti aliased regions, whereas the others handle it correctly, but fail at preserving the text weight (except my "Oktext")
July 21, 2025 at 5:34 PM
You simply take Oklab and replace it's 3.0 gamma with 2.2 for text. It's the best of all worlds, as it preserves most of Oklab's advantages, but works well for text (weight should look the same as sRGB). From top to bottom: Oklab, sRGB, linear, "Oktext":
July 21, 2025 at 5:11 PM
As it turns out Oklab is not suited for text as it also does not correctly preserve the weight of the text. sRGB is actually the best that we got. However, you will need to blend colors, so sRGB actually does an awful job. So I came up with "Oksrgb" / "Oktext" (?). (next post)
July 21, 2025 at 5:11 PM
For text you have the huge problem that rendering it in linear space causes the text to have a weight issue. Black text on a white background will appear thinner than white text on a black background. So you want to do it in a perceptual color space instead. (next post)
July 21, 2025 at 5:11 PM