by Francesco de Vicariis | Jan 27, 2021 | Blog
A few months ago, I started working on a new project, and the team decided to insert some innovative technology and try a new branching model called Trunk Based Development (TBD). We usually have a “Story” backlog to work on. The work is divided...
by Francesco de Vicariis | Sep 2, 2020 | Blog
In recent months, I’ve been working with a company that prefers using the “Pair Programming” methodology, which I had never used regularly. It happened to all of us to discuss a problem with a colleague or look together at a piece of code searching...
by Francesco de Vicariis | Mar 18, 2020 | Blog
During the development of our own CMS WebRight, we found that people from outside the team also need to develop plugins. I thought it might be interesting to tell you how we dealt with the problem, showing you how to develop a plugin system for your .NET applications....
by Francesco de Vicariis | Jan 29, 2020 | Blog
When it comes to security in an application, you always have to think of something indispensable but not always easy to implement. Over the years, I have used different authorization models: from the classic role-Based to custom authorizations, written ad hoc for the...
by Francesco de Vicariis | Nov 20, 2019 | Blog
During the common refactoring on a client’s project, we converted the previous synchronous code in an asynchronous version, using the Tasks and the pattern async-await of the .NET framework. I suggest that you read the article about this issue,...