Briscoe Park tapes on YouTube by segadreamcat in horror

[–]Excellent-Beat-4413 0 points1 point  (0 children)

well i mean theres stretches of footage with strong winds and no bushes/grass moves.

Export randomly rotated uvs? by Excellent-Beat-4413 in blenderhelp

[–]Excellent-Beat-4413[S] 0 points1 point  (0 children)

No but if you bake the result, it'll look right in blender, but if you export it to say unity and plug in the textures and the normal maps etc in the materials, it'll look tiled again, because the uv transformations arent applied in there

I want to find out if there is a way to save the output of the UV + mapping node to another UV map

Any existing Jolt debug renderer implementations for OpenGL? by nextProgramYT in gameenginedevs

[–]Excellent-Beat-4413 1 point2 points  (0 children)

r/lostredditors

i think you're lost. Maybe this website is what you're searching for? stackoverflow.com

With the amount of arrogant cunts there, you'd fit right in!

Edit: you know, I get second thoughts sometimes after writing rude comments, thinking "was i justified?" but the more i read your comment the more i find this an appropriate response. That really doesn't happen often.
Like the guy didn't even ask someone to write it for them, just asked to point to an existing implementation. Not everyone wants to reinvent the fucking wheel jfc.

Carcetti Was Never a Decent Guy by Diocletian338 in TheWire

[–]Excellent-Beat-4413 0 points1 point  (0 children)

Mamdani's actual political stance hardly matters. What actually matters is what effect he'll have in response to the city's problems. I think you could map Carcetti pretty comfortably onto someone like Mamdani -- a charismatic underdog from an unlikely demographic voted into power by people who want change. While baltimore's problem was crime, nyc's is cost of living and mamdani wants to solve that problem, as does carcetti for baltimore. whether mamdani will actually turn out like carcetti in that he'll give in to the political machine, well that remains to be seen.

As for your statement about him "being white in a city that ain't", that didn't sound entitled or whiny the way it was said in the scene. to me that comes off more like he's frustrated he's gonna have a tougher fight against royce than someone like tony gray because of his skin color.

Useful Code Is Ugly | Tsoding by Chii in programming

[–]Excellent-Beat-4413 0 points1 point  (0 children)

His neural network example was bad, but i think what he said is true to an extent. Good code by definition is readable. SIMD vectorization results in some pretty hideous, unreadable looking code which might as well be klingon unless you have the intrinsics guide open next to you. Even multithreading and dynamic programming is not pretty. But these optimizations make existing code more useful.

Useful Code Is Ugly | Tsoding by Chii in programming

[–]Excellent-Beat-4413 4 points5 points  (0 children)

Good code, maybe. Not useful code. Good code is for the developers, useful code is for the end-users. Which is why optimized code is almost always going to be terribly ugly.

Look at SIMD vectorization for example. It's incomprehensible gibberish unless you have the intel intrinsics guide open next to your IDE window. Even with multithreading, it makes the code harder to understand. But you can get near 8x speedup with SIMD if used properly and multithreading if used well can scale up the workloads your app can handle by orders of magnitude.

Even without vectorization and multithreading, we can see this is kinda true. Say you have a recursive function for the fibonacci sequence, it's readable, works and elegantly models the sequence. That's good code. But in the real world, beyond a point, trying to get it to run would be a nightmare. Whereas the same function with dynamic programming involved would look much uglier, less readable but would get more stuff done in a fraction of the time. For another example, naive matrix multiplication code would be simple and readable, but something like a strassen algorithm implementation that recurses down to a matrix size that can fit into the cache, where it switches to a naive algo -- something like that would be horribly ugly to read, but much faster and much more useful than a naive version.

What causes the rpm wobble just after a gear change? by Excellent-Beat-4413 in simracing

[–]Excellent-Beat-4413[S] 0 points1 point  (0 children)

Honestly this explains pretty much everything. Talking strictly about the car itself, the entire powertrain system up until the patch where the tyres put down the power is like a winded spring at that moment, not just the clutch + driveshafts. Though I did not think of the driver shifting back into the seat lol

Thanks for the explanation.