Last place I was at called them build “masters” for this reason.
High res textures (especially normal maps) and higher quality/coverage audio really made game sizes take off. Unreal’s new “Nanite” tech, where models can have literally billions of polygons, actually reduces game size because no normal maps.
Back in the day TCL was used in a few places in Pixar’s Renderman renderer (called PRMan), and in its connection to Maya. You could write little TCL scripts within the Renderman Artist Tools (RAT) that would be evaluated during scene export. I think this still exists in some form inside Tractor, which is their renderfarm management software.
It’s been a long time since I used prman but generally Python has replaced everything as the “glue” language, which honestly makes things a lot easier. VFX and game dev used to have a hundred different scripting languages rolling around.
Hah, nope. Shrek was made in Glendale, so they probably had everything on site or right next door.
In the early 2000s I worked on an animated film. The studio was in the southern part of Orange County CA, and the final color grading / print (still not totally digital then) was done in LA. It was faster to courier a box of hard drives than to transfer electronically. We had to do it a bunch of times because of various notes/changes/fuck ups. Then the results got courier’d back because the director couldn’t be bothered to travel for the fucking million dollars he was making.
The article doesn’t really do Tim justice. He’s a bodger who is basically a genius for what I can only describe as Goblin technology. His projects are as much about fun and experimenting as having a result. In the first windmill video he acknowledged that he could just buy a small electric windmill, but that’s not the point.
I mean, this is the dude who made a narrow gauge railroad and a compressed air locomotive to transport wood to his terrifying biochar chopper and crucible.
Years ago I was on a flight where you couldn’t turn this screen off. You could turn off the programming, but the screen still glowed. I discovered that if you take an advertisement from the back pocket and fold it, it can be inserted perfectly into the cracks around the screen and block it completely. Use the ads to block the ads.
Same thing happened with “VitaminWater”, a product in the category of “enhanced water” (a term reminiscent of “enhanced interrogation technique”). Coca-Cola argued that, despite the name, no reasonable person would believe it’s actually healthy. They settled.
Man, fuck editing the registry. The duplicate entries, the non-standard locations, the UI of regedit… I had to dig through it so much when I was supporting a corporate launcher application in a Windows facility. Did the Windows dev decide to write their data into multiple registry entries, an INI file, an environment variable… or maybe all of the above? Find out on the next episode of Fuck My Life!
Bought a lemur pro 9 a few years ago and have it as a daily driver since. Pop OS works great for the most part but, as other people have mentioned, PopShop is slow/buggy and I often just resort to apt
instead. My spouse plays a lot of PC games so when she got sick of Windows I migrated her over, and she’s had very few problems. Every once in awhile a game won’t run but usually that gets figured out in a few weeks by the Proton community.
A few content creation linux apps only officially support Redhat, so getting them to run is a bit of a pain but that would be the case with any Debian based distro. So overall I haven’t seen the need to distro hop to Mint or something similar.
Happens to some SE Asians in North America too, because the edible straw mushroom from SE Asia resembles one here called “death cap”. Amanita phalloides. What’s fucked up is right before it kills you your symptoms actually improve, so people get discharged from the hospital and think they are going to be ok. I forage mushrooms but I stay away from white gilled mushrooms completely.
That’s one kind, and Rust’s “ownership” concept does mean there’s built-in compile time checks to prevent dangling pointers or unreachable memory. But there’s also just never de-allocating stuff you allocated even though it’s still reachable. Like you could just make a loop that allocates memory and never stops and that’s a memory leak, or more generally a “resource leak”, if you prefer.
Rust is really good at keeping you from having a reference to something that you think is valid but it turns out it got mutated way down in some class hierarchy and now it’s dead, so you have a null pointer or you double free, or whatever. But it can’t stop the case where your code is technically valid but the resource leak is caused by bad “logic” in your design, if that makes sense.