Principles, including `SOLID`
Do one thing well. Let someone else do the hard part. Don’t inventing the wheel. Don't repeat yourself combined with Rule of three. Composition over inheritance - An interface (especiall...
Do one thing well. Let someone else do the hard part. Don’t inventing the wheel. Don't repeat yourself combined with Rule of three. Composition over inheritance - An interface (especiall...
There is a tutorial on the jekyll website, presented on several pages. In the process of working with it, I came up with a script that seems to me more visual and easier to understand. Code is too...
There are several approaches to providing access to another project’s internal classes. Add any class (usually /root/Properties/InternalsVisibleTo.cs) with following content runtime ...
Легенда The Manifesto for Agile Software Development is a foundational document produced by 17 developers at Snowbird, Utah in 2001. Где-то в тех краях https://www.snowbird.com/lodging Это со...
“What we want is rest,” said Harris. “Rest and a complete change,” said George. “The overstrain upon our brains has produced a general depression throughout the system. Change of scene, and absenc...
Curl is the universal thing for web request. Sometimes it is better to avoid new dependency as postman, ets. src https://curl.se/docs/tutorial.html https://man7.org/linux/man-pages/man1/cur...
It is necessary to use them because they simplify the understanding of the examples. Everything that is not important for the compilator, are not keywords, is better to name it this way. There is...
Why is ToArray required in certain situations? public class LinqTests { private static int _count1 = 0; private static int _count2 = 0; [Fact] public void DelegateCaller() { ...