How to get URL link on X (Twitter) App
https://twitter.com/kerckhove_ts/status/1923365950876729726- Bloated unit test suites taking several hours to execute. Slows down devs and causes merge conflicts as pushes are delayed.
https://twitter.com/Jonathan_Blow/status/1919847600527716561Messy big functions with lots of indentation (loops, branches) should be avoided. Extracting is a good practice here. But often functions like this are a code smell. Why do you need those branches? Why is the function doing too many unrelated things? Maybe too generic? Refactor?
https://twitter.com/ThreatInteract/status/1867084725988516101Originally, TAA was seen as an improvement over screen space post-process AA techniques as it provided subpixel information. It wasn't just a fancy blur algo. Today, people render so much noise. Noise increases neighborhood bbox/variance. Which increases ghosting.
https://x.com/SebAaltonen/status/1722904062444638465The linked thread is speculation mixed with Apple's marketing material. Some details might be wrong.
https://twitter.com/reduzio/status/1757684787450392902In year 2000 object oriented programmer was based on real world examples "hawk is a bird" and people tried to solve diamond pattern issues with birds that were not flying. Later people realized that real world abstractions are bad. You should inherit/compose "flying" instead.
https://x.com/SebAaltonen/status/1680586056352120833?s=20When I was designing V-buffer style renderer in 2015 I was a bit concerned about having to run vertex shader 3 times per pixel. People might say that this is fine if you are targeting 1:1 pixel:triangle density like Nanite does, but that's cutting corners...