Most companies follow some type of Scrum process. Typically this entails 2 or 3 week sprints. At the end of each sprint changes are demoed, retrospectives are performed and the backlog is groomed. During each sprint task completion time is captured, which allows management to project into the future when projects will reach completion. Many…
Month: March 2021
Writing Allocation Free Code in C# By Matt Ellis
Twitter: @citizenmattGitHub: https://github.com/citizenmatt/RefSemantics Always be measuring – don’t do it because you think it’s the right thing to do. It might not be. Managed memory is cheap. That’s not true, allocation is cheap and garbage collection is expensive. Garbage collection stops the world while things are cleaned up and optimized. Sometimes memory cleanup can impact…