Category Archives: article

Avoid UseEffect in react to execute on every updates
React virtual DOM is one of the most important features of #reactjs which is has high performance impact on react applications , but this feature is kind of knife that could be awful if misused . A misused case of that ,wouldn’t be care of when components should be updated (#class or #functional) or made…

Tips and Trips to increase ef core performance
There are many articles about how to boost #ef_core performance and how to reduce the amount of resources is needed by ef core to do same work, But theory and reality are total two different worlds. In @accent-design-group-ltd we came across a lack of memory during the processing of big data which included reading data…

C#10 new cool features in practice, part 1
In this article, we’ll look at some most important C#10 features Global Using Statements: Adding using statements for some common libraries and namespaces like “System.Collections.Generic” or “System.Threading.Tasks” would be somehow frustrated, especially in middle level and big projects. Now C# 10 comes with 2 cool features to ease this pain, One of them is using…