Dotnet Single Project Approach
This is a little experiment I want to try, over the years what I noticed is that the general approach in dotnet is to use multiple projects each resembling ... Read more
This is a little experiment I want to try, over the years what I noticed is that the general approach in dotnet is to use multiple projects each resembling ... Read more
JavaScript provides an arguments object inside any non-arrow function and it provides the list of arguments that were used to call the function. While this allows us to handle ... Read more
After working for a relatively long while with React MVVM on a few projects to both test it out and use it to replace Redux Form, I've run into a ... Read more
Security is a broad topic which covers many aspects and is done at multiple levels. We have physical, virtual security which includes the code review process. We are considering security ... Read more
This article is for: Software Developers The Iterator and Visitor design are patterns generally used to traverse collections or handle object tree navigation. This means both actual trees or graphs ... Read more
In my previous article, MVVM to Flux and Back Again, I wrote about my journey with Model-View-ViewModel (MVVM) in .NET applications developed with Windows Presentation Foundation (WPF). It provides good ... Read more