the thing is basically all interesting art happens when the next token isnt predicted by the previous ones
10.08.2025 04:47 — 👍 345 🔁 52 💬 9 📌 3@micahrj.bsky.social
DSP and graphics engineer, Rust enthusiast, and multicellular organism http://micahrj.github.io · http://mastodon.gamedev.place/@micahrj
the thing is basically all interesting art happens when the next token isnt predicted by the previous ones
10.08.2025 04:47 — 👍 345 🔁 52 💬 9 📌 3and then, here are some sources I've encountered about "CSM scrolling", which seems more closely related to your original question:
- d3cw3dd2w32x2b.cloudfront.net/wp-content/u...
- advances.realtimerendering.com/s2012/insomn...
there's a somewhat related post on the dev blog for The Witness, which in turn references an article from ShaderX 6 ("Stable Rendering of Cascaded Shadow Maps"): the-witness.net/news/2010/03...
it's not about caching so much as achieving stability under camera motion, but there's some overlap
Screenshot of a Twitter post: Drone is not real music. Anyone can play one note for a long time, look [holds down organ note to prove point but I instantly become entirely entranced by the sustained oneness and experience of completely pure sensuality, I forget Im pissed and just stand there in eternal peace]
15.07.2025 03:54 — 👍 9 🔁 0 💬 0 📌 0JEAN-LUC I HAVE A QUESTION
IT IS A BOUT DE SOUFFLE
SHOULD I TAKE IT OUT OF DE OVEN
Tame Things I Hate About Shrew
18.06.2025 04:42 — 👍 3 🔁 0 💬 0 📌 0I can recommend getting a baguette on your way to the office and gnawing on it throughout your work day
24.05.2025 00:14 — 👍 3 🔁 0 💬 0 📌 0Sure, yeah; what I'm pointing out is that even if the model can't losslessly reproduce a given string on zero-temperature sampling or whatever, if it's able to predict the string any better than chance, you can build a lossless compressor on top of it using entropy coding schemes
12.05.2025 17:55 — 👍 7 🔁 0 💬 0 📌 0You can use an LLM to implement a lossless compressor for arbitrary text, see e.g.: bellard.org/nncp/
The encoder and decoder share the same predictive model, so the encoder can spend fewer bits on more predictable symbols and more bits on less predictable ones
In fact, if the T inside an Rc<T> *needs* to have its Drop implementation called to avoid UB, that itself is an unsound API for T to have. That was the original subject of the leakpocalypse, and is why the original JoinGuard API for scoped threads was removed from std (faultlore.com/blah/everyon...)
12.05.2025 16:18 — 👍 0 🔁 0 💬 1 📌 0It doesn't need to be dropped in order to invalidate the &mut T, though. &mut T doesn't implement Drop in the first place. Putting an &mut T inside a MaybeUninit or ManuallyDrop is a similar situation
12.05.2025 16:13 — 👍 1 🔁 0 💬 2 📌 0They might still "coexist" in the sense that the bit pattern for the &mut T might still sit around in a register or on the stack somewhere, which is essentially the same situation as having the bit pattern for an &mut T sitting around in a leaked, inaccessible Rc cycle
12.05.2025 16:02 — 👍 1 🔁 0 💬 1 📌 0*nate dogg voice* my infant and me had to coregulate
09.05.2025 14:41 — 👍 2 🔁 0 💬 0 📌 0Cracking open a cool red dwarf star with the boys
07.05.2025 21:06 — 👍 5 🔁 0 💬 0 📌 0This post perfectly encapsulates my experience with so much of the discourse around Rust
03.05.2025 00:11 — 👍 2 🔁 0 💬 0 📌 0Whole Foods is a store where you can find
1. Plant-based imitations of many animal products
2. Products that are typically plant-based or vegetarian but have bones in them for no reason
“Whole Foods shoppers” is a funny intersection of target markets. Like there’s a granola brand I’ve been getting, and almost every one of their products says “vegan” on the front, except the other day I picked up a box of their instant oatmeal and it had bovine collagen in the ingredients
02.05.2025 23:36 — 👍 2 🔁 0 💬 1 📌 0a search for `<'a`, no results found
then again, i also keep things very simple, and lots of folks try to make things more complicated
01.05.2025 20:05 — 👍 30 🔁 2 💬 1 📌 2crazy the degree to which web devs have just deliberately destroyed basic browser functionality. I wanted to copy the name of an artist to the clipboard from the spotify web client (because it contained chinese characters I didn't know how to type) and I fully had to open developer tools
21.04.2025 03:22 — 👍 8 🔁 1 💬 2 📌 0κp(x, x′) is a new “Steinalized” positive definite kernel
S T E I N A L I Z E D
19.04.2025 05:11 — 👍 3 🔁 0 💬 0 📌 0which one are you
18.04.2025 18:02 — 👍 2 🔁 0 💬 0 📌 0this is a true story
14.03.2025 01:54 — 👍 2 🔁 0 💬 0 📌 0once, at a coffee shop, I asked the barista if the music playing over the speakers was by oval. she gave me a free drink and said “here’s your 94diskount”
14.03.2025 01:54 — 👍 3 🔁 0 💬 1 📌 0K N U C T A T S
12.03.2025 05:52 — 👍 1 🔁 0 💬 0 📌 0of course there are ways to get around this with some overhead and/or boilerplate, like just cloning the Rc and then coercing it by value, or defining another trait and implementing it for Rc<T> where T: ?Trait. but it's annoying
21.02.2025 15:48 — 👍 1 🔁 0 💬 0 📌 0however, in theory it should be totally possible to coerce &Rc<T> to a different type, &for<T: Trait> Rc<T> (i.e. a reference-with-vptr to an Rc), if only it were possible to express that type in the first place.
21.02.2025 15:48 — 👍 1 🔁 0 💬 1 📌 0e.g.: Rc<T> coerces to Rc<dyn Trait>, and &T coerces to &dyn Trait, but &Rc<T> doesn't coerce to &Rc<dyn Trait>.
with explicit quantifiers, &Rc<dyn Trait> would be spelled &Rc<for<T: Trait> T> (i.e. a reference to an Rc-with-vptr), and it makes sense that you can't perform that coercion.
getting frustrated by the fact that rust doesn't have explicit quantifiers for existentials, which makes it impossible to express certain distinctions when it comes to unsized types.
21.02.2025 15:48 — 👍 1 🔁 0 💬 1 📌 0e.g. this song goes harder in 2025 than I could ever have predicted in 2016 www.youtube.com/watch?v=zorJ...
21.02.2025 15:23 — 👍 1 🔁 0 💬 0 📌 0